
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'raleway', sans-serif;
            background: #000;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        .hero-blason {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 40px 60px;
            overflow: hidden;
            background: url('../img/bg/slider-1.webp') center center / cover no-repeat fixed;
        }

        .hero-blason::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgb(4 4 4 / 20%);
            z-index: 1;
        }

        /* NAV */
        .top-nav-wrap {
            position: fixed;
           
            left: 22px;
            right: 22px;
            z-index: 50;
        }

        .top-nav {
            width: 100%;
            background: rgba(139, 112, 84, .75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 999px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.35);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 26px;
        }

        .brand {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #4b2d1c;
        }

        .brand sup {
            font-size: 10px;
            top: -0.7em;
            position: relative;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .menu-links {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .menu-links a {
            font-size: 20px;
            color: #fff;
            font-weight: 500;
            transition: .25s ease;
        }

        .menu-links a:hover {
            color: #4b2d1c;
        }

        .divider {
            width: 1px;
            height: 28px;
            background: #b9b9b9;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .social-links a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #000000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: .25s ease;
        }

        .social-links a:hover {
            transform: translateY(-2px);
            background: #5f3f20;
        }

        .btn-contacto {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #000;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 11px 20px;
            border-radius: 999px;
            transition: .25s ease;
        }

        .btn-contacto:hover {
            background: #3f664c;
            color: #fff;
        }

        /* CONTENT */
        .hero-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 20px;
        }

        .hero-copy {
            max-width: 650px;
            padding-left: 20px;
        }

        .hero-copy h1 {
            color: #fff;
            font-weight: 800;
            font-size: 64px;
            line-height: 1.05;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
            margin-bottom: 34px;
        }

        .btn-origen {
            display: inline-block;
            background: #efe4d9;
            color: #000;
            font-weight: 400;
            font-size: 20px;
            padding: 6px 34px;
            border-radius: 999px;
           
            transition: .25s ease;
        }

        .btn-origen:hover {
            background: #8b7054;
            color: #f1e6cc;
            transform: translateY(-2px);
        }

        /* PRODUCT SLIDER */
        .hero-product {
            position: relative;
            height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brush-bg {
            position: absolute;
            width: 680px;
            max-width: 100%;
            opacity: 0.95;
            pointer-events: none;
            filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
        }

        .product-slider {
            position: relative;
            width: 420px;
            height: 620px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateX(30px) scale(0.97);
            transition: all .8s ease;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .slide img {
            max-height: 100%;
           
            object-fit: contain;
            filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.30));
        }

        .slider-dots {
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }

        .slider-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: .25s ease;
        }

        .slider-dots span.active {
            background: #fff;
            transform: scale(1.15);
        }

        @media (max-width: 1200px) {
            .hero-copy h1 {
                font-size: 52px;
            }

            .product-slider {
                width: 360px;
                height: 560px;
            }
        }

        @media (max-width: 991px) {
            .hero-blason {
                padding: 130px 25px 50px;
                background-attachment: scroll;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .hero-copy {
                max-width: 100%;
                padding-left: 0;
            }

            .hero-copy h1 {
                font-size: 42px;
            }

            .hero-product {
                height: 520px;
            }

            .product-slider {
                width: 300px;
                height: 470px;
            }

            .top-nav {
                border-radius: 28px;
                padding: 16px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .nav-right {
                flex-wrap: wrap;
                justify-content: center;
            }

            .menu-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px;
            }

            .divider {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .top-nav-wrap {
                left: 12px;
                right: 12px;
                top: 12px;
            }

            .hero-copy h1 {
                font-size: 34px;
            }

            .btn-origen {
                font-size: 16px;
                padding: 14px 25px;
            }

            .social-links {
                gap: 8px;
            }

            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .brand {
                font-size: 20px;
            }
        }

        .tea-marquee-section {
            position: relative;
            width: 100%;
            padding: 32px 0 0px;
            background: #000000;
            overflow: hidden;
        }

        .tea-marquee-head {
            text-align: center;
            margin-bottom: 26px;
        }

        .tea-marquee-head span {
            display: inline-block;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #6d665f;
            font-weight: 500;
        }

        .tea-marquee {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .tea-track {
            display: flex;
            align-items: center;
            gap: 44px;
            width: max-content;
            animation: teaScroll 30s linear infinite;
            will-change: transform;
        }

        .tea-marquee:hover .tea-track {
            animation-play-state: paused;
        }

        .tea-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 115px;
            height: 115px;
            transition: transform .25s ease, opacity .25s ease;
            cursor: pointer;
        }

        .tea-item:hover {
            transform: scale(1.08);
        }

        .tea-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
            pointer-events: none;
            user-select: none;
            filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.10));
        }

        @keyframes teaScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* difuminado lateral opcional */
        .tea-marquee::before,
        .tea-marquee::after {
            content: "";
            position: absolute;
            top: 0;
            width: 90px;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .tea-marquee::before {
            left: 0;
            background: linear-gradient(to right, #000 0%, rgba(243, 243, 241, 0) 100%);
        }

        .tea-marquee::after {
            right: 0;
            background: linear-gradient(to left, #000 0%, rgba(243, 243, 241, 0) 100%);
        }

        @media (max-width: 991px) {
            .tea-track {
                gap: 28px;
                animation-duration: 24s;
            }

            .tea-item {
                width: 90px;
                height: 90px;
            }

            .tea-marquee-head {
                margin-bottom: 18px;
                padding: 0 15px;
            }

            .tea-marquee-head span {
                font-size: 10px;
                letter-spacing: 1.8px;
                line-height: 1.5;
            }
        }


        /* =========================
           BLOQUE REGALOS AISLADO
        ========================= */
        .blason-gifts {
            width: 100%;
            max-width: 100%;
            padding: 52px 0 56px;
            background: #663332;
            overflow: hidden;
        }

        .blason-gifts__inner {
            width: 100%;
            max-width: 100%;
            margin: 0;
        }

        .blason-gifts__head {
            width: 100%;
            max-width: 100%;
            margin: 0 0 24px;
            padding: 0 32px;
        }

        .blason-gifts__head h2 {
            margin: 0 0 10px;
            font-size: 38px;
            line-height: 1.1;
            font-weight: 500;
            color: #141414;
            letter-spacing: -.02em;
        }

        .blason-gifts__head p {
            margin: 0;
            max-width: 1040px;
            font-size: 16px;
            line-height: 1.65;
            color: #4c4c4c;
        }

        .blason-gifts__filters {
            width: 100%;
            max-width: 100%;
            margin: 0 0 22px;
            padding: 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .blason-gifts__filter {
            appearance: none;
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
            min-height: 46px;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
        }

        .blason-gifts__filter i {
            font-size: 13px;
            line-height: 1;
        }

        .blason-gifts__filter:hover {
            background: #000;
            border-color: #bdbdb8;
            color: #fff;
        }

        .blason-gifts__filter.is-active {
            background: #8b7054;
            border-color: #151515;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
            font-weight: 600;
        }

        .blason-gifts__carousel {
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        .blason-gifts__arrow {
            position: absolute;
            top: 50%;
            z-index: 12;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(255, 255, 255, .72);
            border-radius: 50%;
            background: rgba(0, 0, 0, .82);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            transform: translateY(-50%);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
            transition: opacity .2s ease, transform .2s ease, background .2s ease;
        }

        .blason-gifts__arrow--prev { left: 10px; }
        .blason-gifts__arrow--next { right: 10px; }

        .blason-gifts__arrow:hover:not(:disabled) {
            background: #8b7054;
            transform: translateY(-50%) scale(1.06);
        }

        .blason-gifts__arrow:disabled {
            opacity: .28;
            cursor: default;
        }

        .blason-gifts__wrap {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
        }

        .blason-gifts__wrap.is-dragging {
            cursor: grabbing;
        }

        .blason-gifts__slider {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding: 10px 32px 12px;
            width: 100%;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .blason-gifts__slider::-webkit-scrollbar {
            display: none;
        }

        .blason-gifts__card {
            position: relative;
            flex: 0 0 280px;
            width: 280px;
            min-height: 420px;
            background: #000;
            border: 1px solid #c99d79;
            color: #fff;
            border-radius: 20px;
            text-decoration: none;
            padding-bottom: 10px;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
        }

        .blason-gifts__card:hover {
            transform: translateY(-4px);
            border-color: #000;
            box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
            background: #000;
        }

        .blason-gifts__badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            min-height: 24px;
            max-width: calc(100% - 32px);
            padding: 5px 9px;
            border-radius: 6px;
            background: #171a22;
            color: #ffffff;
            font-size: 10px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: .3px;
            text-transform: uppercase;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .blason-gifts__image {
    position: relative;
    height: 300px;
    background: #131313;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.blason-gifts__image img {
    position: absolute;
    display: block;
    max-width: 84%;
    max-height: 84%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    transition: opacity .35s ease, transform .35s ease;
}

.blason-gifts__image .img-default {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.blason-gifts__image .img-hover {
    opacity: 0;
    transform: scale(1.05);
    z-index: 2;
}

.blason-gifts__card:hover .blason-gifts__image .img-default {
    opacity: 0;
    transform: scale(.98);
}

.blason-gifts__card:hover .blason-gifts__image .img-hover {
    opacity: 1;
    transform: scale(1);
}

        .blason-gifts__info {
            padding: 0 20px;
        }

        .blason-gifts__info h3 {
            margin: 0 0 7px;
            font-size: 16px;
            line-height: 1.35;
            font-weight: 600;
            color: #fff;
        }

        .blason-gifts__info p {
            margin: 0;
            min-height: 42px;
            font-size: 13px;
            line-height: 1.5;
            color: #fff;
        }


        .blason-gifts__bottom {
            margin-top: auto;
            padding: 18px 20px 2px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .blason-gifts__bottom strong {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .blason-gifts__plus {
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 50%;
            background: #edb78e;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            line-height: 1;
            font-weight: 300;
            transition: transform .2s ease, background .2s ease;
        }

        .blason-gifts__card:hover .blason-gifts__plus {
            transform: scale(1.05);
            background: #edb78e;
        }

        @media (max-width: 991px) {
            .blason-gifts__arrow {
                width: 42px;
                height: 42px;
                font-size: 19px;
            }

            .blason-gifts {
                padding: 40px 0 44px;
            }

            .blason-gifts__head,
            .blason-gifts__filters,
            .blason-gifts__slider {
                padding-left: 20px;
                padding-right: 20px;
            }

            .blason-gifts__head h2 {
                font-size: 31px;
            }

            .blason-gifts__head p {
                font-size: 14px;
            }

            .blason-gifts__filter {
                min-height: 42px;
                font-size: 13px;
                padding: 9px 16px;
            }

            .blason-gifts__slider {
                gap: 14px;
                padding-bottom: 10px;
            }

            .blason-gifts__card {
                flex: 0 0 240px;
                width: 240px;
                min-height: 386px;
                border-radius: 18px;
                padding: 14px;
            }

            .blason-gifts__image {
                height: 180px;
                border-radius: 14px;
            }

            .blason-gifts__info h3 {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .blason-gifts__arrow {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .blason-gifts__arrow--prev { left: 5px; }
            .blason-gifts__arrow--next { right: 5px; }

            .blason-gifts {
                padding: 32px 0 36px;
            }

            .blason-gifts__head,
            .blason-gifts__filters,
            .blason-gifts__slider {
                padding-left: 14px;
                padding-right: 14px;
            }

            .blason-gifts__head {
                margin-bottom: 16px;
            }

            .blason-gifts__head h2 {
                font-size: 25px;
            }

            .blason-gifts__head p {
                font-size: 13px;
                line-height: 1.55;
            }

            .blason-gifts__filters {
                gap: 8px;
                margin-bottom: 16px;
            }

            .blason-gifts__filter {
                min-height: 38px;
                font-size: 12px;
                padding: 8px 14px;
                gap: 6px;
            }

            .blason-gifts__filter i {
                font-size: 11px;
            }

            .blason-gifts__slider {
                gap: 12px;
            }

            .blason-gifts__card {
                flex: 0 0 210px;
                width: 210px;
                min-height: 350px;
                padding: 12px;
                border-radius: 16px;
            }

            .blason-gifts__badge {
                top: 12px;
                left: 12px;
                max-width: calc(100% - 24px);
                font-size: 9px;
            }

            .blason-gifts__image {
                height: 156px;
                margin-bottom: 12px;
            }

            .blason-gifts__info h3 {
                font-size: 14px;
            }

            .blason-gifts__info p {
                min-height: 38px;
                font-size: 12px;
            }

            .blason-gifts__bottom strong {
                font-size: 14px;
            }
        }
/* =========================
   CAFE / VAINILLA SHOWCASE
========================= */
.kk-dual-showcase{
    width:100%;
    padding:70px 0;
    background:#78685b;
    overflow:hidden;
    position:relative;
}

.kk-dual-showcase::before,
.kk-dual-showcase::after{
    content:"";
    position:absolute;
    top:50%;
    width:120px;
    height:320px;
    transform:translateY(-50%);
    opacity:.12;
    pointer-events:none;
    background-image:
        radial-gradient(circle, #e6d3b7 1.2px, transparent 1.2px);
    background-size:28px 28px;
}

.kk-dual-showcase::before{ left:18%; }
.kk-dual-showcase::after{ right:18%; }

.kk-dual-showcase__grid{
    width:min(100%, 1180px);
    margin:0 auto;
    padding:0 24px;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:34px;
    align-items:stretch;
}

.kk-category-card{
    perspective:1600px;
    min-height:700px;
}

.kk-category-card__inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:700px;
    transform-style:preserve-3d;
    transition:transform .9s cubic-bezier(.2,.7,.2,1);
}

.kk-category-card:hover .kk-category-card__inner{
    transform:rotateY(180deg);
}

.kk-category-card__face{
    position:absolute;
    inset:0;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}

.kk-category-card__face--front{
    z-index:2;
}

.kk-category-card__face--back{
    transform:rotateY(180deg);
    z-index:3;
}

.kk-category-card__image{
    position:relative;
    width:100%;
    height:100%;
    min-height:700px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    overflow:hidden;
}

.kk-category-card__image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.18));
}

.kk-category-card__title-wrap{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.kk-category-card__title-wrap h3{
    font-family:'raleway', sans-serif;
    font-size:58px;
    line-height:1;
    letter-spacing:3px;
    color:#f5efe7;
    font-weight:300;
    position:relative;
    text-transform:uppercase;
}

.kk-category-card__title-wrap h3::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-14px;
    width:140px;
    height:2px;
    background:#f1e1cc;
}

.kk-category-card__panel{
    width:100%;
    height:100%;
    min-height:700px;
    background:#ede3d4;
    border:1px solid rgba(177,146,112,.55);
    display:flex;
    flex-direction:column;
    box-shadow:0 18px 30px rgba(0,0,0,.08);
}

.kk-category-card__panel-head,
.kk-category-card__panel-foot{
    text-align:center;
   padding-bottom:50px;
}

.kk-category-card__panel-head{
    margin:18px 18px 0;
}

.kk-category-card__panel-foot{
    margin:0 18px 18px;
}

.kk-category-card__panel-head h3{
    margin:0;
    font-size:34px;
    line-height:1;
    font-weight:400;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#2f2c2a;
}

.kk-category-card__panel-foot span{
    display:block;
    font-size:18px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#2f2c2a;
}

.kk-category-card__panel-body{
    flex:1;
    padding:34px 30px 28px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:28px;
}

.kk-category-card__panel-body > p{
    margin:0;
    text-align:center;
    font-size:17px;
    line-height:1.75;
    color:#6d5a49;
    max-width:90%;
    margin-inline:auto;
}

/* slider interno */
.kk-product-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.kk-product-slider__track{
    display:flex;
    gap:18px;
    width:max-content;
    animation:kkProductsMove 16s linear infinite;
}

.kk-product-slider:hover .kk-product-slider__track{
    animation-play-state:paused;
}

@keyframes kkProductsMove{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(calc(-50%)); }
}

/* producto flip */
.kk-product-flip{
    flex:0 0 210px;
    width:210px;
    height:270px;
    display:block;
    perspective:1200px;
    text-decoration:none;
}

.kk-product-flip__inner{
    position:relative;
    width:100%;
    height:100%;
    transform-style:preserve-3d;
    transition:transform .7s ease;
}

.kk-product-flip:hover .kk-product-flip__inner{
    transform:rotateY(180deg);
}

.kk-product-flip__face{
    position:absolute;
    inset:0;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(177,146,112,.28);
    background:#f7f0e6;
    box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.kk-product-flip__face--front{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:18px;
    gap:14px;
}

.kk-product-flip__face--front img{
    max-width:100%;
    max-height:150px;
    object-fit:contain;
    display:block;
}

.kk-product-flip__face--front span{
    display:block;
    text-align:center;
    font-size:15px;
    line-height:1.4;
    font-weight:600;
    color:#42342b;
}

.kk-product-flip__face--back{
    transform:rotateY(180deg);
    padding:22px 18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    background:#e8dac6;
}

.kk-product-flip__face--back strong{
    display:block;
    margin-bottom:10px;
    font-size:18px;
    line-height:1.3;
    color:#2f2c2a;
}

.kk-product-flip__face--back p{
    margin:0 0 14px;
    font-size:14px;
    line-height:1.6;
    color:#6d5a49;
}

.kk-product-flip__face--back em{
    font-style:normal;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    color:#8a6844;
}

/* responsive */
@media (max-width: 991px){
    .kk-dual-showcase{
        padding:44px 0;
    }

    .kk-dual-showcase__grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .kk-category-card,
    .kk-category-card__inner,
    .kk-category-card__image,
    .kk-category-card__panel{
        min-height:620px;
    }

    .kk-category-card__title-wrap h3{
        font-size:42px;
    }

    .kk-category-card__panel-head h3{
        font-size:28px;
    }

    .kk-category-card__panel-body{
        padding:28px 20px 22px;
    }

    .kk-category-card__panel-body > p{
        font-size:15px;
        max-width:100%;
    }

    .kk-product-flip{
        flex:0 0 190px;
        width:190px;
        height:245px;
    }
}

@media (max-width: 576px){
    .kk-category-card,
    .kk-category-card__inner,
    .kk-category-card__image,
    .kk-category-card__panel{
        min-height:560px;
    }

    .kk-category-card__title-wrap h3{
        font-size:34px;
    }

    .kk-category-card__title-wrap h3::after{
        width:100px;
    }

    .kk-category-card__panel-head,
    .kk-category-card__panel-foot{
        margin-left:12px;
        margin-right:12px;
        padding:18px 14px;
    }

    .kk-category-card__panel-body{
        padding:22px 14px 18px;
        gap:20px;
    }

    .kk-category-card__panel-body > p{
        font-size:14px;
        line-height:1.65;
    }

    .kk-product-flip{
        flex:0 0 170px;
        width:170px;
        height:225px;
    }

    .kk-product-flip__face--front span{
        font-size:13px;
    }

    .kk-product-flip__face--back strong{
        font-size:16px;
    }

    .kk-product-flip__face--back p{
        font-size:13px;
    }
}

/* =========================
   SLIDER USALO PARA
========================= */
.kk-uses-slider-section{
    width:100%;
    padding:72px 0 78px;
    background:#eee6d6;
    overflow:hidden;
}

.kk-uses-slider-container{
    width:min(100%, 1220px);
    margin:0 auto;
    padding:0 24px;
}

.kk-uses-slider-head{
    margin-bottom:28px;
}

.kk-uses-slider-head h2{
    margin:0;
    font-size:56px;
    line-height:1;
    font-weight:400;
    color:#7a7a7a;
}

.kk-uses-slider-shell{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
}

.kk-uses-slider-viewport{
    overflow:hidden;
    width:100%;
    cursor:grab;
}

.kk-uses-slider-viewport.is-dragging{
    cursor:grabbing;
}

.kk-uses-slider-track{
    display:flex;
    transition:transform .5s ease;
    will-change:transform;
}

.kk-uses-slide{
    flex:0 0 calc(100% / 3);
    padding:0 14px;
    box-sizing:border-box;
}

.kk-uses-card{
    background:#ebe4d5;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(0,0,0,.03);
    height:100%;
}

.kk-uses-card__image-btn{
    width:100%;
    display:block;
    padding:0;
    border:0;
    background:transparent;
    cursor:pointer;
}

.kk-uses-card__image-btn img{
    width:100%;
    height:365px;
    object-fit:cover;
    display:block;
    transition:transform .35s ease, filter .35s ease;
}

.kk-uses-card__image-btn:hover img{
    transform:scale(1.03);
    filter:brightness(.96);
}

.kk-uses-card__body{
    padding:24px 26px 28px;
    text-align:center;
}

.kk-uses-card__body h3{
    margin:0 0 12px;
    font-size:24px;
    line-height:1.2;
    font-weight:400;
    color:#88837c;
}

.kk-uses-card__body p{
    margin:0;
    font-size:18px;
    line-height:1.65;
    color:#9a948c;
    font-weight:400;
}

.kk-uses-slider-arrow{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    border:0;
    background:#d8ccb7;
    color:#5d5147;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s ease;
}

.kk-uses-slider-arrow:hover{
    background:#cdbc9f;
}

/* =========================
   MODAL
========================= */
.kk-uses-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
}

.kk-uses-modal.is-open{
    opacity:1;
    visibility:visible;
}

.kk-uses-modal__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
}

.kk-uses-modal__dialog{
    position:relative;
    width:min(100%, 980px);
    margin:60px auto;
    background:#f4ede0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    z-index:2;
}

.kk-uses-modal__close{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;
    height:44px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.88);
    color:#3b342d;
    font-size:15px;
    cursor:pointer;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kk-uses-modal__content{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    min-height:560px;
}

.kk-uses-modal__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.kk-uses-modal__info{
    padding:62px 42px 42px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.kk-uses-modal__info h3{
    margin:0 0 18px;
    font-size:38px;
    line-height:1.05;
    font-weight:400;
    color:#655a4e;
}

.kk-uses-modal__info p{
    margin:0 0 22px;
    font-size:18px;
    line-height:1.7;
    color:#7b7065;
}

.kk-uses-modal__list{
    margin:0;
    padding-left:20px;
}

.kk-uses-modal__list li{
    margin-bottom:10px;
    font-size:16px;
    line-height:1.55;
    color:#8a7f73;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
    .kk-uses-slide{
        flex:0 0 50%;
    }

    .kk-uses-slider-head h2{
        font-size:44px;
    }

    .kk-uses-card__image-btn img{
        height:300px;
    }

    .kk-uses-card__body h3{
        font-size:22px;
    }

    .kk-uses-card__body p{
        font-size:16px;
    }
}

@media (max-width: 768px){
    .kk-uses-slider-section{
        padding:48px 0 54px;
    }

    .kk-uses-slider-container{
        padding:0 16px;
    }

    .kk-uses-slider-head h2{
        font-size:34px;
    }

    .kk-uses-slide{
        flex:0 0 100%;
        padding:0 8px;
    }

    .kk-uses-card{
        border-radius:18px;
    }

    .kk-uses-card__image-btn img{
        height:240px;
    }

    .kk-uses-card__body{
        padding:20px 18px 22px;
    }

    .kk-uses-card__body h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .kk-uses-card__body p{
        font-size:15px;
        line-height:1.55;
    }

    .kk-uses-slider-arrow{
        display:none;
    }

    .kk-uses-modal__dialog{
        width:calc(100% - 24px);
        margin:24px auto;
    }

    .kk-uses-modal__content{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .kk-uses-modal__media img{
        height:260px;
    }

    .kk-uses-modal__info{
        padding:28px 20px 24px;
    }

    .kk-uses-modal__info h3{
        font-size:28px;
    }

    .kk-uses-modal__info p{
        font-size:15px;
        line-height:1.6;
    }

    .kk-uses-modal__list li{
        font-size:14px;
    }
}
/* =========================
   FOOTER KALAKAPALA
========================= */
.kk-footer{
    background: #111111;
    color: #e9dfd1;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.kk-footer::before{
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(214,183,145,.55), rgba(255,255,255,0));
}

.kk-footer__top{
    padding: 64px 0 34px;
}

.kk-footer__grid{
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr .9fr;
    gap: 42px;
}

.kk-footer__brand{
    max-width: 420px;
}

.kk-footer__logo{
    display: inline-block;
    margin-bottom: 20px;
}

.kk-footer__logo img{
    width: 170px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.kk-footer__text{
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(233,223,209,.72);
}

.kk-footer__social{
    display: flex;
    align-items: center;
    gap: 12px;
}

.kk-footer__social a{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(233,223,209,.14);
    color: #f3eadf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .25s ease;
}

.kk-footer__social a:hover{
    background: #d6b791;
    color: #111111;
    border-color: #d6b791;
    transform: translateY(-2px);
}

.kk-footer__col h4{
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .4px;
}

.kk-footer__col ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.kk-footer__col li{
    margin-bottom: 12px;
}

.kk-footer__col a,
.kk-footer__col span{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(233,223,209,.72);
    transition: .25s ease;
}

.kk-footer__col a:hover{
    color: #d6b791;
}

.kk-footer__contact li{
    margin-bottom: 10px;
}

.kk-footer__btn{
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #d6b791;
    color: #111111 !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .25s ease;
}

.kk-footer__btn:hover{
    background: #e4c7a4;
    transform: translateY(-2px);
}

.kk-footer__bottom{
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 18px 32px 22px;
    border-top: 1px solid rgba(233,223,209,.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kk-footer__bottom p{
    margin: 0;
    font-size: 12px;
    color: rgba(233,223,209,.55);
}

.kk-footer__toplink{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(233,223,209,.72);
    transition: .25s ease;
}

.kk-footer__toplink:hover{
    color: #d6b791;
}

@media (max-width: 991px){
    .kk-footer__top{
        padding: 48px 0 26px;
    }

    .kk-footer__grid{
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
        padding: 0 20px;
    }

    .kk-footer__bottom{
        padding: 18px 20px 20px;
    }
}

@media (max-width: 640px){
    .kk-footer__grid{
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px;
    }

    .kk-footer__brand{
        max-width: 100%;
    }

    .kk-footer__logo img{
        width: 150px;
    }

    .kk-footer__bottom{
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   SECCIÓN NOSOTROS
========================= */
.kk-nosotros-section{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 90px 0;
    background: #f4f4f4;
}

.kk-nosotros-bg{
    display: none;
}

.kk-nosotros-bg__left,
.kk-nosotros-bg__right{
    display: none;
}

.kk-nosotros-container{
    position: relative;
    z-index: 2;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 42px 32px;
}

.kk-nosotros-container::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to right, #ede9e4 0, #ede9e4 360px, #f4f4f4 360px, #f4f4f4 100%);
}

.kk-nosotros-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.kk-nosotros-copy{
    max-width: 100%;
    padding: 28px 50px;
}

.kk-nosotros-copy h2{
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1d1d1d;
}

.kk-nosotros-copy p{
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.65;
    color: #5f5a54;
    font-weight: 400;
}

.kk-nosotros-copy p strong{
    color: #4e3b2f;
    font-weight: 700;
}

.kk-nosotros-link{
    display: inline-block;
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .5px;
    color: #6b665f;
    text-transform: uppercase;
    text-decoration: underline;
    transition: .25s ease;
}

.kk-nosotros-link:hover{
    color: #3f352c;
}

.kk-nosotros-media-wrap{
    display: flex;
    justify-content: flex-start;
}

.kk-nosotros-media{
    position: relative;
    width: 100%;
    max-width: 820px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    background: transparent;
}

.kk-nosotros-media__main{
    min-height: 620px;
}

.kk-nosotros-media__side{
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.kk-nosotros-media__top,
.kk-nosotros-media__bottom,
.kk-nosotros-media__main{
    overflow: hidden;
}

.kk-nosotros-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kk-nosotros-stars{
    position: absolute;
    pointer-events: none;
    opacity: .55;
    background-image: radial-gradient(circle, #7f7a74 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.kk-nosotros-stars--bottom{
    left: 26%;
    bottom: -38px;
    width: 72%;
    height: 54px;
}

.kk-nosotros-stars--right{
    right: -34px;
    top: 58%;
    transform: translateY(-50%);
    width: 54px;
    height: 52%;
}

/* tablet */
@media (max-width: 1100px){
    .kk-nosotros-section{
        padding: 70px 0;
    }

    .kk-nosotros-container{
        padding: 34px 22px;
    }

    .kk-nosotros-container::before{
        background: linear-gradient(to right, #ede9e4 0, #ede9e4 320px, #f4f4f4 320px, #f4f4f4 100%);
    }

    .kk-nosotros-grid{
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 32px;
    }

    .kk-nosotros-copy{
        padding: 24px 22px 24px 10px;
    }

    .kk-nosotros-copy h2{
        font-size: 30px;
    }

    .kk-nosotros-copy p{
        font-size: 16px;
    }

    .kk-nosotros-media__main{
        min-height: 520px;
    }
}

/* móvil */
@media (max-width: 768px){
    .kk-nosotros-section{
        padding: 54px 0 60px;
    }

    .kk-nosotros-container{
        padding: 0 16px;
    }

    .kk-nosotros-container::before{
        background: linear-gradient(to bottom, #ede9e4 0, #ede9e4 235px, #f4f1ec 235px, #f4f1ec 100%);
    }

    .kk-nosotros-grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kk-nosotros-copy{
        max-width: 100%;
        padding: 28px 20px 0;
    }

    .kk-nosotros-copy h2{
        font-size: 28px;
        margin-bottom: 14px;
    }

    .kk-nosotros-copy p{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .kk-nosotros-media{
        grid-template-columns: 1fr;
    }

    .kk-nosotros-media__main{
        min-height: 340px;
    }

    .kk-nosotros-media__side{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .kk-nosotros-media__top,
    .kk-nosotros-media__bottom{
        min-height: 180px;
    }

    .kk-nosotros-stars--bottom{
        left: 10%;
        width: 78%;
        bottom: -28px;
        height: 42px;
    }

    .kk-nosotros-stars--right{
        display: none;
    }
}

  body.side-cart-open{
    overflow: hidden;
  }

  .side-cart-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.26);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 9998;
  }

  .side-cart{
    position: fixed;
    top: 0;
    right: 0;
    width: min(410px, 100%);
    height: 100vh;
    background: #f3f3f3;
    box-shadow: -16px 0 35px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .32s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }

  body.side-cart-open .side-cart-overlay{
    opacity: 1;
    visibility: visible;
  }

  body.side-cart-open .side-cart{
    transform: translateX(0);
  }

  .side-cart__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid #dddddd;
  }

  .side-cart__header h3{
    margin: 0;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #172033;
  }

  .side-cart__close{
    border: 0;
    background: transparent;
    color: #3f2a1d;
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .side-cart__shipping{
    text-align: center;
    padding: 18px 18px 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
  }

  .side-cart__shipping strong{
    color: #3f2a1d;
  }

  .side-cart__shipping span{
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #3f2a1d;
  }

  .side-cart__body{
    flex: 1 1 auto;
    overflow: auto;
    padding: 14px 12px 24px;
  }

  .side-cart__group-title{
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 1px;
    padding: 0 0 12px;
    border-bottom: 1px solid #3f2a1d;
    margin-bottom: 14px;
  }

  .side-cart__group-title small{
    font-size: 12px;
  }

  .side-cart__item{
    display: grid;
    grid-template-columns: 70px 1fr 42px;
    gap: 12px;
    align-items: center;
  }

  .side-cart__item-media img{
    width: 58px;
    height: auto;
    display: block;
  }

  .side-cart__item-info h4{
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.3;
    color: #162033;
    font-weight: 700;
  }

  .side-cart__item-info p{
    margin: 0;
    color: #9a5a10;
    font-size: 14px;
    font-weight: 700;
  }

  .side-cart__item-info p span{
    color: #5d6778;
    font-weight: 500;
  }

  .side-cart__item-qty{
    width: 42px;
    height: 42px;
    background: #1f7f57;
    color: #fff;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
  }

  .side-cart__footer{
    padding: 16px 12px 18px;
    border-top: 1px solid #dddddd;
    background: #f3f3f3;
  }

  .side-cart__total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: #111827;
  }

  .side-cart__total span{
    font-size: 16px;
    font-weight: 700;
  }

  .side-cart__total strong{
    font-size: 16px;
    color: #9a5a10;
    font-weight: 800;
  }

  .side-cart__note{
    margin: 0 0 16px;
    color: #697386;
    font-size: 12px;
    line-height: 1.45;
  }

  .side-cart__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    background: #1f7f57;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
  }

  .side-cart__payments{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    color: #364152;
    font-size: 12px;
  }

  .side-cart__payments span{
    min-width: 42px;
    text-align: center;
    padding: 3px 4px;
  }

      .productos-relacionados{
  background:#000;
  padding:80px 0;
}

.pr-wrap{
  width:min(1400px,92%);
  margin:auto;
}

.pr-header{
  text-align:center;
  margin-bottom:50px;
}

.pr-header h2{
  font-size:38px;
  font-weight:500;
  color:#FFF;
}

.pr-link{
  display:inline-block;
  margin-top:10px;
  color:#FFF;
  font-weight:600;
  text-decoration:underline;
}

.pr-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.pr-card{
  background:#efe4d9
 ;
  padding:30px;
  text-align:center;
  position:relative;
  transition:.3s ease;
}

.pr-card:hover{
  transform:translateY(-6px);
}

.pr-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#c40000;
  color:#fff;
  font-size:11px;
  padding:4px 8px;
}

.pr-img img{
  width:140px;
  margin-bottom:15px;
}

.pr-card h3{
  font-size:20px;
  margin:10px 0 2px;
}

.pr-sub{
  color:#a14b2b;
  font-weight:600;
}

.pr-desc{
  font-size:14px;
  margin:8px 0 14px;
}

.pr-intensity{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  margin-bottom:12px;
}

.beans{
  display:flex;
  gap:4px;
}

.bean{
  width:7px;
  height:11px;
  background:#ddd;
  border-radius:50%;
  transform:rotate(15deg);
  position:relative;
}

.bean::after{
  content:"";
  position:absolute;
  top:1px;
  bottom:1px;
  left:50%;
  width:1px;
  background:#fff;
  transform:translateX(-50%);
}

.bean.active{
  background:#5a3420;
}

.pr-more{
  display:block;
  margin:10px 0;
  font-size:13px;
  text-decoration:underline;
  color:#5a3420;
}

.pr-price{
  font-size:20px;
  font-weight:700;
  color:#2a7a55;
  margin-top:10px;
}

.pr-btn{
  margin-top:15px;
  background:#2a7a55;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
}

.pr-btn:hover{
  background:#1f5e41;
}

  .producto-extra{
    width: 100%;
  }

  .producto-extra__top{
    background: #000;
    padding: 28px 0 34px;
  }

  .producto-extra__bottom{
    background: #ded4c4;
    padding: 70px 0 65px;
  }

  .producto-extra__wrap{
    width: min(1680px, 94%);
    margin: 0 auto;
  }

  .producto-extra__wrap--narrow{
    width: min(1150px, 88%);
  }

  .producto-extra__title{
    margin: 0 0 26px;
    text-align: center;
    color: #FFF;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
  }

  .producto-extra__features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
  }

  .producto-feature-item{
    text-align: center;
    color: #FFF;
    padding: 8px 18px;
  }

  .producto-feature-item__icon{
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1;
    color: #FFF;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .producto-feature-item__icon--bean{
    font-size: 0;
  }

  .feature-bean{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 28px;
    border: 2px solid #FFF;
    border-radius: 50% 44% 50% 44% / 55% 45% 55% 45%;
    transform: rotate(14deg);
    box-sizing: border-box;
  }

  .feature-bean::after{
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 50%;
    width: 2px;
    background: #FFF;
    border-radius: 999px;
    transform: translateX(-50%) rotate(10deg);
  }

  .producto-feature-item h3{
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
  }

  .producto-feature-item p{
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #FFF;
  }

  .producto-accordion{
    border-bottom: 1px solid rgba(90, 52, 32, 0.18);
  }

  .producto-accordion:first-child{
    border-top: 1px solid rgba(90, 52, 32, 0.18);
  }

  .producto-accordion__toggle{
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #5a3420;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
  }

  .producto-accordion__icon{
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    color: #7a5a47;
    transition: transform .22s ease;
    flex: 0 0 auto;
  }

  .producto-accordion.active .producto-accordion__icon{
    transform: rotate(45deg);
  }

  .producto-accordion__content{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
  }

  .producto-accordion.active .producto-accordion__content{
    grid-template-rows: 1fr;
  }

  .producto-accordion__inner{
    overflow: hidden;
  }

  .producto-accordion__inner p{
    margin: 0;
    padding: 0 0 22px;
    color: #654838;
    font-size: 15px;
    line-height: 1.7;
    max-width: 900px;
  }

  @media (max-width: 991px){
    .producto-extra__features{
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .producto-extra__title{
      font-size: 26px;
    }

    .producto-extra__bottom{
      padding: 45px 0 50px;
    }
  }

  @media (max-width: 640px){
    .producto-extra__top{
      padding: 24px 0 28px;
    }

    .producto-extra__title{
      font-size: 24px;
      margin-bottom: 22px;
    }

    .producto-feature-item h3{
      font-size: 16px;
    }

    .producto-feature-item p{
      font-size: 15px;
    }

    .producto-accordion__toggle{
      font-size: 17px;
      padding: 16px 0;
    }

    .producto-accordion__icon{
      font-size: 28px;
    }
  }

    .producto-featured{
    background: #efe4d9;
    padding: 60px 0 90px;
  }

  .producto-featured__wrap{
    width: min(1680px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .producto-featured__slider{
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .pf-slides{
    position: relative;
    width: 100%;
    min-height: 650px;
    background-color: #efe4d9
 ;
  }

  .pf-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  }

  .pf-slide.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .pf-slide img{
   
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 18px rgba(82, 58, 30, .18));
  }

  .pf-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: #5a3420;
    font-size: 30px;
    cursor: pointer;
    z-index: 5;
    transition: .2s ease;
  }

  .pf-arrow:hover{
    color: #3f2214;
    transform: translateY(-50%) scale(1.06);
  }

  .pf-arrow--prev{ left: 8px; }
  .pf-arrow--next{ right: 8px; }

  .pf-dots{
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }

  .pf-dot{
    width: 16px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(90, 52, 32, .28);
    cursor: pointer;
    transition: .2s ease;
  }

  .pf-dot.active{
    width: 24px;
    background: #5a3420;
  }

  .pf-info-card{
    color: #000;
  }

  .pf-info-card h2{
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.02;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.6px;
    max-width: 620px;
  }

  .pf-desc{
    margin: 0 0 20px;
    color: #000;
    font-size: 17px;
    line-height: 1.65;
    max-width: 630px;
  }

  .pf-intensidad-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
  }

  .pf-intensidad-left{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pf-intensidad-label{
    color: #000;
    font-size: 14px;
  }

  .pf-intensidad-sep{
    color: #9a8777;
    font-size: 14px;
  }

  .pf-intensidad-score{
    font-size: 16px;
    font-weight: 700;
    color: #5a3420;
    white-space: nowrap;
  }

  .pf-intensidad-beans{
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .bean{
    position: relative;
    display: inline-block;
    width: 8px;
    height: 12px;
    border-radius: 48% 42% 50% 42% / 55% 45% 55% 45%;
    background: #cfc4b8;
    transform: rotate(16deg);
    flex: 0 0 auto;
  }

  .bean::after{
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 50%;
    width: 1.3px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    transform: translateX(-50%) rotate(10deg);
  }

  .bean.active{
    background: #5a3420;
  }

  .bean.active::after{
    background: rgba(255,255,255,.58);
  }

  .pf-product-specs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.75);
    margin-bottom: 18px;
    padding: 0 36px;
  }

  .pf-spec-item{
    padding: 22px 26px 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.75);
  }

  .pf-spec-item:nth-child(odd){
    padding-right: 30px;
    border-right: 1px solid rgba(255,255,255,.75);
  }

  .pf-spec-item:nth-child(even){
    padding-left: 30px;
  }

  .pf-spec-item h4{
    margin: 0 0 10px;
    color: #efe2d0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .pf-spec-item p{
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
  }

  .pf-spec-item--full{
    grid-column: 1 / -1;
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-right: 0 !important;
  }

  .pf-buy-box{
    background: #663332;
    border: 1px solid rgba(255,255,255,.45);
    padding: 22px 24px 22px;
    color: #fff;
  }

  .pf-buy-top{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    align-items: flex-start;
  }

  .pf-buy-title{
    font-size: 16px;
    color: #f4e8d8;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .pf-buy-sub{
    color: rgba(255,255,255,.86);
    font-size: 13px;
    line-height: 1.4;
  }

  .pf-buy-price{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .pf-buy-price strong{
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 800;
  }

  .pf-buy-price span,
  .pf-buy-price small{
    color: rgba(255,255,255,.86);
    font-size: 11px;
    line-height: 1.3;
  }

  .pf-buy-actions{
    display: flex;
    align-items: stretch;
    gap: 14px;
  }

  .pf-btn-cart{
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7dcc9;
    color: #5a2d1d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: .2s ease;
  }

  .pf-btn-cart:hover{
    background: #f3ebdd;
  }

  .pf-qty{
    flex: 0 0 132px;
    height: 52px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: stretch;
    border: 1px solid rgba(0,0,0,1);
    background: #3f664c;
    overflow: hidden;
  }

  .pf-qty-btn{
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pf-qty-btn:hover{
    background: rgba(255,255,255,.08);
  }

  .pf-qty input{
    border: 0;
    background: transparent;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    width: 100%;
    min-width: 0;
  }

  @media (max-width: 1200px){
    .producto-featured__wrap{
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .producto-featured__slider,
    .pf-slides{
      min-height: 520px;
    }

    .pf-slide img{
      max-width: 44%;
      max-height: 420px;
    }

    .pf-info-card h2{
      font-size: 34px;
      max-width: 100%;
    }
  }

  @media (max-width: 767px){
    .producto-featured{
      padding: 50px 0 65px;
    }

    .producto-featured__slider,
    .pf-slides{
      min-height: 400px;
    }

    .pf-slide img{
      max-width: 66%;
      max-height: 320px;
    }

    .pf-info-card h2{
      font-size: 26px;
    }

    .pf-intensidad-row{
      flex-direction: column;
      align-items: flex-start;
    }

    .pf-product-specs{
      grid-template-columns: 1fr;
      padding: 0 20px;
    }

    .pf-spec-item{
      padding-left: 0 !important;
      padding-right: 0 !important;
      border-right: 0 !important;
    }

    .pf-buy-top{
      flex-direction: column;
    }

    .pf-buy-price{
      text-align: left;
    }

    .pf-buy-actions{
      flex-direction: column;
    }

    .pf-qty{
      flex: 0 0 auto;
      width: 100%;
    }

    .pf-buy-box{
      padding: 22px 20px 24px;
    }
  }

.tea-marquee {
    background-color: #000;
    overflow: hidden;
    padding: 28px 0 36px;
}

.tea-track {
    display: flex;
    align-items: flex-start;
    gap: 55px;
}

.tea-item {
    width: 155px;
    min-width: 155px;
    max-width: 155px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: #fff;
}

.tea-product-name {
    width: 100%;
    max-width: 155px;

    color: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.15;
    text-align: center;

    min-height: 34px;
    margin-bottom: 14px;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.tea-item img {
    display: block;
    width: 125px;
    max-width: 125px;
    height: 85px;
    object-fit: contain;
}

.blason-gifts__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 260px;
    overflow: hidden;
}

.blason-gifts__image img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: 260px;
    object-fit: contain;

    transition: opacity .35s ease, transform .35s ease;
}

.blason-gifts__image .img-default {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.blason-gifts__image .img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    pointer-events: none;
}

/* Hover sobre la imagen */
.blason-gifts__image:hover .img-default {
    opacity: 0;
}

.blason-gifts__image:hover .img-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
}

/* Hover sobre toda la tarjeta */
.blason-gifts__card:hover .blason-gifts__image .img-default {
    opacity: 0;
}

.blason-gifts__card:hover .blason-gifts__image .img-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
}

 /* Configurador integrado dentro de las tarjetas blason-gifts */
        .blason-gifts__wrap {
            overflow-x: auto !important;
            overflow-y: visible !important;
            padding-bottom: 0 !important;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .blason-gifts__wrap::-webkit-scrollbar {
            display: none;
        }

        .blason-gifts__slider {
            align-items: flex-start !important;
            overflow: visible !important;
            height: auto !important;
            max-height: none !important;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 18px !important;
        }

        .blason-gifts__slider::-webkit-scrollbar {
            display: none;
        }

        .blason-gifts__card {
            position: relative;
            overflow: hidden !important;
            height: auto !important;
            max-height: none !important;
            min-height: 0 !important;
            align-self: flex-start;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .blason-gifts__card.is-config-open {
            z-index: 20;
            transform: translateY(-2px);
        }

        .blason-gifts__link,
        .blason-gifts__title-link {
            color: inherit;
            text-decoration: none;
        }

        .blason-gifts__title-link:hover {
            color: inherit;
            text-decoration: none;
        }

        .blason-gifts__bottom {
            position: relative;
            gap: 14px;
        }

        .blason-gifts__plus {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            user-select: none;
            line-height: 1;
            font-size: 18px;
            transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
        }

        .blason-gifts__plus:hover,
        .blason-gifts__plus.is-open {
            transform: rotate(45deg);
            box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
        }

        .blason-gifts__mini-menu {
            position: static;
            width: auto;
            background: #fffaf3;
            border: 1px solid rgba(242, 188, 138, .40);
            border-radius: 20px;
            box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
            color: #21170f;
            margin: 0 18px;
            max-height: 0;
            opacity: 0;
            padding: 0 14px;
            pointer-events: none;
            transform: translateY(-8px);
            transition: max-height .30s ease, opacity .22s ease, transform .22s ease, margin .22s ease, padding .22s ease;
            overflow: hidden;
        }

        .blason-gifts__mini-menu.is-open {
            max-height: 620px;
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            margin-top: 14px;
            margin-bottom: 22px;
            padding: 16px 16px 15px;
        }

        .blason-gifts__mini-title {
            display: block;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .09em;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #21170f;
        }

        .blason-gifts__option-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 14px;
        }

        .blason-gifts__option {
            border: 1px solid rgba(33, 23, 15, .16);
            background: #fff;
            color: #21170f;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 900;
            padding: 11px 10px;
            line-height: 1;
            cursor: pointer;
            white-space: nowrap;
            transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .blason-gifts__option:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 16px rgba(33, 23, 15, .08);
        }

        .blason-gifts__option.is-active {
            background: #21170f;
            color: #fff;
            border-color: #21170f;
        }

        .blason-gifts__option.is-disabled,
        .blason-gifts__option:disabled {
            opacity: .34;
            cursor: not-allowed;
            pointer-events: none;
            filter: grayscale(1);
            box-shadow: none !important;
            transform: none !important;
        }

        .blason-gifts__select option:disabled {
            color: rgba(33, 23, 15, .35);
        }

        .blason-gifts__add:disabled {
            opacity: .45;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }

        .blason-gifts__qty-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 15px;
        }

        .blason-gifts__qty-label {
            font-size: 12px;
            font-weight: 900;
            color: #21170f;
            white-space: nowrap;
        }

        .blason-gifts__qty-control {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 112px;
            border: 1px solid rgba(33, 23, 15, .14);
            border-radius: 999px;
            overflow: hidden;
            background: #fff;
        }

        .blason-gifts__qty-btn {
            width: 36px;
            height: 34px;
            border: 0;
            background: transparent;
            color: #21170f;
            font-weight: 900;
            cursor: pointer;
            line-height: 1;
        }

        .blason-gifts__qty-value {
            min-width: 34px;
            text-align: center;
            font-weight: 900;
            font-size: 13px;
            color: #21170f;
        }

        .blason-gifts__add {
            width: 100%;
            border: 0;
            border-radius: 999px;
            background: #21170f;
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .04em;
            text-transform: uppercase;
            padding: 14px 16px;
            cursor: pointer;
            transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
        }

        .blason-gifts__add:hover {
            transform: translateY(-1px);
            opacity: .96;
            box-shadow: 0 10px 20px rgba(33, 23, 15, .18);
        }



        .blason-gifts__field {
            margin-bottom: 14px;
        }

        .blason-gifts__field-label {
            display: block;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #21170f;
            margin-bottom: 8px;
        }

        .blason-gifts__select {
            width: 100%;
            border: 1px solid rgba(33, 23, 15, .16);
            background: #fff;
            color: #21170f;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            padding: 11px 14px;
            outline: none;
        }

        .blason-gifts__variant-note {
            display: block;
            margin: 0 0 13px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(33, 23, 15, .72);
            line-height: 1.35;
        }

        .blason-gifts__price-old {
            display: inline-block;
            margin-right: 6px;
            opacity: .62;
            text-decoration: line-through;
            font-size: 12px;
            font-weight: 800;
        }

        .blason-gifts__card.is-hidden-by-filter {
            display: none !important;
        }

        .blason-gifts__empty {
            color: #fff;
            border: 1px dashed rgba(255, 255, 255, .35);
            border-radius: 18px;
            padding: 22px;
            width: 100%;
            background: rgba(0, 0, 0, .35);
        }

        @media (max-width: 768px) {
            .blason-gifts__slider {
                overflow: visible !important;
                padding-bottom: 22px !important;
            }

            .blason-gifts__mini-menu {
                margin-left: 18px;
                margin-right: 18px;
                border-radius: 18px;
            }

            .blason-gifts__mini-menu.is-open {
                max-height: 680px;
                padding: 16px;
            }

            .blason-gifts__option-group {
                gap: 9px;
            }

            .blason-gifts__option {
                font-size: 11px;
                padding-left: 8px;
                padding-right: 8px;
            }
        }


        /* Slider principal */
        .kk-hero-slider {
            position: relative;
            overflow: hidden;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            min-height: clamp(680px, calc(100vh - 118px), 860px);
            border-radius: 0;
            background: #111;
        }

        .kk-hero-slider__track {
            position: relative;
            width: 100%;
            min-height: inherit;
        }

        .kk-hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            transition: opacity .85s ease, visibility .85s ease;
        }

        .kk-hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .34), rgba(0, 0, 0, .12));
            z-index: 1;
        }

        .kk-hero-slide.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .kk-hero-slide__inner {
            position: relative;
            z-index: 3;
            min-height: inherit;
            width: min(1320px, calc(100% - 96px));
            margin: 0 auto;
            display: flex;
            align-items: center;
        }

        .kk-hero-slide__copy {
            max-width: 560px;
        }

        .kk-hero-slide__eyebrow {
            display: inline-flex;
            align-items: center;
            margin-bottom: 14px;
            padding: 8px 14px;
            border: 1px solid rgba(255, 255, 255, .42);
            border-radius: 999px;
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .16em;
        }

        .kk-hero-slide__copy h1 {
            color: #fff;
            font-size: clamp(34px, 5vw, 64px) !important;
            line-height: .98;
            margin: 0 0 18px;
            text-transform: uppercase;
            text-shadow: 0 18px 45px rgba(0, 0, 0, .35);
        }

        .kk-hero-slide__copy p {
            color: rgba(255, 255, 255, .86);
            font-size: 17px;
            line-height: 1.6;
            max-width: 470px;
            margin: 0 0 26px;
        }

        .kk-hero-arrow {
            position: absolute;
            top: 50%;
            z-index: 8;
            width: 48px;
            height: 48px;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, .9);
            color: #16110d;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%) scale(.94);
            opacity: 0;
            visibility: hidden;
            transition: all .25s ease;
            box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
        }

        .kk-hero-arrow--prev {
            left: 24px;
        }

        .kk-hero-arrow--next {
            right: 24px;
        }

        .kk-hero-slider:hover .kk-hero-arrow {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) scale(1);
        }

        .kk-hero-arrow:hover {
            background: #fff;
        }

        .kk-hero-dots {
            position: absolute;
            left: 50%;
            bottom: 28px;
            z-index: 9;
            display: flex;
            gap: 9px;
            transform: translateX(-50%);
        }

        .kk-hero-dots button {
            width: 9px;
            height: 9px;
            border: 0;
            border-radius: 999px;
            padding: 0;
            background: rgba(255, 255, 255, .55);
            transition: all .25s ease;
        }

        .kk-hero-dots button.is-active {
            width: 34px;
            background: #fff;
        }

        /* Slider Nosotros */
        .kk-nosotros-slider-wrap {
            position: relative;
            width: 100%;
            min-width: 0;
        }

        .kk-nosotros-slider {
            position: relative;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            border-radius: 28px;
            min-height: 520px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
            background: #111;
        }

        .kk-nosotros-slider__viewport {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .kk-nosotros-slider__track {
            display: flex;
            height: 520px;
            transition: transform .65s cubic-bezier(.22, .61, .36, 1);
            will-change: transform;
        }

        .kk-nosotros-slide {
            min-width: 100%;
            height: 520px;
            margin: 0;
            position: relative;
            overflow: hidden;
        }

        .kk-nosotros-slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transform: scale(1.03);
        }

        .kk-nosotros-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .18));
            pointer-events: none;
        }

        .kk-nosotros-arrow {
            position: absolute;
            top: 50%;
            z-index: 5;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, .88);
            color: #17120e;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%) scale(.94);
            opacity: 0;
            visibility: hidden;
            transition: all .25s ease;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
        }

        .kk-nosotros-arrow i,
        .kk-hero-arrow i {
            font-size: 20px;
            line-height: 1;
        }

        .kk-nosotros-arrow--prev {
            left: 18px;
        }

        .kk-nosotros-arrow--next {
            right: 18px;
        }

        .kk-nosotros-slider:hover .kk-nosotros-arrow {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) scale(1);
        }

        .kk-nosotros-arrow:hover {
            background: #fff;
        }

        .kk-nosotros-dots {
            position: absolute;
            left: 50%;
            bottom: 22px;
            z-index: 6;
            display: flex;
            gap: 8px;
            transform: translateX(-50%);
        }

        .kk-nosotros-dots button {
            width: 8px;
            height: 8px;
            border: 0;
            border-radius: 999px;
            padding: 0;
            background: rgba(255, 255, 255, .52);
            transition: all .25s ease;
        }

        .kk-nosotros-dots button.is-active {
            width: 28px;
            background: #fff;
        }

        @media (max-width: 991px) {
            .kk-hero-slider {
                min-height: 620px;
            }

            .kk-hero-slider__track,
            .kk-hero-slide__inner {
                min-height: inherit;
            }

            .kk-hero-slide__inner {
                width: min(100% - 48px, 960px);
            }

            .kk-nosotros-slider,
            .kk-nosotros-slider__track,
            .kk-nosotros-slide {
                height: 420px;
                min-height: 420px;
            }
        }

        @media (max-width: 575px) {
            .kk-hero-slider {
                min-height: 560px;
            }

            .kk-hero-slider__track,
            .kk-hero-slide__inner {
                min-height: inherit;
            }

            .kk-hero-slide__inner {
                width: calc(100% - 34px);
            }

            .kk-hero-slide::before {
                background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .42));
            }

            .kk-hero-arrow,
            .kk-nosotros-arrow {
                width: 40px;
                height: 40px;
            }

            .kk-nosotros-slider,
            .kk-nosotros-slider__track,
            .kk-nosotros-slide {
                height: 340px;
                min-height: 340px;
                border-radius: 22px;
            }
        }



        .top-nav-wrap {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 100 !important;
            width: 100% !important;
            padding: 24px 22px 0 !important;
            margin: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        .top-nav {
            position: relative !important;
            z-index: 101 !important;
            width: 100% !important;
            max-width: none !important;
            margin: 0 auto !important;
                       background: rgba(139, 112, 84, .75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .28) !important;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .18) !important;
        }

        .kk-hero-slider,
        .hero-blason.kk-hero-slider {
            width: 100vw !important;
            max-width: 100vw !important;
            min-height: 100vh !important;
            height: 100vh !important;
            margin: 0 0 0 calc(50% - 50vw) !important;
            padding: 0 !important;
            border-radius: 0 !important;
            background: transparent !important;
        }

        .kk-hero-slider__track {
            height: 100% !important;
            min-height: 100% !important;
        }

        .kk-hero-slide {
            background-size: cover !important;
            background-position: center center !important;
            background-color: transparent !important;
        }

        .kk-hero-slide__inner {
            min-height: 100vh !important;
            height: 100vh !important;
            padding-top: 110px !important;
            padding-bottom: 70px !important;
            align-items: center !important;
        }

        .kk-hero-slide::before {
            background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28), rgba(0, 0, 0, .08)) !important;
        }

        @media (max-width: 991px) {
            .top-nav-wrap {
                padding: 16px 14px 0 !important;
            }

            .kk-hero-slider,
            .hero-blason.kk-hero-slider,
            .kk-hero-slide__inner {
                min-height: 720px !important;
                height: 720px !important;
            }

            .kk-hero-slide__inner {
                padding-top: 120px !important;
            }
        }

        @media (max-width: 575px) {
            .top-nav-wrap {
                padding: 12px 10px 0 !important;
            }

            .kk-hero-slider,
            .hero-blason.kk-hero-slider,
            .kk-hero-slide__inner {
                min-height: 650px !important;
                height: 650px !important;
            }

            .kk-hero-slide__inner {
                padding-top: 125px !important;
                padding-bottom: 54px !important;
            }
        }



        /* =========================================================
           FIX HERO HD: usa banners 1920px y evita corte inferior
           ========================================================= */
        .kk-hero-slide {
            background-size: cover !important;
            background-position: center bottom !important;
            image-rendering: auto !important;
        }

        .kk-hero-slider,
        .hero-blason.kk-hero-slider {
            background: transparent !important;
            overflow: hidden !important;
        }

        .kk-hero-dots {
            bottom: 32px !important;
        }

        @media (min-width: 1200px) {

            .kk-hero-slider,
            .hero-blason.kk-hero-slider,
            .kk-hero-slide__inner {
                min-height: 100vh !important;
                height: 100vh !important;
            }
        }



        /* =========================================================
           FIX HERO SIN ZOOM: el banner conserva proporción 1920x1120
           Menú encima, sin recorte vertical ni fondo negro/gris
           ========================================================= */
        .kk-hero-slider,
        .hero-blason.kk-hero-slider {
            width: 100vw !important;
            max-width: 100vw !important;
            min-height: 0 !important;
            aspect-ratio: 12 / 7 !important;
            margin: 0 0 0 calc(50% - 50vw) !important;
            padding: 0 !important;
            overflow: hidden !important;
            background: transparent !important;
        }

        .kk-hero-slider__track {
            width: 100% !important;
            height: 100% !important;
            min-height: 0 !important;
        }

        .kk-hero-slide {
            background-size: 100% 100% !important;
            background-position: center center !important;
            background-repeat: no-repeat !important;
            background-color: transparent !important;
        }

        .kk-hero-slide__inner {
            height: 100% !important;
            min-height: 0 !important;
            padding-top: clamp(120px, 9vw, 150px) !important;
            padding-bottom: clamp(60px, 6vw, 95px) !important;
            align-items: center !important;
        }

        .kk-hero-slide__copy {
            transform: none !important;
        }

        @media (max-width: 991px) {

            .kk-hero-slider,
            .hero-blason.kk-hero-slider {
                aspect-ratio: 12 / 8.2 !important;
                height: auto !important;
                min-height: 0 !important;
            }

            .kk-hero-slide__inner {
                height: 100% !important;
                min-height: 0 !important;
                padding-top: 130px !important;
                padding-bottom: 64px !important;
            }
        }

        @media (max-width: 575px) {

            .kk-hero-slider,
            .hero-blason.kk-hero-slider {
                aspect-ratio: 9 / 12 !important;
                height: auto !important;
                min-height: 0 !important;
            }

            .kk-hero-slide {
                background-size: cover !important;
                background-position: center center !important;
            }

            .kk-hero-slide__inner {
                height: 100% !important;
                min-height: 0 !important;
                padding-top: 130px !important;
                padding-bottom: 60px !important;
            }
        }

