/* INTRO */
.intro {
    position: relative;
    /* height: 650px; */
}
.intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.intro-filter {
    padding: 122px 0 32px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.intro-filter .container {
    display: flex;
    justify-content: center;
}
.intro .gender_selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2px;
    background-color: #1C1C1CB2;
    border: 1px solid #3A3A3A;
    border-radius: 64px;
    backdrop-filter: blur(10px);
    padding:4px;
}
.intro .gender_selector_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
    outline: none;
    padding:8px 20.5px;
    opacity: .7;
    font-weight: 500;
    font-size: 16px;
    line-height: 136%;
    letter-spacing: -0.5px;
    text-align: center;
    text-transform: uppercase;
    color:#fff;
    transition: .3s;
    border-radius: 64px;
}
.intro .gender_selector_btn.active {
    background-color: #E65A26;
    opacity: 1;
}
.intro .gender_selector_btn:not(.active):hover {
    opacity: 1;
}
@media(max-width:576px) { 
    .intro {
        /* height: 512px;s */
    }
    .intro .gender_selector {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        background-color: #1C1C1CB2;
        border: 1px solid #3A3A3A;
        border-radius: 64px;
        backdrop-filter: blur(10px);
        padding: 4px;
    }
    .intro .gender_selector_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background-color: transparent;
        outline: none;
        padding: 8px 32px;
        opacity: .7;
        font-weight: 500;
        font-size: 12px;
        line-height: 126%;
        letter-spacing: -0.5px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        transition: .3s;
        border-radius: 64px;
    }
}
/* END */

/* SECTION CATEGORY */
.section-category-inner {
    display: flex;
    gap:16px;
}
.section-category-ls {
    display: flex;
    /* flex-wrap: wrap; */
    position: relative;
    width: 604px;
    height: 480px;
}
.section-category-ls-link {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    outline: none;
    text-decoration: none;
    opacity: 0;
    transition: .3s;
}
.section-category-ls-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: .3s;
}
.section-category-ls-link.active {
    opacity: 1;
    z-index: 3;
}
.section-category-ls-link:hover img {
    transform: scale(1.05);
}
.section-category-ls-link .category-name {
    display: none;
}
.section-category-rs {
    width: calc(100% - 604px - 16px);
    display: flex;
    flex-direction: column;
}
.section-category-rs-link {
    display: block;
    text-decoration: none;
    outline: none;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 136%;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    padding-left:12px;
    padding-right:12px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top:1px solid #D6D6D6;
    transition: .3s;
}
.section-category-rs-link::before {
    content:'';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 15px;
    top: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.825 9L9.425 14.6L8 16L0 8L8 0L9.425 1.4L3.825 7H16V9H3.825Z' fill='%23FF4D00'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: .3s;
}
.section-category-rs-link.last {
    border-bottom: 1px solid #D6D6D6;
}
.section-category-rs-link.active {
    padding-left: 44px;
    color:#E65A26;
}
.section-category-rs-link.active::before {
    opacity: 1;
}
@media(max-width:992px) {
    .section-category-rs {
        display: none;
    }
    .section-category-ls {
        flex-wrap: wrap;
        gap:8px;
        width: 100%;
        height: auto;
    }
    .section-category-ls-link {
        position: unset;
        opacity: 1;
        width: calc(100% / 3 - 6px);
        height: auto;
        display: flex;
        flex-direction: column;
        gap:8px;
        border-radius: 8px;
        background-color: transparent;
        padding:8px;
    }
    .section-category-ls-link:hover {
        box-shadow: 0px 9px 5px 4px #0000000D!important;
    }
    .section-category-ls-link.last {
        width: 100%;
        background-color: #ECECEC;
        border-radius: 8px;
        padding:11px;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        
    }
    .section-category-ls-link.last img {
        display: none;
    }
    .section-category-ls-link.last:hover {
        box-shadow: unset!important;
        background-color: #E65A26;
        color:#fff
    }
    .section-category-ls-link img {
        width: 100%;
        aspect-ratio: 1;
    }
    .section-category-ls-link .category-name {
        display: block;
        font-weight: 500;
        font-size: 14px;
        line-height: 132%;
        letter-spacing: -0.5px;
        text-align: center;
        text-transform: inherit;
        margin: 0;
    }
}
/* END */

