/*  ==========  #INFO  ==========  */

/* Ipad, laptop Devices < 1024px */
/* Tablet Devices < 767px */
/* Mobile Devices < 480px */

/*  ==========  END #INFO  ==========  */






/*  ==========  GENERAL SSTYLES  ==========  */
:root{
    --color-main: rgb(231,39,45);
    --color-main-alpha: rgb(231,39,45,.24);
    --color-secondary: rgb(255,204,25);
    --color-green: #00A153;
    --color-text-main: #374957;
    --color-text-secondary: rgba(22, 24, 35, 0.75);
    --color-text-gray: rgb(149,154,164);
    --color-border: rgba(22, 24, 35, 0.12);
    --color-black: #2c3e50;
    --color-blue-link: #6faee5;

    --color-success: rgb(5,211,137);
    --color-success-alpha: rgb(5,211,137,.1);
    --color-error: #f44e4e;
    --color-error-alpha: rgb(251, 81, 81,.1);

    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --box-shadow: rgb(0 0 0 / 6%) 0px 2px 8px;
}

*{
    margin: 0;
    padding: 0;
}
html{scroll-behavior: smooth}
body{font-family: var(--font-primary); background-color: #f7f8f9;}
a{text-decoration: none; transition: .1s all;}
img{max-width: 100%;}


.anchor{transform: translateY(-50px);}
.flex-centered{width: 100%;display: flex;align-items: center; flex-direction: column;}
.flex-column{display: flex;flex-direction: column;}

#content{
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
}

.path-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.path-wrap .path-item{
    display: flex;
    color: var(--color-text-secondary);
    font-size: 14px;
}
.path-wrap a.path-item:hover{color: var(--color-main);}
.path-wrap .path-item::after{
    content: '»';
    padding-left: 10px;
}
.path-wrap .path-item:last-child::after{display: none;}
span.mark{color: var(--color-main);}

.page{
    background-color: #fff;
    border-radius: 3px;
    padding: 22px !important;
    box-sizing: border-box;
}

.page-header{
    display: flex;
    padding: 0;
    font-size: 24px;
    color: var(--color-black);
    font-family: var(--font-secondary);
}
.sub-header{
    display: flex;
    font-size: 16px;
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
}

.container{
	width: 100%;
    max-width: 1200px;
}
/* ===== CONTAINER WITH COLUMN ===== */
.container-grid{
    display: grid;
    grid-template-columns: 1fr 270px;
    justify-content: space-between;
    gap: 20px;
}
@media screen and (max-width: 767px){
    .container-grid{display: flex !important; flex-direction: column !important;}
}
/* ===== END CONTAINER WITH COLUMN ===== */
section{width: 100%;}
span.mark{color: var(--color-main);}

.pad-16{padding: 16px 0;}
.pad-top-16{padding-top: 16px;}
.pad-bottom-16{padding-bottom: 16px;}
.pad-32{padding: 32px 0;}
.pad-top-32{padding-top: 32px;}
.pad-bottom-32{padding-bottom: 32px;}

.button{
    display: block;
    padding: 12px 24px;
    box-sizing: border-box;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}
.button.button-main{
    background-color: var(--color-main);
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 600;
}
.button.button:hover{
    opacity: .85;
}

.cart-quantity-input{
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    padding: 3px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #eaeaea;
    /* border: 1px solid var(--color-border); */
}
.cart-quantity-input button {
    width: 39px;
    height: 39px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    color: #646464;
    cursor: pointer;
    outline: none;
    font-size: 18px;
    font-weight: 600;
}
.cart-quantity-input .number{
    flex: 1;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #131313;
}
.input-title{
    color: var(--color-text-main);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
}
.input-wrap{
    width: 100%;
    position: relative;
}
.input-wrap i{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
}
.input-wrap input,
.input-wrap textarea{
    width: 100%;
    resize: none;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background-color: #fff;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
}
.input-wrap input:focus{
    border: 1px solid var(--color-success);
}
.input-wrap input.iconed,
.input-wrap textarea.iconed{
    padding-left: 45px;
}