/* =========================================================
   KALAKAPALA SIDE CART
   Archivo sugerido:
   vistas/css/carrito-kalakapala.css
   ========================================================= */

.side-cart__shipping {
  background: rgba(239, 228, 217, .08);
  border-top: 1px solid rgba(239, 228, 217, .10);
  border-bottom: 1px solid rgba(239, 228, 217, .10);
  padding: 16px 20px;
  color: #efe4d9;
}

.side-cart__shipping strong {
  display: block;
  color: #3f2a1d;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.side-cart__shipping span {
  display: block;
  color: #3f2a1d ;
  font-size: 13px;
  line-height: 1.45;
}

.side-cart__shipping span strong {
  display: inline;
  color: #3f2a1d;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

.side-cart__shipping-progress {
  width: 100%;
  height: 7px;
  background: rgba(239, 228, 217, .16);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}

.side-cart__shipping-bar {
  width: 0%;
  height: 100%;
  background: #3f2a1d;
  border-radius: 999px;
  transition: width .25s ease;
}

.side-cart__empty {
  padding: 32px 12px;
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
}

.side-cart__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.side-cart__item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  position: relative;
}

.side-cart__item-media {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  background: #efe4d9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.side-cart__item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.side-cart__item-info {
  min-width: 0;
}

.side-cart__item-info h4 {
  margin-bottom: 5px;
}