/* WC PRODUCTS */
.woocommerce .title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:12px;
    margin-bottom: 16px;
}
.woocommerce .title-wrap h2 {
    margin-bottom: 0;
}
.woocommerce .title-wrap .link-watch-all {
    display: inline-block;
    text-decoration: none;
    outline: none;
    transition: .3s;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.2px;
    padding-right: 26px;
    position: relative;
}
.woocommerce .title-wrap .link-watch-all::after {
    display: block;
    content:'';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6 10L7 5.4L8.4 4L14.4 10L8.4 16L7 14.6L11.6 10Z' fill='%231E1E1E'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.woocommerce .title-wrap .link-watch-all:hover::after {
    right:-10px;
}
.woocommerce ul.products .link-watch-all {
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    transition: .3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.2px;
    padding: 11px;
    text-align: center;
    border-radius: 8px;
    background-color: #ECECEC;
    width: 100%;
}
.woocommerce ul.products .link-watch-all:hover {
    background-color: #E65A26;
    color:#fff;
}
.woocommerce ul.products {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.woocommerce ul.products li {
    display: inline-flex;
    width: calc(100% / 4 - 12px);
    position: relative;
}
.woocommerce ul.products li .tinv-wraper {
    position: relative;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 20;
    font-size: unset;
    width: auto;
    height: auto;
}
.woocommerce ul.products li .tinv-wraper .tinvwl_add_to_wishlist_button {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0;
    transition: .3s;
    text-decoration: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cpath d='M9.4677 3.81582C7.15584 4.53586 4.35887 8.33239 4.59838 11.5529C4.73437 13.367 5.0571 15.471 5.35344 16.12C5.9177 17.3599 7.49074 17.6816 9.19369 18.2034C10.8966 18.7271 13.3425 17.6068 15.3255 15.9068C17.5359 14.0104 18.8105 13.453 14.8891 8.76628C13.9859 7.68717 12.8878 2.75167 9.4677 3.81582Z' stroke='%231E1E1E' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.woocommerce ul.products li .tinv-wraper .tinvwl_add_to_wishlist_button:hover {
    transform: scale(1.2);
}
.woocommerce ul.products li .tinv-wraper .tinvwl_add_to_wishlist_button::before {
    display: none;
}
.woocommerce ul.products li .tinv-wraper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.46721 3.81598C7.15535 4.53602 4.35838 8.33255 4.59789 11.5531C4.73388 13.3672 5.05661 15.4712 5.35295 16.1201C5.91721 17.3601 7.49025 17.6818 9.1932 18.2036C10.8961 18.7272 13.342 17.607 15.325 15.9069C17.5354 14.0105 18.8101 13.4532 14.8886 8.76644C13.9854 7.68733 12.8873 2.75183 9.46721 3.81598Z' fill='%231E1E1E' stroke='%231E1E1E' stroke-width='2'/%3E%3C/svg%3E ");
}
.woocommerce ul.products li a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    outline: none;
    transition: .3s;
    align-items: center;
    width: 100%;
} 
.woocommerce ul.products li a img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    transition: .3s;
}
.woocommerce ul.products li a:hover img {
    transform: scale(1.05);
}
.woocommerce ul.products li a .woocommerce-loop-product__brand {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 132%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 4px;
    transition: .3s;
}
.woocommerce ul.products li a:hover .woocommerce-loop-product__brand {
    color:#E65A26;
}
.woocommerce ul.products li a .woocommerce-loop-product__title {
    font-weight: 400;
    font-size: 12px;
    line-height: 126%;
    letter-spacing: -0.2px;
    text-align: center;
    vertical-align: middle;
    text-transform: initial;
    margin: 0;
    margin-bottom: 8px;
    padding: 0;
    transition: .3s;
}
.woocommerce ul.products li a:hover .woocommerce-loop-product__title {
    color:#E65A26;
}
.woocommerce ul.products li a .price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 132%;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color:#1E1E1E;
    margin-top: auto;
}
.woocommerce ul.products li a .price del {

}
.woocommerce ul.products li a .price ins {
    text-decoration: unset;
    color:#D64545;
}
.woocommerce ul.products li a .onsale {
    position: absolute;
    left: 8px;
    top:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: -0.2px;
    text-align: center;
    text-transform: uppercase;
    color:#A62222;
    padding: 2px 8px;
    border:1px solid #A62222;
    border-radius: 4px;
}
@media(max-width:992px) {
    .woocommerce ul.products {
        gap:8px;
    }
    .woocommerce ul.products li {
        width: calc(100% / 3 - 6px);
    }
    .woocommerce ul.products .link-watch-all {
        display: flex;
        margin-top: 8px;
    }
    .woocommerce .title-wrap .link-watch-all {
        display: none;
    }
}
@media(max-width:576px) {    
    .woocommerce ul.products li {
        width: calc(100% / 2 - 4px);
    }
}
/* END */