.radio-wrap {
	display: flex;
    flex-wrap: wrap;
    gap: 5px;
    overflow: hidden;
}
.radio-wrap input[type=radio] {display: none;}
.radio-wrap label {
    height: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
	cursor: pointer;
	padding: 10px 15px;
    box-sizing: border-box;
	border: 1px solid var(--color-border);
    border-radius: 10px;
	user-select: none;
    background-color: #fff;
}
.radio-wrap label::before{
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #ccc;
    display: block;
}
 
/* Checked */
.radio-wrap input[type=radio]:checked + label {
    background: #fff;
    border-color: var(--color-success);
}
.radio-wrap input[type=radio]:checked + label::before{background-color: var(--color-success);}
 
/* Disabled */
.radio-wrap input[type=radio]:disabled + label {
	opacity: 0.5;
    cursor: not-allowed;
}

.grid-col-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.grid-col-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}


@media screen and (max-width: 1200px){
	.container{
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 767px){
    *{cursor: default;}
    .grid-col-3{grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width: 480px){
    .adaptive-padding {padding: 0;}
    .grid-col-2{grid-template-columns: 1fr;}
    .grid-col-3{grid-template-columns: 1fr;}
}
/*  ==========  END GENERAL SSTYLES  ==========  */





/*  ==========  HEADER SECTION  ==========  */
body{padding-top: 90px;}
header{
    height: 90px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: var(--box-shadow);
    z-index: 10;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}
header .container-unit{
    display: flex;
    align-items: center;
    gap: 10px;
}
header .menu-icon{
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}
header .menu-icon:hover{background-color: #f0f2f5;}
header .menu-icon i{pointer-events: none;}
header .menu-icon label{
    font-size: 9px;
    margin-bottom: -4px;
    pointer-events: none;
}


header .logo{
    width: 100px;
    height: 46px;
    object-fit: contain;
}
header .logo:hover{opacity: .85;}


header .number{
    display: flex;
    flex-direction: column;
}
header .number .text{
    color: var(--color-text-main);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
}
header .number .text:hover{color: var(--color-main);}
header .number .hint{
    color: var(--color-text-secondary);
    font-size: 12px;
}


header #search{width: 290px;}
header #search .body{
    width: 100%;
    height: 100%;
    position: relative;
}
header #search .body input{
    width: 100%;
    height: 52px;
    padding: 12px 25px;
    box-sizing: border-box;
    outline: none;
    border: none;
    border: 2px solid transparent;
    background-color: #f5f5f5;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 16px;
}
header #search .body input:focus{
    border: 2px solid var(--color-secondary);
}
header #search .body button{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--color-secondary);
    border: none;
    border-radius: 100px;
    font-size: 18px;
    color: var(--color-black);
    cursor: pointer;
}


header .cart{
    width: 140px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 0;
    box-sizing: border-box;
    border-radius: 100px;
}
header .cart:hover{
    background-color: #f5f5f5;
}
header .cart:hover .icon{
    background-color: #131313;
}
header .cart .group{
    display: flex;
    flex-direction: column;
    position: relative;
}
header .cart .icon{
    width: 30px;
    height: 30px;
    background-color: var(--color-text-secondary);
    -webkit-mask-image: url('../assets/shopping-cart.svg');
    mask-image: url('../assets/shopping-cart.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
}

header .cart .count{
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--color-success);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
header .cart .summ{
    font-size: 17px;
    color: var(--color-black);
    font-weight: 700;
}
header .cart .hint{
    font-size: 12px;
    color: var(--color-text-secondary);
}
@media screen and (max-width: 767px){
    body{padding-top: 126px;}
    header{height: 126px;}
    header .container{height: 70px; gap:0;}
    header .menu-icon{display: flex;}
    header .number .text{font-size: 16px;}
    header #search{
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px;
        padding-top: 0;
        box-sizing: border-box;
        background-color: #fff;
        z-index: 2;
    }
}
@media screen and (max-width: 480px){
    header .logo{
        width: 75px;
        height: 38px;
    }
    header .cart{width: 46px;}
    header .cart .group:last-child{display: none;}
}
/*  ==========  END HEADER SECTION  ==========  */