.side-cart__item-variant {
  font-size: 12px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 7px;
}

.side-cart__item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.side-cart__qty-control {
  display: inline-flex;
  align-items: center;
  background: #000;
  border-radius: 999px;
  overflow: hidden;
}

.side-cart__qty-control button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}

.side-cart__qty-control button:hover {
  background: rgba(255,255,255,.08);
}

.side-cart__qty-control span {
  min-width: 30px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.side-cart__remove {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
  flex: 0 0 auto;
}

.side-cart__remove:hover {
  background: #663332;
  color: #efe4d9;
}

.side-cart__remove i {
  font-size: 15px;
  line-height: 1;
}

.side-cart.active,
.side-cart.is-active,
.side-cart.show {
  transform: translateX(0);
  visibility: visible;
}

.side-cart-overlay.active,
.side-cart-overlay.is-active,
.side-cart-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.side-cart-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .side-cart__item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .side-cart__item-media {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }
}



/* =========================================================
   BLASON GIFTS - PANEL ÚNICO PARA CARRITO GLOBAL
   Corrige encimado de paneles y evita fondo beige duplicado.
   ========================================================= */

.blason-gifts__panel,
.blason-gifts__config,
.blason-gifts__options-panel,
.blason-gifts__drawer,
.blason-gifts__quick-panel,
.blason-gifts__mini-cart {
  display: none !important;
}

