*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-body {
    font-family: 'Urbanist', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #301E12;
    background-color: #fff;
    line-height: 1.5;
    padding-top: 216px;
    overflow-x: hidden;
}

.products-page.page-body {
    padding-top: 216px;
}


a,
.link-base {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}


ul,
.list-base {
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
.heading-base,
.hero-title,
.split-title,
.registration-title,
.footer-heading,
.section-title,
.category-title,
.featured-title,
.product-title,
.mobile-nav-title {
    font-family: 'Urbanist', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.hero-subtitle,
.split-subtitle,
.featured-subtitle,
.product-subtitle,
.mobile-nav-title.sub-title {
    font-family: 'Urbanist', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

div,
.btn-base,
.hero-btn,
.look-btn,
.registration-btn,
.search-btn,
.mobile-action-link,
.link-base.hero-btn {
    font-family: 'Urbanist', sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}


.promo-bar {
    background-color: #634f41;

    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;

    max-height: 50px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.75s ease;
}

.main-header.scrolled .promo-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border: none;
    margin: 0;
}


.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .main-header.scrolled .promo-bar {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        border: none;
        margin: 0;
    }

    .main-header.scrolled .logo-bar-container {
        max-height: 0;
        opacity: 0;
        border: none;
        margin: 0;
        overflow: hidden;
    }
}


.logo-bar-container {
    border-bottom: 1px solid #eaeaea;
    transition: all 0.75s ease;
    max-height: 200px;
    opacity: 1;
    overflow: visible;
}

.logo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
}

.logo.link-base {
    background-image: url(./icons/logo-black.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 250px;
    height: 50px;
}

/* .header-left {
    flex: 1;
} */

.store-locator-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    transition: color 0.15s ease;
}

.store-locator-link .location-icon {
    font-size: 16px;
}

.location-icon {
    background-image: url(./icons/pin.png);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
}

.store-locator-link:hover {
    color: #000;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #3d2b1f;

}

.sub-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    color: #666;
}


.sub-links .sub-link-item {
    font-size: 14px;
}

.sub-links .sub-link-item:last-child {
    color: #C6142D;
}

.sub-links .sub-link-item:hover {
    color: #463020;
}

.sub-link-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sub-link-item.regalos-link {
    padding: 6px 15px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s, font-weight 0.2s;
}

.sub-link-dropdown-wrapper:hover .regalos-link {
    background-color: #f6efe9;
    color: #463020;
    font-weight: 700;
}

.sub-link-dropdown {
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translateX(0%) translateY(10px);
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.sub-link-dropdown-wrapper:hover .sub-link-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%) translateY(0);
}

.dropdown-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #634f41;
    margin-bottom: 12px;
}