/* SALE PRODUCTS SECTION */
.sale-products {}
.sale-products h2 {
    color:#E65A26;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1px;
    text-transform: inherit;
}
.sale-products .subtitle {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -2%;
}
.sale-products-inner {
    background-color: #fff;
    padding:24px 16px 16px;
    border-radius: 8px;
}
.sale-products-inner .link-watch-all {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    transition: .3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.2px;
    padding: 11px;
    text-align: center;
    color:#fff;
    border-radius: 8px;
    background-color: #E65A26;
    width: 100%;
    margin-top: 16px;
}
.sale-products-inner .link-watch-all:hover {
    background-color: #3A3A3A;
    color:#fff;
}
.sale-products ul.products {

}
.sale-products ul.products .slick-list {
    margin: 0 0 0 -4px;
    padding-right: 42px;
}
.sale-products ul.products .slick-slide {
    margin: 0 4px;
}
.sale-products ul.products .slick-slide .woocommerce-loop-product__link {
    background-color:#F1F1F1;
    padding-bottom: 8px;
    overflow: hidden;
}
.sale-products ul.products:not(.slick-initialized) {
    gap:8px;
}
.sale-products ul.products:not(.slick-initialized) > * {
    margin: 0;
}
.sale-products ul.products:not(.slick-initialized) > *:nth-child(n + 6) {
    display: none;
}
@media(max-width:768px) {
    .sale-products h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }
    .sale-products .subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .sale-products-inner {
        padding:16px 4px 8px;
    }
}
@media(max-width:576px) {
    .sale-products .container {
        padding-left: 0;
        padding-right: 0;
    }
    .sale-products-inner {
        border-radius: 0;
    }
    .sale-products-inner h2 {
        padding: 0 4px;
    }
    .sale-products-inner .subtitle {
        padding: 0 4px;
    }
    .sale-products-inner .link-watch-all {
        margin-left: 4px;
        margin-right: 4px;
        width: calc(100% - 8px);
    }
    .sale-products ul.products .slick-list {
        margin: 0;
    }
}
/* END */

/* BRANDS GALLERY */
.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap:32px;
    padding: 16px 48px;
}
.brand-link {
    width: calc(100% / 5 - 25.6px);
    height: auto;
    display: block;
    text-decoration: none;
    outline: none;
    transition: .3s;
}
.brand-link span {
    display: none;
}
.brand-link img {
    width: 100%;
    height: auto;
    transition: .3s;
}
.brand-link:hover img {
    transform: scale(1.1);
}
.brand-link.view-more {
    display: none;
}
@media(max-width:992px) {
    .brands-list {
        gap:48px;
        padding:8px 31px;
    }
    .brand-link {
        width: calc(100% / 3 - 32px);
    }
}
@media(max-width:576px) {
    .brands-section .container {
        padding: 0;
    }
    .brands-list {
        padding: 0;
        gap:0;
    }
    .brand-link img {
        display: none;
    }
    .brand-link span {
        display: block;
    }
    .brand-link,
    .brand-link.view-more {
        width: 100%;
        height: auto;
        display: block;
        text-decoration: none;
        outline: none;
        transition: .3s;
        padding: 11px 12px;
        background-color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 136%;
        letter-spacing: -0.5px;
        text-transform: uppercase;
        color:#1E1E1E;
        transition: .3s;
        border-top: 1px solid #D6D6D6;
    }
    .brand-link:last-child {
        border-bottom: 1px solid #D6D6D6;
    }
    .brand-link:hover,
    .brand-link.view-more:hover {
        background-color: #E65A26;
        color:#fff;
    }
}
/* END */