/*  ==========  TOP HEADER SECTION  ==========  */
#sub-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 62px;
    background-color: var(--color-main);
}
#sub-header .container{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#sub-header .sub-button{
    border: 1px solid rgba(255 255 255 / 30%);
    border-radius: 100px;
    padding: 12px 22px;
    box-sizing: border-box;
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
}
#sub-header .sub-button i{margin-right: 12px;}
#sub-header .catalog-button{
    background-color: #fff;
    color: #3a3a3a;
}
#sub-header .catalog-button:hover{
    background-color: var(--color-secondary);
    transition: .2s;
}
#sub-header .auth-button:hover{
    background-color: #fff;
    color: #3a3a3a;
    transition: .2s;
}

#sub-header .menu-list{
    display: flex;
    gap: 20px;
}
#sub-header .menu-list .secret{display: none;}
#sub-header .menu-list a.item{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
} 
#sub-header .menu-list a.item:hover{color: var(--color-secondary);}
@media screen and (max-width: 767px){
    #sub-header{
        position: absolute;
        top: -1000px;
    }
    #sub-header .menu-list{
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: fixed;
        top: 126px;
        left: 0;
        background-color: #f5f5f5;
        box-shadow: var(--box-shadow);
        padding: 20px 0;
        z-index: 1;
    }
    #sub-header .menu-list .secret{display: block;}
    #sub-header .menu-list.menu-toggle{
        display: flex;
    }
    #sub-header .menu-list a.item{
        color: var(--color-text-main);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 16px;
        padding: 10px;
        box-sizing: border-box;
    }
}
/*  ==========  END TOP HEADER SECTION  ==========  */





/*  ==========  FOOTER SECTION  ==========  */
footer{
    margin-top: 50px;
    padding: 48px 0;
    box-sizing: border-box;
    background-color: #212326;
}
footer a:hover,
.theend a:hover{color: var(--color-main) !important;}
footer .container{
    display: flex;
    justify-content: space-between;
}
footer img{height: 50px;}
footer .group{
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
footer .group .title{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
footer .group a,
footer .group span{
    font-size: 14px;
    color: #ffffffcc;
}
footer .contacts a{
    padding-bottom: 8px;
    color: #fff;
    border-bottom: 1px dashed var(--color-main);
}

@media screen and (max-width: 767px){
    footer .container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    footer .group{width: 100%;}
}

.theend{
    width: 100%;
    padding: 16px 0;
    background-color: #141617;
    font-size: 14px;
    color: #ffffff65;
}
.theend .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.theend .sponsor a{
    color: #fff;
}
/*  ==========  END FOOTER SECTION  ==========  */





/*  ==========  PRODUCTS SECTION  ==========  */
.products-section{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 15px;
    justify-content: space-between;
    place-items: center;
}
@media screen and (max-width: 480px){
    .products-section{
        gap: 5px;
        grid-template-columns: repeat(auto-fill,minmax(190px,1fr));
    }
}
/*  ==========  END PRODUCTS SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */
.product-tile{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    box-sizing: border-box;
    max-width: 380px;
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    /* box-shadow: var(--box-shadow); */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.product-tile::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-bottom: 1px solid var(--color-border);
    background-color: #f7f8f9;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.product-tile .image{
    width: 100%;
    height: 150px;
}
.product-tile .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}
.product-tile .title:hover{opacity: .80;}
.product-tile .title{
    height: 62px;
    font-size: 16px;
    font-weight: 500;
    color: #131313;
    text-decoration: none;
    font-weight: 600;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-tile .info{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.product-tile .desc{
    width: 100%;
    list-style: none;
    margin: 0;
    font-size: 12px;
    color: var(--color-text-secondary);
}
.product-tile .price-wrap{  
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.product-tile .price{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-secondary);
}
.product-tile .price .t-sym{
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
}
.product-tile .price-old{
    color: var(--color-text-secondary);
    font-size: 14px;
    text-decoration: line-through;
}
.product-tile .buttons-wrap{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.product-tile .buttons-wrap .open{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-black);
    border: 1px solid var(--color-border);
    border-radius: 3px;
}
.product-tile .buttons-wrap .button{
    width: 60%;
    height: 40px;
    border-radius: 100px;;
    background-color: rgb(34,181,115);
    color: #fff;
    font-weight: 600;
    font-style: 16px;
    font-family: var(--font-secondary);
}
@media screen and (max-width: 480px){
    .product-tile .buttons-wrap .button{width: 100%;}
}
/*  ==========  END REVIEWS SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */