*{
    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;
    z-index: 10;
    position: relative;
}


.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;
    right: -3px;
    top: -3px;
    font-size: 10px;
    background-color: #4a3c31;
    border-radius: 50%;
    padding: 0px 4px;
    color: #F7E7D7;
    /* aspect-ratio: 1 / 1; */
    height: 18px;
    width: 18px;
    /* width: max-content; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.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, var(--opacidad-overlay));
    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: 43px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.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: 10px 28px;
    font-size: 14px;
    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: 20px;
    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: 27px;
    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: 15px;
    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: 15px;
    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: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.slick-subcats .featured-title {
    font-size: 15px;
    text-align: center;
}

.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: 22px;
    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;*/
    margin-bottom: 0px;
    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: 0;
    }

    .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;
}
.woocommerce-form-login-toggle {
    display: none;
}

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: 5px;
    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;
}
button#place_order {
    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;
    margin: 50px 0;
}
.woocommerce-privacy-policy-text p {
    font-weight: 400;    
}
.woocommerce-privacy-policy-text a.woocommerce-privacy-policy-link {
    font-weight: bold;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text ~ p {
    font-weight: 400;
    margin: 0;
}
div#probance_optin_cb_wrapper {
    padding: 0 3px;
    grid-gap: 10px;
}
tr.contParentCoupon td.actions {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}
.contParentCoupon button.button {
    background-color: #3f2f24 !important;
    color: #F7E7D7 !important;
    border: none;
    padding: 10px 50px !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    opacity: 1;
}
.contParentCoupon button.button:disabled {
    color: #F7E7D7 !important;
    opacity: 0.5;
}
input#coupon_code {
    height: 35px;
    width: 220px;
    border-radius: 5px;
}