.blason-gifts__card {
  position: relative;
  overflow: hidden;
}

.blason-gifts__plus {
  border: 0;
  cursor: pointer;
}

.blason-gifts__plus.is-open {
  transform: rotate(45deg) scale(1.04);
  background: #edb78e;
}

.blason-cart-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  max-height: calc(100% - 28px);
  overflow-y: auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(9, 9, 9, .98);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.48);
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.blason-cart-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.blason-cart-panel::-webkit-scrollbar {
  width: 4px;
}

.blason-cart-panel::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.22);
  border-radius: 999px;
}

.blason-cart-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.blason-cart-panel__close:hover,
.blason-cart-panel__close:focus-visible {
  background: #edb78e;
  color: #15110d;
  transform: scale(1.04);
  outline: none;
}

.blason-cart-panel__title {
  display: block;
  margin: 0 46px 14px 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blason-cart-panel__field {
  margin-top: 13px;
}

.blason-cart-panel__label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blason-cart-panel__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blason-cart-panel__option {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.blason-cart-panel__option.is-active {
  border-color: #edb78e;
  background: #edb78e;
  color: #15110d;
}

.blason-cart-panel__option.is-disabled,
.blason-cart-panel__option:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.blason-cart-panel__select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.blason-cart-panel__select option {
  color: #15110d;
}

.blason-cart-panel__note {
  display: block;
  min-height: 18px;
  margin-top: 11px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.35;
}

.blason-cart-panel__qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blason-cart-panel__qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #1d1d1d;
  overflow: hidden;
}

.blason-cart-panel__qty button {
  width: 36px;
  height: 34px;
  border: 0;
  background: #fff;
  color: #15110d;
  font-size: 18px;
  cursor: pointer;
}

.blason-cart-panel__qty-value {
  min-width: 36px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.blason-cart-panel__add {
  width: 100%;
  height: 50px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #15110d;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.blason-cart-panel__add:hover {
  transform: translateY(-1px);
  background: #efe4d9;
}

.blason-cart-panel__add:disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .blason-cart-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-height: calc(100% - 20px);
    padding: 16px;
    border-radius: 22px;
  }

  .blason-cart-panel__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 23px;
  }

  .blason-cart-panel__title {
    margin-right: 42px;
    font-size: 15px;
  }

  .blason-cart-panel__option {
    font-size: 12px;
    padding: 8px 11px;
  }

  .blason-cart-panel__add {
    height: 46px;
    font-size: 13px;
  }
}