.dropdown-link {
    display: block;
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.dropdown-link:hover {
    color: #000;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 38px;
    height: 38px;
    color: #555;
    transition: color 0.2s ease;
}

.icon-btn:hover {
    color: #000;
}

.search-btn {
    background-color: #634f41;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    background-image: url(./icons/search.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.search-btn:hover {
    background-color: #4a3c31;
    color: #fff;
}

.user-btn {
    background-image: url(./icons/user.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.heart-btn {
    background-image: url(./icons/fav.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.cart-btn {
    background-image: url(./icons/cart.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

}
span.contador-carrito-custom.update_framgents_counter {
    position: absolute;
    left: 0px;
    font-size: 12px;
    background-color: #4a3c31;
    border-radius: 50%;
    padding: 0px 4px;
    color: #F7E7D7;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.nav-item {
    position: static;

}

.nav-item>.nav-main-anchor {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: padding 0.75s ease;
}

.scrolled .nav-item>.nav-main-anchor {
    padding: 10px 15px;
}

.nav-item>.nav-main-anchor:hover {
    color: #000;
}


.nav-item>.nav-main-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #634f41;
    transition: width 0.3s ease;
}

.nav-item.active>.nav-main-anchor::after,
.nav-item:hover>.nav-main-anchor::after {
    width: 100%;
}


.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    z-index: 100;
    height: calc(0px);
    /* opacity: 0;
    visibility: hidden; */
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.scrolled .mega-menu.active {
    height: calc(100vh - 39.5px);

    overflow-y: auto;
}
ul.page-numbers {
    margin: auto;
    display: flex;
    width: max-content;
    gap: 10px;
}
span.page-numbers {
    width: 25px;
    text-align: center;
    border-radius: 50%;
    height: 25px;   
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}
span.page-numbers.current {
    background-color: #4a3c31;
    color: #F7E7D7;
}
.mega-menu.active {
/*    height: calc(100vh - 216px);*/
height: auto;
    overflow-y: auto;
}

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: flex;
    gap: 40px;
}

.mega-column-group {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 25%;
}

.menu-group {
    width: calc(33.33333% - 27px);
    margin-bottom: 40px;
}

.menu-group-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
}

.mega-menu-link {
    font-size: 14px;
    color: #666;
    transition: color 0.15s ease;
    font-weight: 400;
}

.mega-menu-link:hover {
    color: #000;
    text-decoration: underline;
}

.image-column {
    align-items: flex-start;
}

.image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.image-wrapper .mega-menu-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
}

.image-link {
    font-size: 13px;
    font-weight: 500;

    text-align: left;
}

.image-link:hover {
    text-decoration: underline;
}


.slick-subcats .slick-track {
    margin-left: 0;
}

.hero-banner-component {
    width: 100%;
    position: relative;
    overflow: hidden;
}


.hero-slider .slick-list {
    margin: 0;
    padding: 0;
}

.hero-slider .slick-slide {
    outline: none;
}


.hero-slide {
    height: 100vh;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-slide.half-hero {
    height: 50vh;
    max-height: 500px;
}


.hero-slide-inner {
    flex: 1;
    height: 100vh;
    max-height: 800px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 60px 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.hero-content {
    color: #F7E7D7;
    z-index: 3;
}

.half-hero.half-hero .hero-content {
    max-width: 500px;
}

.coffe-color .hero-content {
    color: #634f41;
}

/* =========================================
   VARIANTE 1: Center Alignment (e.g. Artesanias)
========================================= */
.variant-center .hero-slide-inner {
    align-items: center;
    justify-content: center;
}

.variant-center .hero-content {
    text-align: center;
    width: 100%;
    max-width: 730px;
}

/* =========================================
   VARIANTE 2: Top Left Layout (e.g. Comedor)
========================================= */
.variant-top-left .hero-slide-inner {
    align-items: flex-start;
    justify-content: flex-start;
}

.variant-top-left .hero-content {
    text-align: left;
    max-width: 700px;
}

/* =========================================
   VARIANTE 3: Top Right Layout (e.g. Decoracion)
========================================= */
.variant-top-right .hero-slide-inner {
    align-items: flex-end;
    justify-content: flex-start;
}

.variant-top-right .hero-content {
    text-align: right;
    max-width: 700px;
}

/* =========================================
   VARIANTE 4: Half Right Layout (e.g. 25% OFF)
========================================= */
.variant-half-right .hero-slide-inner {
    align-items: flex-end;
    justify-content: center;
}

.variant-half-right .hero-content {
    text-align: right;
    max-width: 400px;
}

/* =========================================
   VARIANTE 5: Half Left Layout
========================================= */
.variant-half-left .hero-slide-inner {
    align-items: flex-start;
    justify-content: center;
}

.variant-half-left .hero-content {
    text-align: left;
    max-width: 400px;
}


.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-title-large {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-beige {
    background-color: #f6efe9;
    color: #4a3c31;
    border: 1px solid transparent;
}

.btn-beige:hover {
    background-color: #e5dacd;
}

.btn-brown {
    background-color: #4a3c31;
    color: #fff;
    border: 1px solid transparent;
}

.btn-brown:hover {
    background-color: #2e1d15;
}

.btn-outline-beige {
    background-color: transparent;
    color: #f6efe9;
    border: 1px solid #f6efe9;
}

.btn-outline-beige:hover {
    background-color: #f6efe9;
    color: #4a3c31;
}

.btn-outline-brown {
    background-color: transparent;
    color: #f6efe9;
    border: 1px solid #4a3c31;
}

.btn-outline-brown:hover {
    background-color: #4a3c31;
    color: #fff;
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline-white:hover {
    background-color: #fff;

}

.hero-floating-element {
    z-index: 4;
}

.position-bottom-left {
    margin-top: auto;
    align-self: flex-start;
}

.position-bottom-right {
    margin-top: auto;
    align-self: flex-end;
}

.look-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.look,
.look-light {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.look {
    background-image: url(./icons/look.png);
}

.look-light {
    background-image: url(./icons/look-light.png);
}

.hero-arrow-left,
.hero-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s;
}

.hero-arrow-left:hover,
.hero-arrow-right:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}

.products-section,
.featured-section,
.category-section {
    padding: 60px 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.slide-cats-container {
    max-width: 1400px;
    margin: 0 auto 15px;
    padding: 0 30px;
}


.slide-cats-container .section-header {
    margin-bottom: 15px;
    padding: 0;
}

.slick-cats,
.slick-subcats {
    padding: 0 0px;
}

.section-header {
    margin-bottom: 30px;

    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
}

.section-title {
    font-size: 30px;
    color: #634f41;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


.text-center {
    text-align: center;
}


.product-carousel .slick-slide,
.featured-carousel .slick-slide,
.category-carousel .slick-slide {
    height: auto;
    margin: 0 10px 0 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 15px;
}


.product-card {
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.capture-click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #D6CCB2;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.product-image-wrap img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: cover;
}

.product-card:hover .product-image-wrap img.primary-image {
    opacity: 1;
}

.product-card:hover .product-image-wrap img.hover-image {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f6efe9;
    color: #634f41;
    font-size: 16px;
    padding: 4px 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease;
}

/* .product-card:hover .product-badge {
    background: rgba(247, 231, 215, 0.5);
    color: #ffffff;
} */

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;

    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.detail-header .product-wishlist {
    color: #3d2b1f;
    position: relative;
    top: initial;
    right: initial;
}

.detail-header .product-wishlist.active {
    color: #3d2b1f;
}

.product-card:hover .product-wishlist {
    color: #e5dacd;
}

.product-wishlist.active {
    color: #e5dacd;
}

.product-info {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    min-height: 115px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    order: 1;
    margin-bottom: 5px;
}

.product-sku {
    font-size: 16px;
    color: #AE9780;
    order: 2;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    order: 3;
}

.product-card:hover .product-sku {
    max-height: 20px;
    opacity: 1;
    margin-bottom: 5px;
}

.featured-card {
    text-align: center;
}

.featured-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 3.5;
    overflow: hidden;
    margin-bottom: 15px;
}

.slide-cats-container .featured-image-wrap {
    aspect-ratio: 1 / 1;
}

.featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.slick-subcats .featured-title {
    font-size: 17.1px;
    text-align: left;
}

.featured-subtitle {
    font-size: 24px;
    font-weight: 400;
}

.category-card {
    text-align: center;
}

.category-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title {
    font-size: 15px;
    font-weight: 700;

}


.split-banner-section {
    width: 100%;
}

.split-banner {
    display: flex;
    width: 100%;
    height: 100vh;
    max-height: 800px;
}

.split-banner.reverse {
    flex-direction: row-reverse;
}

.split-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.split-content-inner {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.split-title {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.split-subtitle {
    font-size: 24px;
    letter-spacing: 2px;
}


.latest-grid-section {
    padding: 30px 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-header {
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
}




.registration-section {
    padding: 50px 40px;
    border-top: 1px solid #301e123b;
    max-width: 1400px;
    margin: 0 auto;
}

.registration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.registration-title {
    font-size: 23px;
    color: #4a3c31;
    text-align: right;
    font-weight: 600;
    text-align: left;
}

.registration-btn {
    background-color: #3f2f24;
    color: #F7E7D7;
    border: none;
    padding: 10px 100px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.registration-btn:hover {
    background-color: #000;
}


/* =========================================
   FOOTER
========================================= */
.main-footer {
    background-color: #F7E7D7;
    color: #634f41;
    font-size: 13px;
    padding-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2d7cc;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.footer-col {
    min-width: 150px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4a3c31;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #634f41;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #000;
}

.footer-brand-col {
    text-align: right;
    flex-grow: 1;
}

.footer-logo-text {
    font-family: serif;
    font-size: 38px;
    color: #4a3c31;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.footer-logo {
    width: 230px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
}

.footer-social .footer-heading {
    margin-bottom: 0;
}

.social-divider {
    color: #ccbaab;
    font-size: 0px !important;
    border-left: 2px solid #ccbabb;
    height: 35px;
    margin: 0 25px;
}

.footer-social i {
    font-size: 18px;
}

.social-link,
.social-icon-footer {
    display: block;
}

.footer-middle {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2d7cc;
}

.footer-payments,
.footer-security {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4a3c31;
}

.payment-title,
.security-title {
    font-weight: 700;
    margin-right: 15px;
    font-size: 20px;
}

.payment-method {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pci-icon {
    width: 150px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-bottom {
    background-color: #634f41;
    color: #f6efe9;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom-text {
    font-size: 14px;
    padding: 10px 0;
    font-weight: 700;
}

.footer-bottom-text:nth-child(2) {
    padding: 10px 30px;
    border-left: 1px solid #f6efe9;
    border-right: 1px solid #f6efe9;
}


/* =========================================
   MOBILE MENU OVERLAY
========================================= */
.mobile-only {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 96px);
    background-color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.scrolled .mobile-menu-overlay {
    top: 62px;
    height: calc(100vh - 62px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}



.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 10px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item,
.mobile-sub-item {
    border-bottom: 1px solid #eaeaea;
}

.mobile-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.2s;
}

.mobile-nav-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.mobile-nav-title.sub-title {
    font-weight: 600;
    font-size: 14px;
    color: #3d2b1f;
}

.mobile-accordion-toggle {
    background: none;
    border: none;
    font-size: 14px;

    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-accordion-toggle.arrow-right {
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(./icons/arrow-right.png);
}

.mobile-accordion-toggle .fa-solid,
.mobile-accordion-toggle .fas {
    color: #3d2b1f;
}

.mobile-accordion-content {
    display: none;
    background-color: #fff;
}

.mobile-accordion-content.level-2 {
    background-color: #fafafa;
}

.mobile-sub-item .mobile-accordion-header {
    padding: 15px 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #eaeaea;
    border-top: none;
}

.mobile-sub-item:last-child {
    border-bottom: none;
}

.mobile-sub-links {
    padding: 10px 20px 20px;
    background-color: #F6F2ED;
}

.mobile-sub-links li {
    margin-bottom: 12px;
}

.mobile-sub-links li:last-child {
    margin-bottom: 0;
}

.mobile-sub-links a {
    font-size: 13px;
    color: #3d2b1f;
    font-weight: 400;
    padding-right: 20px;
}

.mobile-sub-links a.arrow-right {
    background-size: 7px;
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url(./icons/arrow-right.png);
}


.mobile-secondary-nav {
    background-color: #f8f6f4;
    padding: 20px;
}

.mobile-secondary-item {
    border-bottom: 1px solid #eaeaea;
}

.mobile-secondary-item:last-child {
    border-bottom: none;
}

.mobile-secondary-item .mobile-accordion-header.sub-level {
    padding: 15px 0;
    background-color: transparent;
    border-bottom: none;
}

.mobile-sec-link {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 700;

}

.mobile-secondary-item .mobile-sec-link {
    padding: 15px 0;

}

.mobile-secondary-item .mobile-accordion-header .mobile-sec-link {
    padding: 0;

}

.mobile-sec-link.txt-red {
    color: #d11241;
}


.mobile-user-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;

}

.mobile-action-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* Product Filter Bar */
.filters-bar-section {
    position: sticky;
    z-index: 20;
    top: 216px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.75s ease;
}


.filters-bar-section.scrolled {
    top: 45px;
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.filters-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filters-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filters-right {
    display: flex;
    align-items: center;
}

.filters-label {
    font-size: 16px;
    font-weight: 600;
    color: #634f41;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

.filter-btn {
    background-color: transparent;
    color: #634f41;
    border: 1px solid #e0d5cb;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #634f41;
    background-color: #f6efe9;
}

.filter-dropdown-wrapper {
    position: relative;
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.filters-right .filter-dropdown {
    left: auto;
    right: 0;
}

/* .filter-dropdown-wrapper:hover .filter-dropdown, */
.filter-dropdown-wrapper.active .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    font-weight: 400;
}

.filter-checkbox-label input[type="checkbox"] {
    accent-color: #634f41;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.sort-list {
    min-width: 180px;
    padding: 10px 0;
}

.sort-link {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
    font-weight: 500;
}

.sort-link:hover {
    color: #000;
    background-color: #f9f9f9;
}

/* Filter Overlay for Mobile */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================================
   7. PRODUCT DETAIL
   ========================================================================= */

/* Breadcrumbs */
.breadcrumb {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    max-width: 1400px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    padding: 20px 30px 0;
}

.breadcrumb-products {
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #634f41;
}

.breadcrumb .separator {
    margin: 0 5px;
    font-weight: 300;
}

.breadcrumb .current {
    color: #301E12;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

/* Product Detail Layout */
.product-detail-section {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 30px;
}

/* Gallery */
.product-gallery {
    display: flex;
    gap: 20px;
    height: calc(100vh - 180px);
    /* Fill screen minus header space */
    min-height: 600px;
    max-height: 800px;
    min-width: 0;
    position: sticky;
    top: 45px;
}

.product-thumbnails {
    width: 90px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-thumbnails::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.thumbnail-img {
    width: 90px;
    height: 90px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.6;
}

.thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-img:hover {
    opacity: 0.9;
}

.thumbnail-img.active {
    opacity: 1;
    border-color: #634f41;
}

.product-main-image {
    width: calc(100% - 110px);
    max-width: calc(100% - 110px);
    position: relative;
    background-color: #f6f6f6;
    height: max-content;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Or cover depending on image ratio */
    object-position: center;
}

/* Temporary nav arrows on image for desktop */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
    opacity: 1;
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Info Panel */
.product-info-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-info-panel.mobile-hide {
    display: none;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.detail-title {
    font-size: 25px;
    font-weight: 700;
    color: #301E12;
    margin-bottom: 8px;
    line-height: 1.2;
}

.detail-sku {
    font-size: 15px;
    color: #888;
    margin: 0;
}

.detail-wishlist {
    font-size: 22px;
    color: #301E12;
    margin-top: 5px;
}

.detail-price-wrap {
    margin-bottom: 20px;
}

.detail-price {
    font-size: 25px;
    font-weight: 700;
    color: #301E12;
}

/* Accordions */
.detail-accordions {
    margin-bottom: 40px;
    border-top: 1px solid #301E12;
}

.detail-accordion-item {
    border-bottom: 1px solid #301E12;
}

.detail-price-small {
    font-size: 20px;
}

.detail-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #301E12;
    cursor: pointer;
}

.detail-accordion-header .icon-wrap {
    font-size: 14px;
    font-weight: 300;
}

.detail-accordion-content {
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.detail-accordion-content p {
    margin-bottom: 15px;
}

.detail-accordion-content p:last-child {
    margin-bottom: 0;
}

/* Specs Table */
.specs-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    padding: 12px 15px;
    align-items: center;
}

.table-row:nth-child(odd) {
    background-color: #f6efe9;
}

.table-row:nth-child(even) {
    background-color: transparent;
}

.col-label {
    width: 40%;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #301E12;
}

.col-value {
    width: 60%;
    font-weight: 400;
    color: #555;
}

/* Action Bar */
.detail-action-bar {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.action-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.qty-selector {
    display: flex;
    align-items: center;
    height: 50px;
}

.qty-btn {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    color: #301E12;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-input {
    width: 80px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #301E12;
    border: 1px solid #D5D5D5;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input:focus {
    outline: none;
}

.qty-input::-webkit-outer-spin-div,
.qty-input::-webkit-inner-spin-div {
    -webkit-appearance: none;
    margin: 0;
}

.total-price-display {
    display: block;
    font-weight: 800;
}

.add-to-cart-btn {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
}

/* =========================================
   Colection Section (Product Detail)
   ========================================= */

.collection-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.collection-heading {
    font-size: 30px;
    font-weight: 600;
    color: #4b3d33;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 5%;
}

.collection-card {
    display: flex;
    width: 45%;
    gap: 20px;
    border: none;
    align-items: flex-start;
}

.collection-img-wrap {
    width: 35%;
    aspect-ratio: 1/1;
    border: 1px solid #D6CCB2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.collection-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.collection-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: calc(65% - 20px);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
}

.collection-header .product-wishlist {
    position: relative;
    top: initial;
    right: initial;
}

.collection-header .product-wishlist.active {
    color: #301E12;
}

.collection-title {
    font-size: 16px;
    font-weight: 400;
    color: #301E12;
}

.collection-sku {
    font-size: 14px;
    color: #AE9780;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-desc {
    font-size: 14px;
    color: #301E12;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 300;
}

.collection-price {
    font-size: 16px;
    font-weight: 800;
    color: #301E12;
    margin-bottom: 20px;
    margin-top: auto;
}

.collection-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alt-qty {
    width: 90px;
    height: 35px;
}

.alt-qty .qty-btn {
    font-size: 12px;
}

.alt-qty .qty-input {
    width: 30px;
    font-size: 14.83px;
    border: none;
}

.alt-add-btn {
    height: 35px;
    font-size: 10px;
    padding: 0 15px;
    width: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.modal-look {
    position: fixed;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;

    transition: all .0s ease-in-out .3s;
}

.modal-look.active {
    opacity: 1;
    visibility: visible;
    transition: all .0s ease-in-out;
}

.overlay-look {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000a8;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.modal-look.active .overlay-look {
    opacity: 1;
}

.side-look-container {
    position: relative;
    margin-left: auto;
    height: 100%;
    background-color: #fff;
    width: 30%;
    padding: 0px 0 30px;
    overflow-y: auto;
    z-index: 2;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
}

.modal-look.active .side-look-container {
    transform: translateX(0);
}

.close-look {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(./icons/close.png);
    cursor: pointer;
    margin: 0 0 0px auto;
}

.title-list-products {
    text-transform: none;
    font-weight: 600;
}

.group-products-look {
    width: 100%;
    position: relative;
}

.header-look {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-look {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 30px;
    border-bottom: 1px solid #E4E4E4;
}

.img-wrapper-look {
    width: 30%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.img-wrapper-look img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-product-look {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.top-info {
    width: 100%;
    position: relative;
}

.title-product-look {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    width: 100%;
    margin-bottom: 5px;
}

.sku-product-look {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
}

.price-product-look {
    font-weight: 700;
    font-size: 16px;
    margin-top: auto;
    text-transform: uppercase;
    line-height: 1;
    align-self: flex-end;
    width: 100%;
}

/* =========================================
   MEDIA QUERIES 
========================================= */

@media (max-width: 1400px) {

    .product-carousel .slick-list,
    .featured-carousel .slick-list,
    .category-carousel .slick-list {
        padding-left: 0px;
    }
}

@media (max-width: 1024px) {
    .main-header.scrolled .logo-bar-container {
        max-height: initial;
        max-height: 200px;
        opacity: 1;
        overflow: visible;
        border-bottom: 1px solid #eaeaea;
    }

    .filters-bar-section {
        top: 96px;
    }

    .filters-bar-section.scrolled {
        top: 62px;
    }


    .side-look-container {
        width: 50%;
    }

    .header-look {
        padding: 20px;
    }

    .products-section,
    .featured-section,
    .category-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .search-btn:hover {
        background-color: transparent;

    }

    .icon-btn {
        width: 30px;
        height: 30px;
    }

    .search-btn {
        background-color: transparent;
        background-image: url(./icons/dark-search.png);
    }

    .detail-header {
        margin-bottom: 5px;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .store-locator-link {
        font-size: 0px !important;
    }


    .variant-half-right .hero-slide-inner,
    .variant-half-left .hero-slide-inner {
        align-items: center;
        justify-content: center;
    }

    .variant-half-right .hero-content,
    .variant-half-left .hero-content {
        width: 100%;
        max-width: 700px;
    }

    .hero-title-large {
        font-size: 60px;
    }

    .desktop-only {
        display: none;
    }

    .breadcrumb {
        padding-top: 10px;
        margin-bottom: 15px;
    }

    .breadcrumb-products {
        padding-top: 20px;
        margin-bottom: 15px;
    }

    .slide-cats-container {
        padding: 10px 0;
    }

    .collection-desc {
        margin-bottom: 20px;
    }

    .detail-accordions {
        margin-bottom: 20px;
    }

    .mobile-only {
        display: flex;
        background-image: url(./icons/burger.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 28px;
        height: 28px;
    }

    .burger-btn.active {
        background-image: url(./icons/close.png);
        background-size: 20px;
    }

    .logo-bar {
        position: relative;
        padding: 5px 20px;
    }

    .header-center {
        width: auto;
    }

    .page-body {
        padding-top: 100px;
    }

    .products-page.page-body {
        padding-top: 99px;
    }

    .filters-bar-wrapper {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .filters-bar-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filters-left {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .filters-right {
        margin-left: 10px;
    }

    .filters-container {
        padding: 12px 15px;
    }

    .filter-btn {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
    }

    .filters-label {
        display: none;
    }

    .filter-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
        padding: 30px 20px 40px;
        transform: translateY(100%);
        z-index: 1000;
        min-width: unset;
    }

    .filters-right .filter-dropdown {
        left: 0;
        right: 0;
    }

    .filter-dropdown::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background-color: #ddd;
        border-radius: 2px;
    }

    .collection-info {
        width: 100%;
    }

    .product-detail-section {
        grid-template-columns: 1fr;
        gap: 20px;
        /* margin-bottom: 40px; */
    }

    .product-gallery {
        flex-direction: column-reverse;
        height: auto;
        min-height: unset;
        max-height: unset;
        position: relative;
        top: 0;
    }

    .product-thumbnails {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .thumbnail-img {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
    }

    .product-main-image {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }

    .detail-title {
        font-size: 24px;
    }

    .detail-price {
        font-size: 22px;
    }

    .collection-card {
        width: 100%;
    }

    .detail-price-wrap {
        margin-bottom: -15px;
    }

    .detail-price-small {
        font-size: 18px;
    }

    .desktop-hide {
        display: none !important;
    }

    .mobile-hide {
        display: block !important;
    }
}

@media (max-width: 768px) {

    .slick-cats,
    .slick-subcats {
        padding: 0 0px;
    }

    .side-look-container {
        width: 100%;
    }

    .header-look {
        padding: 20px;
    }

    .search-btn {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }

    .icon-btn {
        font-size: 16px;
    }

    .split-banner {
        flex-direction: column;
    }

    .split-banner.reverse {
        flex-direction: column;
    }

    .split-half {
        min-height: 50vh;
    }

    .split-title {
        font-size: 50px;
    }

    .split-subtitle {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .latest-grid-section {
        padding: 20px 0px;
    }

    .registration-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .registration-title {
        text-align: center;
        font-size: 18px;
    }

    .collection-heading {
        font-size: 18px;
    }

    .footer-logo {
        width: 180px;
        margin-left: initial;
        margin-right: auto;
        margin-bottom: 0px;
    }

    .footer-brand-col {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-middle {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo.link-base {
        width: 180px;
    }


    .hero-slide-inner {
        padding: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-text br {
        display: none;

    }


    .variant-top-left .hero-slide-inner,
    .variant-top-right .hero-slide-inner {
        align-items: center;
        justify-content: flex-start;
    }

    .variant-top-left .hero-content,
    .variant-top-right .hero-content {
        text-align: center;
        width: 100%;
    }


    .position-bottom-left,
    .position-bottom-right {
        align-self: center;
        margin-top: auto;
    }

    .hero-btn {
        padding: 10px 24px;
        font-size: 11px;
    }

    .hero-arrow-left {
        left: 10px;
        width: 30px;
        height: 30px;
    }

    .hero-arrow-right {
        right: 10px;
        width: 30px;
        height: 30px;
    }

    .footer-bottom-text:nth-child(2) {
        border: none;
    }

    .main-footer {
        padding-top: 40px;
    }

    .footer-top {
        padding: 0 25px 25px;
        gap: 25px;
    }

    .footer-middle {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .price-product-look {
        font-size: 14px;
    }

    .title-product-look,
    .sku-product-look {
        font-size: 14px;
    }

    .product-main-image {
        height: auto;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        flex-direction: column;
    }

    .collection-img-wrap {
        width: 100%;
    }

    .collection-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .alt-qty {
        width: 100%;
    }

    .alt-add-btn {
        width: 100%;
    }
}

@media (min-width: 2000px) {

    .main-content {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive Typography */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 42px;
    }

    .look-btn,
    .registration-btn,
    .featured-title,
    .footer-heading,
    .payment-title,
    .security-title,
    .hero-text,
    .featured-subtitle,
    .split-subtitle,
    .add-to-cart-btn,
    .detail-title {
        font-size: 22px;
    }

    .hero-btn,
    .mobile-nav-title,
    .price-product-look,
    .product-badge,
    .product-price,
    .filters-label,
    .product-title,
    .detail-accordion-content,
    .collection-title,
    .title-product-look,
    .sku-product-look,
    .collection-price,
    .hero-arrow-left,
    .hero-arrow-right,
    .product-sku,
    .qty-btn,
    .search-btn,
    .icon-btn,
    .nav-item>.nav-main-anchor {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }

    .look-btn,
    .registration-btn,
    .featured-title,
    .footer-heading,
    .payment-title,
    .security-title,
    .hero-text,
    .featured-subtitle,
    .split-subtitle,
    .add-to-cart-btn,
    .detail-title {
        font-size: 20px;
    }

    .hero-btn,
    .mobile-nav-title,
    .price-product-look,
    .product-badge,
    .product-price,
    .filters-label,
    .product-title,
    .detail-accordion-content,
    .collection-title,
    .title-product-look,
    .sku-product-look,
    .collection-price,
    .hero-arrow-left,
    .hero-arrow-right,
    .product-sku,
    .qty-btn,
    .search-btn,
    .icon-btn,
    .nav-item>.nav-main-anchor {
        font-size: 15px;
    }

    .menu-group-title,
    .footer-bottom-text,
    .mobile-sec-link,
    .detail-accordion-header,
    .footer-social,
    .mobile-nav-title.sub-title,
    .filter-btn,
    .mobile-action-link,
    .sort-link,
    .mega-menu-link,
    .filter-checkbox-label,
    .promo-bar,
    .detail-accordion-header .icon-wrap,
    .collection-desc,
    .store-locator-link,
    .sub-links .sub-link-item,
    .carousel-arrow,
    .footer-list a,
    .mobile-accordion-toggle,
    .collection-sku {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .look-btn,
    .registration-btn,
    .featured-title,
    .footer-heading,
    .payment-title,
    .security-title,
    .hero-text,
    .featured-subtitle,
    .split-subtitle,
    .add-to-cart-btn,
    .detail-title {
        font-size: 18px;
    }

    .hero-btn,
    .mobile-nav-title,
    .price-product-look,
    .product-badge,
    .product-price,
    .filters-label,
    .product-title,
    .detail-accordion-content,
    .collection-title,
    .title-product-look,
    .sku-product-look,
    .collection-price,
    .hero-arrow-left,
    .hero-arrow-right,
    .product-sku,
    .qty-btn,
    .search-btn,
    .icon-btn,
    .nav-item>.nav-main-anchor {
        font-size: 14px;
    }

    .menu-group-title,
    .footer-bottom-text,
    .mobile-sec-link,
    .detail-accordion-header,
    .footer-social,
    .mobile-nav-title.sub-title,
    .filter-btn,
    .mobile-action-link,
    .sort-link,
    .mega-menu-link,
    .filter-checkbox-label,
    .promo-bar,
    .detail-accordion-header .icon-wrap,
    .collection-desc,
    .store-locator-link,
    .sub-links .sub-link-item,
    .carousel-arrow,
    .footer-list a,
    .mobile-accordion-toggle,
    .collection-sku {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .look-btn,
    .registration-btn,
    .featured-title,
    .footer-heading,
    .payment-title,
    .security-title,
    .hero-text,
    .featured-subtitle,
    .split-subtitle,
    .add-to-cart-btn,
    .detail-title {
        font-size: 16px;
    }

    .hero-btn,
    .mobile-nav-title,
    .price-product-look,
    .product-badge,
    .product-price,
    .filters-label,
    .product-title,
    .detail-accordion-content,
    .collection-title,
    .title-product-look,
    .sku-product-look,
    .collection-price,
    .hero-arrow-left,
    .hero-arrow-right,
    .product-sku,
    .qty-btn,
    .search-btn,
    .icon-btn,
    .nav-item>.nav-main-anchor {
        font-size: 14px;
    }

    .menu-group-title,
    .footer-bottom-text,
    .mobile-sec-link,
    .detail-accordion-header,
    .footer-social,
    .mobile-nav-title.sub-title,
    .filter-btn,
    .mobile-action-link,
    .sort-link,
    .mega-menu-link,
    .filter-checkbox-label,
    .promo-bar,
    .detail-accordion-header .icon-wrap,
    .collection-desc,
    .store-locator-link,
    .sub-links .sub-link-item,
    .carousel-arrow,
    .footer-list a,
    .mobile-accordion-toggle,
    .collection-sku {
        font-size: 12px;
    }
}


.woocommerce {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: auto;
    position: relative;
}
.woocommerce .cart-collaterals {
    position: sticky;
    width: 500px;
    border: 1px solid #D6CCB2;
    padding: 20px;
}
.woocommerce .cart-collaterals .cart_totals {
    width: 100%;
}
.woocommerce .cart-collaterals .cart_totals h2 {
    font-family: 'Urbanist';
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: #6E5546;
    border-bottom: 1px solid #D6CCB2;
    padding-bottom: 13px;
}
.woocommerce .cart-collaterals .cart_totals td {
    text-align: right;
    color: #6E5546;
}
.woocommerce .cart-collaterals .cart_totals .cart-subtotal td {
    font-weight: 900;
    color: #6E5546;
}
.woocommerce .cart-collaterals .cart_totals tr.msg-shipping td {
    color: #818181;
    font-weight: 200;
}
.woocommerce .cart-collaterals .cart_totals tr.msg-shipping th {
    display: none;
}
.woocommerce .cart-collaterals .cart_totals tr.woocommerce-shipping-totals.shipping td {
    color: #818181;
    font-weight: 400;
}
.woocommerce table.shop_table tbody th {
    color: #6E5546;
    font-weight: 900;
}
form.woocommerce-cart-form {
    width: calc(100% - 600px);
}
.woocommerce-notices-wrapper {
    position: absolute;
}
a.checkout-button.button.alt.wc-forward {
    background-color: #301E12;
    width: 90%;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #F7E7D7;
    margin: auto;
    display: block;
    padding: 20px 0;
}
.woocommerce table.shop_table {
    border: none;
}
table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead {
    display: none;
}
.woocommerce table.cart img {
    font-size: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
}
.woocommerce table.cart img {
    font-size: 0;
    width: 120px;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
    border: 1px solid #D6CCB2;
}
td.product-name a {
    font-weight: 500;
}
.quantity input {
    text-align: center;
    border: 1px solid #D5D5D5;
    outline: none;
    padding: 10px;
}
tr.woocommerce-cart-form__cart-item.cart_item {
    display: flex;
    width: 100%;
}
.woocommerce table.shop_table td.product-remove {
    order: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
}
.woocommerce table.shop_table td {
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 100%;
}
.woocommerce-form-login-toggle {
    position: absolute;
}
.woocommerce-form-coupon-toggle {
    position: absolute;
}

form.checkout.woocommerce-checkout {
    width: calc(100% - 500px);
}
.woocommerce #customer_details.col2-set .col-1, 
.woocommerce-page #customer_details.col2-set .col-1 {
    float: none;
    width: 100%;
}
form.checkout.woocommerce-checkout {
    width: calc(100% - 500px);
    color: #6E5546;
}
.woocommerce form .form-row .input-text, 
.woocommerce form .form-row select {
    border: 1px solid #6E5546 !important;
    height: 50px;
    padding: 10px;
    outline: none;
}
.woocommerce form .form-row-first, 
.woocommerce form .form-row-last, 
.woocommerce form .address-field, 
.woocommerce-page form .form-row-first, 
.woocommerce-page form .address-field, 
.woocommerce-page form .form-row-last {
    width: 49%;
    overflow: visible;
    clear: unset;
}
p#billing_address_1_field {
    float: right;
    clear: unset;
}
p#billing_address_2_field {
    float: left;
    margin-top: 32px;
    clear: unset;
}
p#billing_city_field {
    float: right;
    clear: unset;
}
.woocommerce form .form-row .country_to_state--single {
    width: 100%;
    text-align: center;
    clear: unset;
}
p#billing_email_field {
    float: left;
    clear: unset;
}
p#billing_tipo_doc_field {
    float: right;
    clear: unset;
}
p#billing_numero_doc_field {
    float: left;
    clear: unset;
}
p#billing_confirm_email_field {
    float: right;
    clear: unset;
}
p#billing_country_field {
    float: left;
    clear: unset;
}
p#shipping_address_1_field {
    float: right;
    clear: unset;
}
p#shipping_country_field {
    float: left;
    clear: unset;
}
p#shipping_city_field {
    float: right;
    clear: unset;
}
p#shipping_address_2_field {
    float: left;
    margin-top: 32px;
}
.woocommerce .col2-set .col-2, 
.woocommerce-page .col2-set .col-2 {
    float: right;
    width: 100%;
}
input#ship-to-different-address-checkbox {
    position: relative;
    outline: none;
    font-size: 0;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 1px solid #6E5546;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}
input#ship-to-different-address-checkbox:checked {
    background-image: url(../images/chulito.png);
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}
.payment_box.payment_method_woo-mercado-pago-basic {
    background-color: transparent !important;
}
li.wc_payment_method {
    border: 1px solid #6E5546;
    margin: 10px 0 !important;
    border-radius: 15px;
    padding: 20px;
}
#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}
/*
input#ship-to-different-address-checkbox::after {
    content: "";
    position: absolute;
    height: 26px;
    width: 25px;
    background-color: #fff;
    border-radius: 25px;
    top: 2px;
    left: 2.5px;
    transition: all .5s ease;
}
*/
inputt#ship-to-different-address-checkbox::after:checked {
    left: 42.5px;
}





.shipping_address {
    overflow: hidden;
    transition: all .5s ease;
}
.woocommerce-shipping-fields__field-wrapper {
    overflow: hidden;
    transition: all .5s ease;
}
textarea#order_comments {
    height: 100px;
}

table.shop_table.woocommerce-checkout-review-order-table {
    border: 1px solid #D6CCB2;
    position: absolute;
    right: 10%;
    width: 450px;
    top: 0;
}
table.shop_table.woocommerce-checkout-review-order-table {
    border: 1px solid #D6CCB2;
    border-top: none;
    position: absolute;
    right: 1px;
    width: 450px;
    top: 44px;
    border-radius: 0;
    padding: 20px;
}

h3#order_review_heading {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    text-align: center;
    border: 1px solid #D6CCB2;
    border-bottom: none;
    color: #6E5546;
    text-transform: uppercase;
    font-weight: 600;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
    display: table-cell;   
    width: 50%; 
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td.product-name {
    font-weight: 500;
}
 .woocommerce table.shop_table.woocommerce-checkout-review-order-table td.product-total {
    text-align: right;
    font-weight: 500;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal span.woocommerce-Price-amount.amount {
    text-align: right;
    width: 100%;
    display: inline-block;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.msg-shipping th {
    display: none;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .msg-shipping td strong {
    font-weight: 500;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
    text-transform: uppercase;
}
div#customer_details {
    height: auto;
}
.sec div#customer_details {
    height: 0;
    overflow: hidden;
}
div#payment {
    height: 0;
    overflow: hidden;
    border: none;
}
.sec div#payment {
    height: auto;
    background-color: transparent;
}
/*
input#ship-to-different-address-checkbox::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 70px;
    background-color: aqua;
    border-radius: 25px;
}
*/
.search-panel {
    position: fixed;
    right: -130%;
    /* left: -100%; */
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow: hidden;
}
.search-panel.active{
    right: 0;
}
.inner-search-panel {
    width: 600px;
    background-color: #fff;
    position: absolute;
    right: -600px;
    height: 100vh;  
    transition: all .5s ease;
    z-index: 10;
    padding: 20px 0;
}
.active .inner-search-panel {
    right: 0;    
}

.close-search-panel {
    width: 50px;
    height: 50px;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(./icons/close.png);
    cursor: pointer;
    /* margin: 0 0 0px auto; */
}
.cont-inner-input {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    gap: 20px;
}

.search-panel input {
    position: relative;
    width: calc(100% - 70px);
    height: 50px;
    /* margin: auto; */
    display: block;
    border: none;
    outline: none;
    border-bottom: 1px solid #414141;
}

.bg-search-panel {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.search-panel .resultado-panel {
    position: relative;
    overflow: auto;
    height: calc(100% - 50px);
}

.item-resultado {
    display: flex;
    align-items: center;
    gap: 30px;
    /* padding: 10px; */
    border-bottom: 1px solid #E4E4E4;
    cursor: pointer;
    transition: background 0.2s;
    padding: 35px 10%;
}
.img-miniatura {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #D8D8D8;
}
.item-resultado .img-miniatura img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.item-resultado h4.name-result {
    font-size: 14px;
    font-weight: 900;
}
.item-resultado .sku-result {
    font-weight: 400;
}
.item-resultado .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100px;
}
.item-resultado .img-miniatura .info .name-result{
    margin: 0 0 3px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
}
.item-resultado .img-miniatura .info .sku-result{
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}
.item-resultado .img-miniatura .info .price-result{
    font-size: 13px;
    font-weight: bold;
    color: #111;
}

.woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
    min-height: 70vh;
}
.woocommerce .col2-set .col-1, 
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2,
.woocommerce-page .col2-set .col-1 {
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
}
.woocommerce .col2-set .col-1 h2, 
.woocommerce-page .col2-set .col-1 h2 {
    position: absolute;
    left: 50%;
    transform: translate(-100%, 0px);
    width: 150px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.woocommerce .col2-set .col-2 h2, 
.woocommerce-page .col2-set .col-2 h2 {
    position: absolute;
    right: 50%;
    transform: translate(100%, 0px);
    width: 150px;
    text-align: center;
    opacity: 0.5;
    cursor: pointer;
}

.register .woocommerce .col2-set .col-2 h2, 
.register .woocommerce-page .col2-set .col-2 h2 {
    opacity: 1;
}
.register .woocommerce .col2-set .col-1 h2, 
.register .woocommerce-page .col2-set .col-1 h2 {
    opacity: 0.5;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
    background-color: #fff;
    width: 600px;
    margin: 50px auto;
}
.register .woocommerce form.checkout_coupon, 
.register .woocommerce form.login, 
.woocommerce form.register {
    display: none;
}
.register .woocommerce form.register {
    display: block;
}

@media (max-width: 768px) {
    .inner-search-panel {
        width: 100%;
    }
}