/*
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;
}
#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
    background: transparent;
}
.sec div#payment {
    height: auto;
    background-color: transparent;
}
.woocommerce-checkout #payment ul.payment_methods {
    padding: 10px 0;
}
/*
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-checkout .woocommerce .woocommerce-form-coupon-toggle {
    display: none;
}



.woocommerce-account .woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
    min-height: 70vh;
}
.woocommerce-account .woocommerce .col2-set .col-1, 
.woocommerce-account .woocommerce .col2-set .col-2,
.woocommerce-account .woocommerce-page .col2-set .col-2,
.woocommerce-account .woocommerce-page .col2-set .col-1 {
    position: absolute;
    width: 100%;
    top: 60px;
    left: 0;
}
.woocommerce-account .woocommerce .col2-set .col-1 h2, 
.woocommerce-account .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-account .woocommerce .col2-set .col-2 h2, 
.woocommerce-account .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;
    z-index: 10;
}
.woocommerce-account .register .woocommerce .col2-set .col-2 h2, 
.woocommerce-account .register .woocommerce-page .col2-set .col-2 h2 {
    opacity: 1;
}
.woocommerce-account .register .woocommerce .col2-set .col-1 h2, 
.woocommerce-account .register .woocommerce-page .col2-set .col-1 h2 {
    opacity: 0.5;
}
.woocommerce-account .woocommerce form.checkout_coupon, 
.woocommerce-account .woocommerce form.login, 
.woocommerce-account .woocommerce form.register {
    background-color: #fff;
    width: 600px;
    margin: 50px auto;
}
.woocommerce-account .register .woocommerce form.checkout_coupon, 
.woocommerce-account .register .woocommerce form.login, 
.woocommerce-account .woocommerce form.register {
    display: none;
}
.woocommerce-account .register .woocommerce form.register {
    display: block;
}
.woocommerce-account button.woocommerce-button.button.woocommerce-form-login__submit,
.woocommerce-account button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
    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;
    clear: initial;
    display: block;
    float: none;
    margin: auto;
}
.woocommerce-account label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
    width: 100%;
    text-align: center;
}
.woocommerce-account .woocommerce form.login .form-row:last-child {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}
.woocommerce-account p.woocommerce-LostPassword.lost_password {
    text-align: center;
}
.woocommerce-account .woocommerce-privacy-policy-text p {
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
.woocommerce-account div#probance_optin_cb_wrapper span {
    width: max-content;
    font-weight: 500;
}
.woocommerce-account div#probance_optin_cb_wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.woocommerce-account label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme span {
    font-weight: 500;
}




nav.woocommerce-MyAccount-navigation li {
    margin: 10px 0;
}
nav.woocommerce-MyAccount-navigation li a {
    font-weight: 500;
    display: block;
}
nav.woocommerce-MyAccount-navigation li.is-active a {
    font-weight: 900;
}

.woocommerce-MyAccount-content {
    width: 80%;
}
.woocommerce-MyAccount-content {
    width: 80%;
}
.woocommerce .woocommerce-MyAccount-content table.shop_table td {
    display: table-cell;    
    width: 20%;
}








.loginFormContainer {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 30px;
    border: 1px solid;
    border-radius: 9px;
}
.loginContainer.fullFull {
    background-image: none !important;
}
.loginFormContainer {
    width: 650px;
    max-width: 80%;
    margin: 60px auto;
    padding: 30px;
    border: 1px solid #301e123b;
    border-radius: 9px;
}
h2.boldTitle.title.loginTitle {
    text-align: center;
    font-family: 'Urbanist';
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
}
h2.boldTitle.title.loginTitle ~ p {
    font-weight: 700;
}
h2.boldTitle.title.loginTitle ~ p strong {
    font-weight: 600;    
}
.loginPartial p:first-of-type {
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 14px;
    width: 100%;
    font-weight: 600;
}
.formBlock {
    margin-top: 10px;
}
.formBlock input {
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 10px;
    border: 1px solid #301e123b;
}
form#form_contact p {
    font-weight: 400;
    font-size: 14px;
    text-align: left!important;
    margin: 0!important;
}
select#contactMessageDD {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #301e123b;
}
textarea#contactMessage {
    width: 100%;
    height: 90px;
    border: 1px solid #301e123b;
}
.proteccionDatos {
    margin: 20px 0;
    font-weight: 500;
}
.proteccionDatos a {
    text-decoration: underline;
    font-family: 'Urbanist';
    font-weight: 700;
    color: #301E12!important;
}
.proteccionDatos p {
    font-size: 13px !important;
    margin-bottom: 10px;
}
.proteccionDatos p a {
    text-decoration: underline;
    font-family: 'Urbanist';
    font-weight: 700;
    color: #301E12!important;
}
.formBlockHalf a#contactSubmission {
    background-color: #3f2f24;
    color: #F7E7D7;
    border: none;
    padding: 10px 60px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    margin: 30px auto 0;
    display: block;
    width: max-content;
}

.disclaimercachivaches {
    padding: 20px 0;
    font-weight: 300;
    font-size: 15px;
}

.woocommerce-account .woocommerce {
    margin: 30px auto;
}
.woocommerce-account .woocommerce-MyAccount-content {
    position: relative;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-1.woocommerce-Address h2,
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-2 h2 {
    float: left;
    width: 48%;
}
.woocommerce-edit-account .woocommerce-EditAccountForm.edit-account label {
    font-weight: 600;
}
.woocommerce-edit-account .woocommerce-EditAccountForm.edit-account fieldset {
    padding: 5px 30px 30px;
}
div#probance_optin_cb_wrapper {
    margin: 20px 0;
}
span#account_display_name_description em {
    font-weight: 400;
    font-size: 14px;
}
button.woocommerce-Button.button {
    background-color: #3f2f24;
    color: #F7E7D7;
    border: none;
    padding: 10px 60px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    margin: 30px auto 0;
    display: block;
    width: max-content;
}
nav.woocommerce-MyAccount-navigation li {
    padding: 0 15px;
    transition: all .3s ease;
}

nav.woocommerce-MyAccount-navigation li:hover {
    background-color: #634f41;
    color: #f6efe9;
}
nav.woocommerce-MyAccount-navigation ul {
    border-right: 1px solid;
}
.woocommerce-account.woocommerce-dashboard .woocommerce-MyAccount-navigation,
.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-navigation,
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-navigation,
.woocommerce-account.woocommerce-edit-account .woocommerce-MyAccount-navigation {
    width: 200px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 400px);
}
.woocommerce-account .woocommerce {
    margin: 30px auto;
    min-height: 600px;
}
a.woocommerce-button.button.view {
    background-color: #3f2f24;
    color: #F7E7D7;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    margin: 5px;
    display: block;
    width: max-content;
}
.woocommerce-MyAccount-content p:last-of-type {
    margin-top: 20px;
    font-weight: 500;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-1, 
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-2 {
    position: relative;
    margin-bottom: 30px;
    border-top: 1px solid;
    padding-top: 25px;
    top: 0;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-1.woocommerce-Address h2, 
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set .col-2 h2 {
    float: none;
    width: 48%;
    position: relative;
    text-align: left;
    left: 0;
    transform: none;
    color: #301E12;
    cursor: auto;
    opacity: 1;
}
.woocommerce-account.woocommerce-edit-address header.woocommerce-Address-title.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.woocommerce-account.woocommerce-edit-address .addresses .title::after, 
.woocommerce-account.woocommerce-edit-address .addresses .title::before {
    display: none;
}
.woocommerce-account.woocommerce-edit-address address {
    font-weight: 500;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set::after, 
.woocommerce-account.woocommerce-edit-address .woocommerce .col2-set::before, 
.woocommerce-account.woocommerce-edit-address .woocommerce-page .col2-set::after, 
.woocommerce-account.woocommerce-edit-address .woocommerce-page .col2-set::before,
.woocommerce-account.woocommerce-edit-address .woocommerce::after, 
.woocommerce-account.woocommerce-edit-address .woocommerce::before{
    display: none;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content p {
    margin-bottom: 20px;    
    margin-top: 0;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content .woocommerce-address-fields p {
    margin-bottom: 0;    
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content .woocommerce-address-fields p#billing_postcode_field {
    position: relative;
    float: left;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content .woocommerce-address-fields p#billing_phone_field {
    float: right;
    position: relative;
    width: 49%;
    clear: unset;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content .woocommerce-address-fields p#billing_email_field {
    float: left;
    clear: unset;
    width: 49%;
}
.woocommerce-account.woocommerce-edit-address .woocommerce-MyAccount-content .woocommerce-address-fields button.button {
    background-color: #3f2f24 !important;
    color: #F7E7D7 !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
    border-radius: 5px !important;
    cursor: pointer !important;
    text-transform: uppercase;
    transition: background 0.3s;
    margin: 35px auto !important;
    display: block !important;
    width: max-content !important;
}
.errorNotFound {
    height: calc(100vh - 220px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.errorNotFound p.textnumNoFound {
    font-size: 200px;
    line-height: 1;
}
.errorNotFound p.bold.textShadow {
    font-size: 35px;
    width: 500px;
    line-height: 1;
    margin-bottom: 20px;
}
.errorNotFound p.bold.white.letterSize {
    font-size: 18px;
    font-weight: 400;
    width: 600px;
    line-height: 1.2;
    /* max-width: 90%; */
}
a.roundBtn.orangeDegBtn.mBottomSmall {
    background-color: #3f2f24 !important;
    color: #F7E7D7 !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
    border-radius: 5px !important;
    cursor: pointer !important;
    text-transform: uppercase;
    transition: background 0.3s;
    margin: 35px auto !important;
    display: block !important;
    width: max-content !important;
}