/* =========================================================
   TOP NAV RESPONSIVE + FIXED + HAMBURGER
   Kalakapala
   ========================================================= */

.top-nav-wrap {
  position: fixed !important;
  top: 0px;
  left: 22px;
  right: 22px;
  z-index: 9997;
}

.top-nav {
  position: relative;
}

.top-nav__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.top-nav__brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
}

.nav-toggle span {
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease, top .24s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

body.nav-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.46);
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

body.nav-open .nav-mobile-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* Desktop refinado */
@media (min-width: 992px) {
  .top-nav {
    min-height: 76px;
  }

  .nav-right {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

/* Tablet / Mobile */
@media (max-width: 991px) {
  .top-nav-wrap {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .top-nav {
    min-height: 68px;
    padding: 10px 12px 10px 18px !important;
    border-radius: 999px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .top-nav__brand img,
  .top-nav > a:first-child img {
    width: 185px !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-right {
    position: fixed;
    top: 92px;
    right: 14px;
    width: min(360px, calc(100% - 28px));
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    z-index: 9998;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 22px;
    border-radius: 28px;
    background: rgba(20, 13, 10, .96);
    border: 1px solid rgba(239, 228, 217, .14);
    box-shadow: 0 28px 70px rgba(0,0,0,.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

  body.nav-open .nav-right {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-links {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .menu-links a {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    color: #efe4d9 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-links a::after {
    content: "›";
    font-size: 22px;
    line-height: 1;
    opacity: .55;
  }

  .menu-links a:hover {
    background: #efe4d9;
    color: #1a100d !important;
    transform: none;
  }

  .divider {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: rgba(239, 228, 217, .14) !important;
  }

  .social-links {
    width: 100%;
    justify-content: center !important;
    gap: 12px !important;
  }

  .social-links a {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
    background: #000 !important;
    color: #fff !important;
  }

  .btn-contacto {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    background: #4f7b5d;
    color: #fff !important;
  }
}

@media (max-width: 575px) {
  .top-nav-wrap {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .top-nav {
    min-height: 62px;
    padding: 8px 10px 8px 14px !important;
  }

  .top-nav__brand img,
  .top-nav > a:first-child img {
    width: 155px !important;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-toggle span {
    width: 18px;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 20px;
  }

  .nav-toggle span:nth-child(3) {
    top: 27px;
  }

  body.nav-open .nav-toggle span:nth-child(1),
  body.nav-open .nav-toggle span:nth-child(3) {
    top: 20px;
  }

  .nav-right {
    top: 82px;
    right: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 96px);
    padding: 18px;
    border-radius: 24px;
  }
}



/* =========================================================
   FIX MOBILE NAV CLICKS / Z-INDEX / TAP TARGETS
   Este bloque debe ir AL FINAL del CSS.
   ========================================================= */

.top-nav-wrap {
  position: fixed !important;
  top: 0px !important;
  left: 22px !important;
  right: 22px !important;
  z-index: 10050 !important;
  pointer-events: none;
}

.top-nav {
  pointer-events: auto;
}

.nav-toggle,
.nav-right,
.menu-links,
.menu-links a,
.social-links,
.social-links a,
.btn-contacto {
  pointer-events: auto !important;
}

.nav-mobile-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10020 !important;
  background: rgba(0,0,0,.46) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.nav-open .nav-mobile-backdrop {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 991px) {
  .top-nav-wrap {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 10060 !important;
  }

  .top-nav {
    position: relative !important;
    z-index: 10070 !important;
    min-height: 62px !important;
    padding: 8px 10px 8px 14px !important;
    border-radius: 999px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .top-nav__brand,
  .top-nav > a:first-child {
    position: relative;
    z-index: 10072;
    display: inline-flex !important;
    align-items: center;
    max-width: calc(100% - 58px);
  }

  .top-nav__brand img,
  .top-nav > a:first-child img {
    width: 165px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .nav-toggle {
    position: relative !important;
    z-index: 10073 !important;
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #000 !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    touch-action: manipulation;
  }

  .nav-right {
    position: fixed !important;
    top: 86px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-height: calc(100vh - 104px) !important;
    overflow-y: auto !important;
    z-index: 10080 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 20px !important;
    border-radius: 28px !important;
    background: rgba(11, 8, 7, .97) !important;
    border: 1px solid rgba(239, 228, 217, .12) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,.42) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-10px) scale(.98) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform .24s ease, opacity .24s ease, visibility .24s ease !important;
  }

  body.nav-open .nav-right {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .menu-links {
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 9px !important;
  }

  .menu-links a {
    position: relative !important;
    z-index: 10081 !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 16px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.055) !important;
    color: #efe4d9 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: .06em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-decoration: none !important;
    cursor: pointer !important;
    touch-action: manipulation;
  }

  .menu-links a::after {
    content: "›";
    font-size: 22px;
    line-height: 1;
    opacity: .55;
    pointer-events: none;
  }

  .menu-links a:hover,
  .menu-links a:active {
    background: #efe4d9 !important;
    color: #1a100d !important;
  }

  .divider {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: rgba(239, 228, 217, .12) !important;
  }

  .social-links {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .social-links a {
    position: relative !important;
    z-index: 10081 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 50% !important;
    background: #000 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    touch-action: manipulation;
  }

  .btn-contacto {
    position: relative !important;
    z-index: 10081 !important;
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    background: #4f7b5d !important;
    color: #fff !important;
    cursor: pointer !important;
    touch-action: manipulation;
  }
}

@media (max-width: 575px) {
  .top-nav__brand img,
  .top-nav > a:first-child img {
    width: 150px !important;
  }

  .nav-right {
    top: 78px !important;
    left: 12px !important;
    right: 12px !important;
    max-height: calc(100vh - 92px) !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }
}

.kk-hero-extra-img {
    display: block;
    transform: translateY(35px);
    width:600px;
}

/* ================================
   FIX MODAL RECETAS
================================ */

.kk-uses-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 40px;
}

.kk-uses-modal.is-open,
.kk-uses-modal[aria-hidden="false"] {
    display: flex;
}

.kk-uses-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.kk-uses-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    max-height: calc(100vh - 160px);
    overflow: hidden;
    border-radius: 0 0 22px 22px;
    background: #f3eadf;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.kk-uses-modal__content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    width: 100%;
}

.kk-uses-modal__media {
    min-height: 460px;
    background: #000;
}

.kk-uses-modal__media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.kk-uses-modal__info {
    padding: 42px 44px;
    color: #6f6256;
    overflow-y: auto;
}

.kk-uses-modal__info h3 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    color: #6f6256;
}

.kk-uses-modal__info p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.65;
}

.kk-uses-modal__list {
    margin: 0;
    padding-left: 20px;
}

.kk-uses-modal__list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.kk-uses-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.kk-uses-modal__close i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .kk-uses-modal {
        padding: 105px 16px 28px;
        align-items: flex-start;
    }

    .kk-uses-modal__dialog {
        max-height: calc(100vh - 130px);
        border-radius: 0 0 20px 20px;
        overflow-y: auto;
    }

    .kk-uses-modal__content {
        grid-template-columns: 1fr;
    }

    .kk-uses-modal__media {
        min-height: 260px;
    }

    .kk-uses-modal__media img {
        min-height: 260px;
    }

    .kk-uses-modal__info {
        padding: 30px 26px;
    }

    .kk-uses-modal__info h3 {
        font-size: 28px;
    }

    .kk-uses-modal__info p {
        font-size: 16px;
    }
}

/* =========================================================
   SIDE CART GLOBAL KALAKAPALA - FIX Z-INDEX / NAVBAR
========================================================= */

.side-cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999998 !important;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.side-cart {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 460px;
    max-width: 100%;
    height: 100vh !important;
    max-height: 100vh !important;
    background: #ffffff !important;
    z-index: 999999 !important;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Estados abiertos */
.side-cart-overlay.is-active,
.side-cart-overlay.active,
body.side-cart-open .side-cart-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.side-cart.is-active,
.side-cart.active,
body.side-cart-open .side-cart {
    transform: translateX(0);
}

/* Header siempre arriba dentro del carrito */
.side-cart__header {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-cart__header h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1d2433;
}

.side-cart__close {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: #1d2433;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.side-cart__close i {
    font-size: 22px;
}

/* Envío */
.side-cart__shipping {
    flex: 0 0 auto;
    padding: 16px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-cart__shipping strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #1d2433;
}

.side-cart__shipping span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #6d7280;
}

.side-cart__shipping-progress {
    width: 100%;
    height: 6px;
    margin-top: 12px;
    border-radius: 999px;
    background: #ece8e1;
    overflow: hidden;
}

.side-cart__shipping-bar {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: #18885d;
}

/* Body */
.side-cart__body {
    flex: 1 1 auto;
    padding: 24px;
    overflow-y: auto;
    background: #ffffff;
}

.side-cart__group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid #1d1d1d;
    color: #1d2433;
    font-size: 16px;
    font-weight: 700;
}

.side-cart__group-title small {
    font-size: 14px;
    color: #1d2433;
}

.side-cart__empty {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8a8f9c;
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
.side-cart__footer {
    flex: 0 0 auto;
    padding: 20px 24px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.side-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #1d2433;
}

.side-cart__total span {
    font-size: 18px;
    font-weight: 700;
}

.side-cart__total strong {
    font-size: 18px;
    font-weight: 700;
    color: #b46700;
}

.side-cart__note {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.4;
    color: #7a8190;
}

.side-cart__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 2px;
    background: #18885d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease;
}

.side-cart__btn:hover {
    background: #126c49;
    color: #ffffff;
}

.side-cart__payments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    color: #687082;
    font-size: 12px;
    white-space: nowrap;
}

/* Bloqueo de scroll cuando esté abierto */
body.side-cart-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .side-cart {
        width: 100% !important;
    }

    .side-cart__header {
        padding: 22px 20px 16px;
    }

    .side-cart__header h3 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .side-cart__shipping,
    .side-cart__body,
    .side-cart__footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .side-cart__empty {
        min-height: 240px;
    }
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: all .25s ease;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  pointer-events: none;
  transition: all .25s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal__box {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
  transform: translateY(20px) scale(.98);
  transition: all .25s ease;
}

.auth-modal.active .auth-modal__box {
  transform: translateY(0) scale(1);
}

.auth-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f4f0ea;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth-modal__header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-modal__header img {
  max-width: 120px;
  margin-bottom: 14px;
}

.auth-modal__header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.auth-modal__header p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #777;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f0ea;
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 24px;
}

.auth-tab {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b6258;
  cursor: pointer;
  transition: all .2s ease;
}

.auth-tab.active {
  background: #663332;
  color: #fff;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-field {
  margin-bottom: 15px;
}

.auth-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.auth-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #e4ddd5;
  border-radius: 14px;
  padding: 0 14px;
  font-size: 14px;
  color: #111;
  background: #fbf8f4;
  outline: none;
}

.auth-field input:focus {
  border-color: #663332;
  background: #fff;
}

.auth-submit {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: #663332;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: all .2s ease;
}

.auth-submit:hover {
  background: #4f2524;
}

.auth-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #663332;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

body.auth-modal-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .auth-modal {
    align-items: flex-end;
    padding: 0;
  }

  .auth-modal__box {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 32px 22px 26px;
  }
}

.kala-swal-popup {
  border-radius: 22px !important;
  padding: 28px 26px !important;
  background: #ffffff !important;
}

.kala-swal-confirm {
  border-radius: 999px !important;
  padding: 12px 32px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
  background: #111111 !important;
  color: #efe7da !important;
}

.swal2-title {
  font-size: 24px !important;
  color: #111111 !important;
}

.swal2-html-container {
  font-size: 15px !important;
  color: #4f463b !important;
}
/* =========================================================
   RESPONSIVE FINAL OVERRIDES - móvil, tablet y desktop grande
   ========================================================= */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
img, video, canvas, svg{
  max-width:100%;
  height:auto;
}

/* Pantallas grandes: se aprovecha mejor el ancho sin estirar de más */
@media (min-width:1600px){
  .hero-inner,
  .kk-nosotros-container,
  .producto-extra__wrap,
  .producto-featured__wrap,
  .pr-wrap,
  .kk-uses-wrap,
  .kk-category-wrap,
  .tienda-wrap,
  .shop-wrap,
  .historia-wrap{
    width:min(1680px,92vw);
  }
  .hero-copy h1{
    font-size:clamp(64px,4.2vw,86px);
  }
  .hero-product{
    height:min(720px,72vh);
  }
  .product-slider{
    width:min(480px,30vw);
    height:min(680px,68vh);
  }
  .blason-gifts__grid,
  .kk-products-grid,
  .productos-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (max-width:1200px){
  .hero-inner{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  .hero-copy h1{
    font-size:clamp(42px,5vw,58px);
  }
  .hero-product{
    height:560px;
  }
  .product-slider{
    width:360px;
    height:540px;
  }
  .pr-grid,
  .producto-extra__features{
    gap:24px;
  }
}

@media (max-width:991px){
  .top-nav-wrap{
    left:12px;
    right:12px;
  }
  .hero-blason{
    min-height:auto;
    padding:110px 18px 56px;
    background-attachment:scroll;
  }
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:22px;
  }
  .hero-copy{
    max-width:760px;
    padding-left:0;
    margin:0 auto;
  }
  .hero-copy h1{
    font-size:clamp(36px,7vw,54px);
    margin-bottom:22px;
  }
  .hero-product{
    width:100%;
    height:auto;
    min-height:420px;
  }
  .brush-bg{
    width:min(560px,92vw);
  }
  .product-slider{
    width:min(360px,82vw);
    height:min(520px,72vh);
  }
  .kk-nosotros-grid,
  .producto-featured__wrap,
  .tienda-product-layout,
  .producto-layout,
  .product-detail-grid,
  .shop-product-layout{
    grid-template-columns:1fr !important;
  }
  .kk-nosotros-copy{
    max-width:100%;
    padding-left:0;
    text-align:center;
  }
  .pr-grid,
  .producto-extra__features,
  .kk-uses-grid,
  .kk-category-grid,
  .blason-gifts__grid,
  .kk-products-grid,
  .productos-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .producto-featured__slider,
  .pf-info-card,
  .producto-media,
  .producto-info,
  .tienda-product-media,
  .tienda-product-info{
    width:100%;
    max-width:100%;
  }
}

@media (max-width:767px){
  section,
  .kk-nosotros-section,
  .producto-extra__top,
  .producto-extra__bottom,
  .productos-relacionados{
    padding-left:0;
    padding-right:0;
  }
  .hero-blason{
    padding:92px 14px 44px;
  }
  .hero-copy h1{
    font-size:clamp(31px,10vw,43px);
    line-height:1.08;
  }
  .btn-origen,
  .pr-btn,
  .btn-black,
  .btn-contacto,
  button[class*="btn"],
  a[class*="btn"]{
    min-height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    white-space:normal;
  }
  .pr-grid,
  .producto-extra__features,
  .kk-uses-grid,
  .kk-category-grid,
  .blason-gifts__grid,
  .kk-products-grid,
  .productos-grid{
    grid-template-columns:1fr !important;
  }
  .pr-card,
  .kk-uses-card,
  .kk-category-card,
  .blason-gifts__card{
    width:100%;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }
  .producto-feature-item{
    padding:10px 8px;
  }
  .producto-extra__title,
  .pr-header h2,
  .pf-info-card h2{
    font-size:clamp(25px,7.2vw,34px);
  }
  .side-cart{
    width:100vw !important;
    max-width:100vw !important;
  }
  .side-cart__panel,
  .side-cart__content{
    max-width:100%;
  }
  .modal,
  .auth-modal,
  .kk-modal{
    padding:12px !important;
  }
  table{
    display:block;
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
}

@media (max-width:575px){
  .top-nav{
    min-height:62px;
    padding:10px 12px;
  }
  .top-nav__brand img,
  .top-nav > a:first-child img{
    max-width:112px;
  }
  .nav-right{
    max-height:calc(100dvh - 86px);
    overflow-y:auto;
    overscroll-behavior:contain;
  }
  .menu-links a{
    font-size:20px;
    line-height:1.2;
  }
  .hero-product{
    min-height:330px;
  }
  .product-slider{
    width:min(285px,86vw);
    height:360px;
  }
  .slider-dots{
    bottom:0;
  }
  .kk-nosotros-container,
  .producto-extra__wrap,
  .producto-extra__wrap--narrow,
  .pr-wrap,
  .kk-uses-wrap,
  .kk-category-wrap,
  .tienda-wrap,
  .shop-wrap,
  .historia-wrap{
    width:100%;
    padding-left:16px;
    padding-right:16px;
  }
  .producto-featured,
  .producto-extra__bottom,
  .productos-relacionados{
    padding-top:44px;
    padding-bottom:44px;
  }
  .pr-card{
    padding:22px 16px;
  }
  .pr-img img{
    width:min(160px,54vw);
  }
  input,
  select,
  textarea{
    max-width:100%;
    font-size:16px;
  }
}


/* =========================================================
   RESPONSIVE SOLO MOVIL/TABLET - HERO INICIO
   Mantiene las medidas originales de escritorio/monitor.
   ========================================================= */

/* Medidas originales para escritorio: se pasan a CSS para permitir override móvil. */
.kk-hero-extra-img--vainilla {
    width: 600px !important;
    max-width: 600px !important;
}

.kk-hero-extra-img--cafe {
    width: 750px !important;
    max-width: 750px !important;
}

@media (max-width: 991px) {
    .kk-hero-slider,
    .hero-blason.kk-hero-slider {
        min-height: 620px !important;
        height: auto !important;
        aspect-ratio: auto !important;
    }

    .kk-hero-slider__track,
    .kk-hero-slide__inner {
        min-height: 620px !important;
        height: 620px !important;
    }

    .kk-hero-slide {
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .kk-hero-slide__inner {
        width: calc(100% - 48px) !important;
        padding-top: 118px !important;
        padding-bottom: 58px !important;
        align-items: center !important;
    }

    .kk-hero-slide__copy {
        max-width: 520px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .kk-hero-slide__copy h1 {
        padding-top: 0 !important;
        line-height: 1.05 !important;
        margin-bottom: 16px !important;
    }

    .kk-hero-extra-img--vainilla,
    .kk-hero-extra-img--cafe {
        width: min(54vw, 430px) !important;
        max-width: 54vw !important;
        height: auto !important;
        display: block !important;
        margin-top: 18px !important;
    }
}

@media (max-width: 575px) {
    .kk-hero-slider,
    .hero-blason.kk-hero-slider {
        min-height: 560px !important;
        height: auto !important;
        aspect-ratio: auto !important;
    }

    .kk-hero-slider__track,
    .kk-hero-slide__inner {
        min-height: 560px !important;
        height: 560px !important;
    }

    .kk-hero-slide {
        max-height: none !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .kk-hero-slide::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .36)) !important;
    }

    .kk-hero-slide__inner {
        width: calc(100% - 34px) !important;
        padding-top: 108px !important;
        padding-bottom: 48px !important;
        align-items: center !important;
    }

    .kk-hero-slide__copy {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        text-align: left !important;
    }

    .kk-hero-slide__copy h1 {
        padding-top: 0 !important;
        font-size: clamp(25px, 8vw, 35px) !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
    }

    .kk-hero-extra-img--vainilla,
    .kk-hero-extra-img--cafe {
        width: min(78vw, 330px) !important;
        max-width: 78vw !important;
        height: auto !important;
        margin-top: 16px !important;
    }

    .kk-hero-arrow {
        display: none !important;
    }

    .kk-hero-dots {
        bottom: 18px !important;
    }
}

/* =========================================================
   FIX RESPONSIVE MOVIL - SLIDE 2 VAINILLA
   Mantiene desktop intacto y solo ajusta la segunda diapositiva
   para que el texto no quede pegado/debajo del menu en celular.
   ========================================================= */
@media (max-width: 575px) {
    .kk-hero-slide--vainilla .kk-hero-slide__inner {
        padding-top: 136px !important;
        padding-bottom: 38px !important;
    }

    .kk-hero-slide--vainilla .kk-hero-slide__copy h1 {
        font-size: clamp(28px, 7.4vw, 32px) !important;
        line-height: 1.08 !important;
        margin-bottom: 16px !important;
        max-width: 94% !important;
    }

    .kk-hero-slide--vainilla .btn-origen {
        margin-top: 2px !important;
        margin-bottom: 0 !important;
    }

    .kk-hero-slide--vainilla .kk-hero-extra-img--vainilla {
        width: min(82vw, 320px) !important;
        max-width: 82vw !important;
        margin-top: 34px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 390px) {
    .kk-hero-slide--vainilla .kk-hero-slide__inner {
        padding-top: 128px !important;
    }

    .kk-hero-slide--vainilla .kk-hero-slide__copy h1 {
        font-size: clamp(27px, 7.2vw, 30px) !important;
    }

    .kk-hero-slide--vainilla .kk-hero-extra-img--vainilla {
        width: min(80vw, 300px) !important;
        margin-top: 30px !important;
    }
}


/* =========================================================
   AJUSTE FINAL MOVIL - SLIDE 2 VAINILLA
   Desktop queda igual; en celular se controla tamaño/posición
   sin que el producto se corte abajo.
   ========================================================= */
.kk-hero-slide__copy h1 {
    font-size: 35px !important;
    font-weight: 400 !important;
}

@media (max-width: 575px) {
    .kk-hero-slide--vainilla .kk-hero-slide__inner {
        padding-top: 106px !important;
        padding-bottom: 34px !important;
        align-items: flex-start !important;
    }

    .kk-hero-slide--vainilla .kk-hero-slide__copy {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .kk-hero-slide--vainilla .kk-hero-slide__copy h1 {
        font-size: clamp(27px, 7.4vw, 31px) !important;
        line-height: 1.05 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
    }

    .kk-hero-slide--vainilla .btn-origen {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 15px 26px !important;
    }

    .kk-hero-slide--vainilla .kk-hero-extra-img--vainilla {
        width: min(70vw, 270px) !important;
        max-width: min(70vw, 270px) !important;
        height: auto !important;
        transform: none !important;
        margin-top: 22px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        align-self: center !important;
    }
}

@media (max-width: 390px) {
    .kk-hero-slide--vainilla .kk-hero-slide__inner {
        padding-top: 102px !important;
    }

    .kk-hero-slide--vainilla .kk-hero-slide__copy h1 {
        font-size: clamp(26px, 7.1vw, 29px) !important;
        line-height: 1.04 !important;
        margin-bottom: 14px !important;
    }

    .kk-hero-slide--vainilla .btn-origen {
        padding: 14px 24px !important;
    }

    .kk-hero-slide--vainilla .kk-hero-extra-img--vainilla {
        width: min(68vw, 252px) !important;
        max-width: min(68vw, 252px) !important;
        margin-top: 20px !important;
        transform: none !important;
    }
}

/* =========================================================
   KALAI MODAL - ASISTENTE KALAKAPALA
   ========================================================= */
body.kalai-modal-open {
    overflow: hidden;
}

.kalai-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.kalai-modal.is-open {
    display: flex;
}

.kalai-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.kalai-modal__dialog {
    position: relative;
    width: min(94vw, 520px);
    max-height: min(88vh, 760px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .14);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .11), transparent 34%),
        linear-gradient(145deg, #0a0a0a 0%, #171210 48%, #080808 100%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
    color: #fff;
    transform: translateY(16px) scale(.98);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

.kalai-modal.is-open .kalai-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.kalai-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform .2s ease, background .2s ease;
}

.kalai-modal__close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, .14);
}

.kalai-modal__hero {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    padding: 30px 72px 22px 28px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.kalai-modal__orb {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04));
    box-shadow: 0 0 34px rgba(255, 255, 255, .15);
}

.kalai-modal__orb img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.kalai-modal__eyebrow {
    display: inline-block;
    margin-bottom: 7px;
    color: #d8c2a8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.kalai-modal__hero h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 500;
}

.kalai-modal__hero p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.45;
}