/* PROMOTIONS */
section.promotions {
    /* max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px; */
}
.promotions-list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.promotion-card {
    display: flex;
    flex-direction: column;
    gap:14px;
    text-decoration: none;
}
.promotion-card:nth-child(1) {
    width: calc(50% - 8px);
    /* width: 100%; */
}
.promotion-card:nth-child(2) {
    width: calc(50% - 8px);
}
.promotion-card:nth-child(3) {
    width: 100%;
}
.promotion-card .promotion-thumb {
    width: 100%;
    /* height: 320px; */
    height: auto;
}
.promotion-card:nth-child(3) .promotion-thumb {
    height: auto;
}
.promotion-card .promotion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.promotion-card:hover .promotion-thumb img {
    transform: scale(1.04);
}
.promotion-card .promotion-content h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 136%;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
    transition: .3s;
}
.promotion-card:hover .promotion-content h3 {
    color:#E65A26;
}
@media(max-width:992px) {
    .promotions-list {
        gap:24px;
    }
    .promotion-card:nth-child(1) {
        width: 100%;
    } 
    .promotion-card:nth-child(2) {
        width: 100%;
    } 
    .promotion-card:nth-child(3) {
        width: 100%;
    }
    .promotion-card .promotion-thumb {
        width: 100%;
        /* height: 320px!important; */
    }
    .promotion-card .promotion-thumb img {
        width: 100%;
        height: 100%;
    }
}
@media(max-width:420px) {
    .promotion-card:nth-child(3) .promotion-thumb {
        height: 131px;
    }
    .promotion-card:nth-child(3) .promotion-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }
}
/* END */

/* ADVANTAGES */
.advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ECECEC;
    padding:24px 16px 16px;
    width: calc(100% / 4 - 12px);
    text-decoration: none;
}
.advantage-card .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 114%;
    letter-spacing: -1px;
    text-align: center;
    margin: 0;

}
.advantage-card img {
    width: 100%;
    height: auto;
}
.advantage-card .excerpt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: -0.2px;
    text-align: center;
    vertical-align: middle;
    color:#8A8A8A;
    height: 36px;
}
@media(max-width:992px) {
    .advantage-card img {
        order: 1;
    }
    .advantage-card .title {
        order: 2;
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 126%;
        letter-spacing: -0.5px;
    }
    .advantage-card .excerpt {
        height: auto;
        order: 3;
        font-family: Rubik;
        font-weight: 400;
        font-size: 11px;
        line-height: 120%;
        letter-spacing: -0.2px;
    }
}
@media(max-width:576px) {
    .advantages-list {
        padding:16px 0;
        justify-content: center;
        gap:34px;
        max-width: 234px;
        margin: auto;
    }
    .advantage-card {
        width: 100px;
        padding: 0;
        background-color: transparent;
    }
    .advantage-card .excerpt {
        display: none;
    }
    .advantage-card .title {
        margin: 0;
    }
}
/* END */

/* popular slider */
.popular ul.products {

}
.popular ul.products .slick-list {
    width: 100%;
}
.popular ul.products .slick-track {
    display: flex;
    gap:16px;
}
.popular ul.products .slick-track::before,
.popular ul.products .slick-track::after {
    display: none;
}
@media(max-width:1200px) {
    .popular ul.products .slick-list {
        margin: 0 -8px;
    }
}
@media(max-width:420px) {
    .popular ul.products .slick-list {
        padding-right: 74px;
        margin: 0;
        margin-right: -12px;
    }
}
/* end */