@media (max-width: 768px) {
    .inner-search-panel {
        width: 100%;
    }
    .errorNotFound p.bold.textShadow {
        font-size: 25px;
        width: 500px;
        max-width: 90%;
    }
    .errorNotFound .error p.bold.white.letterSize {
        width: 100%;
        max-width: 100%;
    }
    .errorNotFound p.bold.white.letterSize,    
    .errorNotFound .error {
        font-size: 14px;
        max-width: 90%;
    }
    .errorNotFound {
        height: calc(100vh - 120px);
    }
    .errorNotFound p.textnumNoFound {
        font-size: 130px;
        line-height: 1;
    }
}


/* =========================================
   Nuevos styles 
========================================= */

.we-split-block {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.we-split-left {
    width: 50%;
    background-color: #ffffff;
    padding: 80px 40px;
    padding-left: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-split-right {
    width: 50%;
    background-color: #634f41;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-split-text-white {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #301E12;
    max-width: 450px;
    line-height: 1.4;
}

.we-split-text-brown {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    max-width: 450px;
    line-height: 1.4;
}


.we-image-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.we-image-split-item {
    aspect-ratio: 1/1;
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.we-image-split-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.we-image-split-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.we-image-split-text {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.2;
    width: 50%;
}

.we-item-left .we-image-split-text {
    left: 40px;
}

.we-item-right .we-image-split-text {
    right: 40px;
    text-align: right;
}

.we-plus-icon {
    font-size: 100px;
    font-weight: 100;
    line-height: 1;
}




.fs-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #362215;

    overflow-y: auto;
}

.fs-modal.active {
    display: block;
}

.fs-modal-content {
    max-width: 1250px;
    margin: 80px auto;
    padding: 0 40px;
    position: relative;
    color: #F7E7D7;

}

.fs-modal-close {
    position: fixed;
    right: 40px;
    top: 30px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    color: #F7E7D7;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
}

.fs-modal-close i {
    font-size: 28px;
    font-weight: 100;
}

#fs-modal-body {
    height: 100%;
    display: flex;
    align-items: center;
}


.variant-valores {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.variant-valores .modal-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.variant-valores hr {
    width: 100%;
    border: none;
    border-top: 3px solid #FFFFFF;
    margin: 70px 0;
}

.valores-grid-3 {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: space-between;
}

.valores-grid-2 {
    display: flex;
    gap: 60px;
    width: 70%;
    justify-content: center;
}

.valor-item {
    flex: 1;
}

.valor-item h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.valor-item p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}


.variant-especiales {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.variant-especiales .modal-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.variant-especiales hr {
    width: 80%;
    border: none;
    border-top: 3px solid rgba(247, 231, 215, 0.4);
    margin: 70px 0;
}

.especiales-text-grid {
    display: flex;
    gap: 60px;
    width: 80%;
}

.especiales-text-grid p {
    flex: 1;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}


.variant-experiencia {
    display: flex;
    gap: 50px;
    align-items: flex-end;
    text-align: left;
    margin-top: 40px;
}

.group-expenperiencias {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    width: 60%;
    align-items: flex-end;
}

.variant-experiencia .modal-title {
    font-size: 48px;
    width: 100%;
}

.experiencia-col-1 {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
}

.experiencia-col-1 .modal-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.2;
}

.experiencia-col-1 p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.experiencia-col-2 {
    width: calc(50% - 30px);
}

.experiencia-col-2 p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.experiencia-col-3 {
    width: 40%;
}

.experiencia-col-3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
}