.kalai-chat {
    flex: 1;
    min-height: 280px;
    overflow-y: auto;
    padding: 22px 22px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kalai-chat::-webkit-scrollbar {
    width: 7px;
}

.kalai-chat::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .20);
    border-radius: 99px;
}

.kalai-message {
    display: flex;
}

.kalai-message--user {
    justify-content: flex-end;
}

.kalai-message__bubble {
    max-width: 84%;
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.kalai-message--bot .kalai-message__bubble {
    border-top-left-radius: 6px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .10);
}

.kalai-message--user .kalai-message__bubble {
    border-top-right-radius: 6px;
    background: #efe7da;
    color: #15110d;
}

.kalai-message--loading .kalai-message__bubble {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kalai-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: .45;
    animation: kalaiTyping 1s infinite ease-in-out;
}

.kalai-dot:nth-child(2) { animation-delay: .15s; }
.kalai-dot:nth-child(3) { animation-delay: .3s; }

@keyframes kalaiTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: .35; }
    40% { transform: translateY(-4px); opacity: .9; }
}

.kalai-suggestions {
    display: flex;
    gap: 8px;
    padding: 8px 22px 14px;
    overflow-x: auto;
}

.kalai-suggestions button {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .82);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
}

.kalai-suggestions button:hover {
    background: rgba(255, 255, 255, .12);
}

.kalai-form {
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 10px;
    padding: 16px 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.kalai-form input {
    min-width: 0;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0 18px;
    outline: none;
}

.kalai-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.kalai-form input:focus {
    border-color: rgba(239, 231, 218, .55);
    box-shadow: 0 0 0 4px rgba(239, 231, 218, .08);
}

.kalai-form button {
    height: 50px;
    width: 50px;
    border: none;
    border-radius: 999px;
    background: #efe7da;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, opacity .2s ease;
}

.kalai-form button:hover {
    transform: translateY(-1px);
}

.kalai-form button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.kalai-modal__note {
    padding: 0 22px 20px;
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    text-align: center;
}

@media (max-width: 575px) {
    .kalai-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .kalai-modal__dialog {
        width: 100%;
        max-height: 92vh;
        border-radius: 26px 26px 18px 18px;
    }

    .kalai-modal__hero {
        grid-template-columns: 58px 1fr;
        gap: 13px;
        padding: 24px 62px 18px 18px;
    }

    .kalai-modal__orb {
        width: 58px;
        height: 58px;
    }

    .kalai-modal__orb img {
        width: 42px;
        height: 42px;
    }

    .kalai-modal__hero h3 {
        font-size: 23px;
    }

    .kalai-chat {
        min-height: 240px;
        padding: 18px 14px 8px;
    }

    .kalai-message__bubble {
        max-width: 90%;
        font-size: 13px;
    }

    .kalai-suggestions {
        padding-left: 14px;
        padding-right: 14px;
    }

    .kalai-form {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.kalai-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.kalai-action-btn {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.kalai-action-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .26);
}

.kalai-action-btn--primary {
    background: #efe7da;
    color: #15110d;
    border-color: #efe7da;
}

.kalai-action-btn--primary:hover {
    background: #fff6e8;
    border-color: #fff6e8;
}

/* =========================================================
   KALAI MOBILE FIX - 2026-07-06
   ========================================================= */
.kalai-modal__dialog,
.kalai-chat,
.kalai-form input {
    box-sizing: border-box;
}

.kalai-action-btn {
    line-height: 1.25;
    white-space: normal;
}

@media (max-width: 767px) {
    #openKalaiModal.btn-contacto {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        max-width: 100%;
        white-space: nowrap;
    }

    #openKalaiModal.btn-contacto img {
        flex: 0 0 auto;
    }

    .kalai-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .kalai-modal__overlay {
        backdrop-filter: blur(6px);
    }

    .kalai-modal__dialog {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .kalai-modal__close {
        top: max(10px, env(safe-area-inset-top));
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .kalai-modal__hero {
        grid-template-columns: 46px 1fr;
        gap: 10px;
        padding: calc(12px + env(safe-area-inset-top)) 58px 12px 12px;
        flex: 0 0 auto;
    }

    .kalai-modal__orb {
        width: 46px;
        height: 46px;
    }

    .kalai-modal__orb img {
        width: 34px;
        height: 34px;
    }

    .kalai-modal__eyebrow {
        margin-bottom: 4px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    .kalai-modal__hero h3 {
        margin-bottom: 4px;
        font-size: 20px;
    }

    .kalai-modal__hero p {
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .kalai-chat {
        flex: 1 1 auto;
        min-height: 0;
        padding: 12px 12px 8px;
        gap: 10px;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .kalai-message__bubble {
        max-width: 92%;
        padding: 11px 12px;
        font-size: 13px;
        line-height: 1.42;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .kalai-suggestions {
        flex: 0 0 auto;
        padding: 6px 12px 10px;
        gap: 7px;
        scrollbar-width: none;
    }

    .kalai-suggestions::-webkit-scrollbar {
        display: none;
    }

    .kalai-suggestions button {
        padding: 8px 10px;
        font-size: 11px;
    }

    .kalai-form {
        flex: 0 0 auto;
        grid-template-columns: 1fr 46px;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(8, 8, 8, .96);
    }

    .kalai-form input {
        height: 46px;
        font-size: 16px;
        padding: 0 14px;
    }

    .kalai-form button {
        width: 46px;
        height: 46px;
    }

    .kalai-modal__note {
        display: none;
    }

    .kalai-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 7px;
    }

    .kalai-action-btn {
        width: 100%;
        min-height: 40px;
        padding: 9px 10px;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .kalai-modal__hero {
        grid-template-columns: 40px 1fr;
        padding-right: 54px;
    }

    .kalai-modal__orb {
        width: 40px;
        height: 40px;
    }

    .kalai-modal__orb img {
        width: 30px;
        height: 30px;
    }

    .kalai-modal__hero h3 {
        font-size: 18px;
    }

    .kalai-modal__hero p {
        font-size: 11px;
    }

    .kalai-message__bubble {
        max-width: 95%;
        font-size: 12.5px;
    }
}

/* =========================================================
   AJUSTE FINAL: ALINEACIÓN UNIFORME DE TARJETAS DE PRODUCTO
   Reserva el mismo espacio para nombres de 1, 2 o 3 líneas.
========================================================= */
.blason-gifts__slider {
    align-items: stretch;
}

.blason-gifts__card {
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 100% !important;
}

.blason-gifts__image {
    flex: 0 0 300px;
    height: 300px;
    margin-bottom: 0;
}

.blason-gifts__info {
    flex: 0 0 auto;
    padding: 16px 20px 0;
}

.blason-gifts__info h3 {
    display: -webkit-box;
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    margin: 0;
    overflow: hidden;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blason-gifts__title-link {
    display: block;
}

.blason-gifts__bottom {
    margin-top: auto !important;
    min-height: 72px;
    padding: 12px 20px 12px;
    align-items: flex-end;
}

.blason-gifts__price {
    display: flex;
    min-height: 40px;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .blason-gifts__image {
        flex-basis: 230px;
        height: 230px;
    }

    .blason-gifts__info h3 {
        min-height: calc(1.35em * 3);
        max-height: calc(1.35em * 3);
    }

    .blason-gifts__bottom {
        min-height: 66px;
    }
}


/* =========================================================
   AJUSTE FINAL: BOTÓN + MÁS GRANDE Y COLOR DEL MENÚ
   Solo para la sección de productos del inicio.
========================================================= */
.blason-gifts__plus {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  background: #8b7054 !important;
  color: #ffffff !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(75, 45, 28, 0.22) !important;
}

.blason-gifts__card:hover .blason-gifts__plus,
.blason-gifts__plus:hover,
.blason-gifts__plus.is-open {
  background: #8b7054 !important;
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .blason-gifts__plus {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 28px !important;
  }
}


/* =========================================================
   AJUSTE INICIO: FLECHAS DE PRODUCTOS + ESPACIADO NOSOTROS
========================================================= */
.blason-gifts__arrow {
  pointer-events: auto !important;
  z-index: 50 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.blason-gifts__arrow:disabled {
  opacity: 1 !important;
  cursor: pointer !important;
}

@media (min-width: 1101px) {
  .kk-nosotros-copy {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .kk-nosotros-copy {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

/* Corrección definitiva de interacción de flechas en productos de inicio */
.blason-gifts__carousel > .blason-gifts__arrow {
  pointer-events: auto !important;
  z-index: 999 !important;
  touch-action: manipulation;
}
.blason-gifts__carousel > .blason-gifts__arrow i {
  pointer-events: none;
}


/* Corrección real del carrusel: el elemento desplazable es el contenedor wrap. */
.blason-gifts__wrap {
  scroll-behavior: smooth !important;
  overscroll-behavior-x: contain;
}
.blason-gifts__slider {
  min-width: max-content;
}