.we-experience-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 700px;
}

.we-experience-left {
    width: 50%;
    background-color: #ffffff;
    padding: 80px 100px;
    padding-left: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.we-experience-right {
    width: 50%;
    background-size: cover;
    background-position: center;
}

.we-experience-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #301E12;
    margin-bottom: 100px;
    line-height: 1.2;
}

.we-experience-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #301E12;
    line-height: 1.1;
    margin-bottom: 100px;
}

.we-experience-cta {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #301E12;
    text-align: right;
    align-self: flex-end;
    margin-top: auto;
    padding-right: 80px;
    background-image: url('./icons/arrow-right-modal.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 60px;
    cursor: pointer;
    line-height: 1.2;
}




.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.store-card {
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.store-name {
    font-size: 24px;
    font-weight: 700;
    color: #301E12;
    margin: 0 0 5px 0;
    line-height: 1;
}

.store-address {
    font-size: 16px;
    color: #301E12;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.store-hours {
    margin-bottom: 20px;
}

.store-hours-row {
    font-size: 16px;
    font-weight: 500;
    color: #301E12;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.store-btn {
    background-color: #F7E7D7;
    color: #301E12;
    border: none;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.store-btn:hover {
    background-color: #e5d1bc;
}




.policies-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.policies-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.policies-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policies-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policies-nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 18px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    color: #301E12;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.policies-nav li a:hover,
.policies-nav li a.active {
    color: #a4765e;
}

.policies-nav li a i {
    font-size: 12px;
}

.policies-content {
    flex: 1;
    color: #301E12;
    font-family: 'Urbanist', sans-serif;
}

.policies-title {
    font-size: 30px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #6E5546;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}




.faqs-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.faqs-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.faqs-main-title {
    font-size: 30px;
    font-weight: 600;
    color: #6E5546;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Urbanist', sans-serif;
}

.faqs-content {
    flex: 1;
    font-family: 'Urbanist', sans-serif;
    margin-top: -15px;

}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-accordion {
    background-color: transparent;
    color: #301E12;
    cursor: pointer;
    padding: 25px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: 400;

    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.toggle-accordion {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./icons/arrow-down.svg');
}

.faq-accordion:hover,
.faq-accordion.active {
    color: #8C6A5D;
}

.faq-accordion .toggle-accordion {
    transition: transform 0.3s ease;
}

.faq-accordion.active .toggle-accordion {
    transform: rotate(180deg);
}

.faq-panel {
    display: none;
    background-color: transparent;
    overflow: hidden;
}

.faq-panel p {
    margin: 0;
    padding: 0 0 25px 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.2;
}


@media (max-width: 1550px) {
    .we-experience-title {
        font-size: 42px;
    }

    .we-experience-text {
        font-size: 28px;
    }

    .we-experience-cta,
    .we-image-split-text,
    .we-split-text-brown {
        font-size: 28px;
    }

    .we-split-text-white {
        font-size: 22px;
    }

    .we-plus-icon {
        font-size: 85px;
    }

    .fs-modal-close {
        font-size: 28px;
    }

    .variant-valores .modal-title,
    .variant-especiales .modal-title,
    .group-expenperiencias .modal-title,
    .experiencia-col-1 .modal-title {
        font-size: 42px;
    }

    .valor-item h4,
    .policies-title,
    .faqs-main-title {
        font-size: 28px;
    }

    .valor-item p,
    .especiales-text-grid p,
    .experiencia-col-1 p,
    .experiencia-col-2 p {
        font-size: 22px;
    }

    .faq-accordion {
        font-size: 18px;
    }

    .policies-nav li a {
        font-size: 17px;
    }

    .policy-section p,
    .policy-subtitle,
    .faq-panel p {
        font-size: 15px;
    }
}

@media (max-width: 1250px) {
    .we-experience-title {
        font-size: 38px;
    }

    .we-experience-text {
        font-size: 26px;
    }

    .we-experience-cta,
    .we-image-split-text,
    .we-split-text-brown {
        font-size: 26px;
    }

    .we-split-text-white {
        font-size: 20px;
    }

    .we-plus-icon {
        font-size: 70px;
    }

    .fs-modal-close {
        font-size: 26px;
    }

    .variant-valores .modal-title,
    .variant-especiales .modal-title,
    .group-expenperiencias .modal-title,
    .experiencia-col-1 .modal-title {
        font-size: 38px;
    }

    .valor-item h4,
    .policies-title,
    .faqs-main-title {
        font-size: 26px;
    }

    .valor-item p,
    .especiales-text-grid p,
    .experiencia-col-1 p,
    .experiencia-col-2 p {
        font-size: 20px;
    }

    .faq-accordion {
        font-size: 17px;
    }

    .policies-nav li a {
        font-size: 16px;
    }

    .policy-section p,
    .policy-subtitle,
    .faq-panel p {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .we-experience-title {
        font-size: 34px;
    }

    .we-experience-text {
        font-size: 24px;
    }

    .we-experience-cta,
    .we-image-split-text,
    .we-split-text-brown {
        font-size: 24px;
    }

    .we-split-text-white {
        font-size: 18px;
    }

    .we-plus-icon {
        font-size: 60px;
    }

    .fs-modal-close {
        font-size: 24px;
    }

    .variant-valores .modal-title,
    .variant-especiales .modal-title,
    .group-expenperiencias .modal-title,
    .experiencia-col-1 .modal-title {
        font-size: 34px;
    }

    .valor-item h4,
    .policies-title,
    .faqs-main-title {
        font-size: 23px;
    }

    .valor-item p,
    .especiales-text-grid p,
    .experiencia-col-1 p,
    .experiencia-col-2 p {
        font-size: 18px;
    }

    .faq-accordion {
        font-size: 16px;
    }

    .policies-nav li a {
        font-size: 15px;
    }

    .policy-section p,
    .policy-subtitle,
    .faq-panel p {
        font-size: 13px;
    }

    .valores-grid-3,
    .valores-grid-2,
    .especiales-text-grid,
    .variant-experiencia,
    .group-expenperiencias {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .experiencia-col-1,
    .experiencia-col-2,
    .experiencia-col-3 {
        width: 100%;
    }

    .policies-wrapper {
        flex-direction: column;
        gap: 40px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .policies-sidebar {
        width: 100%;
    }

    .faqs-wrapper {
        flex-direction: column;
        gap: 30px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .faqs-sidebar {
        width: 100%;
        margin-bottom: -10px;
    }

    .faqs-content {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .we-experience-title {
        font-size: 30px;
    }

    .we-experience-text {
        font-size: 21px;
    }

    .we-experience-cta,
    .we-image-split-text,
    .we-split-text-brown {
        font-size: 21px;
    }

    .we-split-text-white {
        font-size: 17px;
    }

    .we-plus-icon {
        font-size: 50px;
    }

    .fs-modal-close {
        font-size: 20px;
    }

    .variant-valores .modal-title,
    .variant-especiales .modal-title,
    .group-expenperiencias .modal-title,
    .experiencia-col-1 .modal-title {
        font-size: 28px;
    }

    .valor-item h4,
    .policies-title,
    .faqs-main-title {
        font-size: 21px;
    }

    .valor-item p,
    .especiales-text-grid p,
    .experiencia-col-1 p,
    .experiencia-col-2 p {
        font-size: 16px;
    }

    .faq-accordion {
        font-size: 15px;
    }

    .policies-nav li a {
        font-size: 14px;
    }

    .policy-section p,
    .policy-subtitle,
    .faq-panel p {
        font-size: 13px;
    }

    .we-split-block,
    .we-image-split {
        flex-direction: column;
    }

    .we-split-left,
    .we-split-right,
    .we-image-split-item {
        width: 100%;
    }

    .we-split-left {
        padding-left: 40px;
    }

    .we-image-split-item {
        min-height: 400px;
    }

    .we-experience-split {
        flex-direction: column;
    }

    .we-experience-left,
    .we-experience-right {
        width: 100%;
    }

    .we-experience-left {
        padding: 40px;
    }

    .we-experience-right {
        min-height: 400px;
    }

    .store-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .store-hours-row {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .we-experience-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .we-experience-text {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .we-experience-cta,
    .we-image-split-text,
    .we-split-text-brown {
        font-size: 18px;
    }

    .we-split-text-white {
        font-size: 16px;
    }

    .we-plus-icon {
        font-size: 40px;
    }

    .fs-modal-close {
        font-size: 18px;
    }

    .variant-valores .modal-title,
    .variant-especiales .modal-title,
    .group-expenperiencias .modal-title,
    .experiencia-col-1 .modal-title {
        font-size: 24px;
    }

    .valor-item h4,
    .policies-title,
    .faqs-main-title {
        font-size: 18px;
    }

    .valor-item p,
    .especiales-text-grid p,
    .experiencia-col-1 p,
    .experiencia-col-2 p {
        font-size: 14px;
    }

    .faq-accordion {
        font-size: 14px;
    }

    .policies-nav li a {
        font-size: 13px;
    }

    .policy-section p,
    .policy-subtitle,
    .faq-panel p {
        font-size: 13px;
    }

    .we-experience-left,
    .we-split-left,
    .we-split-right {
        padding: 40px 20px;
    }

    .we-item-left .we-image-split-text {
        left: 20px;
    }

    .we-item-right .we-image-split-text {
        right: 20px;
    }
}

.product-badge{
    font-size: 12px;
}

.ind-commercio{
    min-width: 200px;
}



.woocommerce-checkout .wc_payment_methods payment_methods methods .form-row.form-row-first {
    width: 100%;
}
.woocommerce-checkout .woocommerce #payment .form-row select, .woocommerce-page #payment .form-row select {
    width: 100%;
}
.woocommerce-checkout .woocommerce #payment img {
    height: 40px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 40px !important;
}

.activefull{
    display: block !important;
}

/*


.contComingSoon {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/






