:root {
    --ink: #fff7eb;
    --brown: #5d2217;
    --orange: #f39a32;
    --gold: #ffc55c;
    --cream: #fff7eb;
    --paper: #211010;
    --borravino: #3a0d15;
    --borravino-deep: #19070b;
    --gourmet-black: #080605;
    --card-cream: #fff8ee;
    --green: #218838;
    --muted: #d9bfb0;
    --line: rgba(255, 247, 235, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Poppins", Arial, sans-serif;
    background:
        linear-gradient(145deg, rgba(255, 197, 92, 0.06) 0%, transparent 34%),
        linear-gradient(35deg, var(--gourmet-black) 0%, var(--borravino-deep) 32%, var(--borravino) 68%, #120407 100%);
    color: var(--ink);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 14px clamp(18px, 5vw, 70px);
    background: rgba(12, 6, 5, 0.82);
    border-bottom: 1px solid rgba(255, 197, 92, 0.18);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(12, 6, 5, 0.94);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.brand img {
    width: 142px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 36px);
    font-size: 0.94rem;
    font-weight: 700;
}

.main-nav a,
.text-link,
.site-footer a {
    text-decoration: none;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
    color: var(--gold);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.header-cta,
.btn-primary {
    color: #1e130d;
    background: var(--gold);
    box-shadow: 0 14px 34px rgba(243, 154, 50, 0.32);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.nav-toggle {
    display: none;
}

.hero-slider {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #1c1009;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 4500ms ease;
}

.hero-slide.is-active > img {
    transform: scale(1);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 9, 4, 0.86) 0%, rgba(20, 9, 4, 0.58) 42%, rgba(20, 9, 4, 0.12) 100%),
        linear-gradient(0deg, rgba(20, 9, 4, 0.34), rgba(20, 9, 4, 0));
}

.hero-shade-warm {
    background:
        radial-gradient(circle at 75% 40%, rgba(255, 197, 92, 0.22), transparent 32%),
        linear-gradient(90deg, rgba(35, 18, 9, 0.9) 0%, rgba(73, 34, 14, 0.68) 38%, rgba(35, 18, 9, 0.18) 70%, rgba(35, 18, 9, 0.04) 100%);
}

.hero-shade-green {
    background:
        linear-gradient(90deg, rgba(11, 39, 24, 0.9) 0%, rgba(11, 39, 24, 0.66) 48%, rgba(11, 39, 24, 0.16) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
}

.hero-content {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(760px, calc(100% - 36px));
    padding: 120px 0 110px clamp(22px, 6vw, 86px);
    color: #fff;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > h2,
.hero-content > .hero-hook,
.hero-content > .hero-copy,
.hero-content > .hero-actions {
    opacity: 0;
}

.hero-slide.is-active .hero-content > .eyebrow,
.hero-slide.is-active .hero-content > h1,
.hero-slide.is-active .hero-content > h2,
.hero-slide.is-active .hero-content > .hero-hook,
.hero-slide.is-active .hero-content > .hero-copy,
.hero-slide.is-active .hero-content > .hero-actions {
    animation: hero-text-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .hero-content > .eyebrow {
    animation-delay: 120ms;
}

.hero-slide.is-active .hero-content > h1,
.hero-slide.is-active .hero-content > h2 {
    animation-delay: 240ms;
}

.hero-slide.is-active .hero-content > .hero-hook {
    animation-delay: 360ms;
}

.hero-slide.is-active .hero-content > .hero-copy {
    animation-delay: 450ms;
}

.hero-slide.is-active .hero-content > .hero-actions {
    animation-delay: 570ms;
}

@keyframes hero-text-in {
    from {
        opacity: 0;
        transform: translate3d(-24px, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--orange);
}

.hero-content h1,
.hero-content h2 {
    margin: 0;
    max-width: 690px;
    font-size: clamp(3.8rem, 10vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: 0;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.hero-content h2 {
    font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-hook {
    max-width: 610px;
    margin: 22px 0 0;
    color: var(--gold);
    font-size: clamp(1.45rem, 2.6vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    text-wrap: balance;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.hero-copy {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.hero-hook + .hero-copy {
    margin-top: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.slider-controls {
    position: absolute;
    z-index: 4;
    left: clamp(22px, 6vw, 86px);
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 38px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.slider-dots button.is-active {
    background: var(--gold);
}

.intro-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 197, 92, 0.18);
}

.intro-band div {
    padding: 30px clamp(18px, 4vw, 48px);
    background: rgba(20, 7, 10, 0.92);
}

.intro-band strong,
.intro-band span {
    display: block;
}

.intro-band strong {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.intro-band span {
    margin-top: 4px;
    color: var(--muted);
}

.section {
    padding: clamp(68px, 10vw, 120px) clamp(18px, 5vw, 78px);
}

.section-split {
    background:
        linear-gradient(135deg, rgba(255, 197, 92, 0.08), transparent 38%),
        rgba(58, 13, 21, 0.44);
}

.section-split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(42px, 7vw, 92px);
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.story-copy h2,
.locator h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(2.1rem, 4.8vw, 4.8rem);
    line-height: 1;
    letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.story-copy p:not(.eyebrow),
.locator p:not(.eyebrow) {
    margin: 24px 0 0;
    color: rgba(255, 247, 235, 0.76);
    font-size: 1.04rem;
    line-height: 1.75;
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--gold);
    font-weight: 800;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-card {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.image-card-main {
    width: 88%;
    height: 520px;
    object-fit: cover;
}

.image-card-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(260px, 38%);
    padding: 22px;
    background: var(--card-cream);
    object-fit: contain;
}

.section-heading {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 42px;
}

.flavors-section {
    background:
        linear-gradient(180deg, rgba(8, 6, 5, 0.22), rgba(58, 13, 21, 0.72)),
        var(--borravino-deep);
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.flavor-card {
    min-height: 430px;
    padding: 22px 18px 20px;
    border: 1px solid rgba(255, 197, 92, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, var(--card-cream) 100%);
    color: #2a1710;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.flavor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 154, 50, 0.45);
    box-shadow: 0 18px 42px rgba(36, 20, 11, 0.13);
}

.flavor-card img {
    width: 100%;
    height: 275px;
    object-fit: contain;
}

.flavor-card span {
    display: block;
    margin-top: 18px;
    color: var(--brown);
    font-size: 1.05rem;
    font-weight: 800;
}

.flavor-card p {
    margin: 8px 0 0;
    color: #80685a;
    font-size: 0.9rem;
    line-height: 1.45;
}

html.product-modal-open,
body.product-modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 100100;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.product-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 3, 0.86);
    backdrop-filter: blur(12px);
}

.product-modal-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    width: min(1120px, 100%);
    height: min(880px, calc(100svh - 48px));
    max-height: calc(100svh - 48px);
    overflow: hidden;
    border: 1px solid rgba(255, 197, 92, 0.36);
    border-radius: 8px;
    background: #12090a;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
    transform: translateY(18px) scale(0.985);
    transition: transform 220ms ease;
}

.product-modal.is-open .product-modal-dialog {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 197, 92, 0.38);
    border-radius: 50%;
    background: rgba(8, 6, 5, 0.88);
    color: var(--cream);
    cursor: pointer;
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-modal-close:hover {
    background: var(--gold);
    color: #25140e;
    transform: rotate(4deg);
}

.product-modal-close:focus-visible,
.product-modal-fallback:focus-visible,
.flavor-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.product-modal-visual {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    overflow: hidden;
    padding: 82px 42px 48px;
    border-right: 1px solid rgba(255, 197, 92, 0.22);
    background:
        linear-gradient(148deg, rgba(243, 154, 50, 0.18), transparent 38%),
        linear-gradient(24deg, #260910 0%, #4b101b 58%, #16080b 100%);
}

.product-modal-visual::after {
    position: absolute;
    right: -18%;
    bottom: -16%;
    width: 78%;
    height: 40%;
    border-top: 1px solid rgba(255, 197, 92, 0.25);
    content: "";
    transform: rotate(-12deg);
}

.product-modal-stamp {
    position: absolute;
    top: 30px;
    left: 32px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-modal-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    max-height: 510px;
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.42));
}

.product-modal-content {
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    padding: 62px clamp(28px, 4vw, 58px) 46px;
    scrollbar-color: rgba(255, 197, 92, 0.45) transparent;
}

.product-modal-content .eyebrow {
    color: var(--orange);
}

.product-modal-content h2 {
    max-width: calc(100% - 46px);
    margin: 8px 0 14px;
    color: var(--cream);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.product-modal-description {
    margin: 0;
    color: rgba(255, 247, 235, 0.76);
    font-size: 1rem;
    line-height: 1.7;
}

.product-modal-meta {
    display: flex;
    gap: 44px;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-modal-meta div {
    display: grid;
    gap: 4px;
}

.product-modal-meta dt {
    color: rgba(255, 247, 235, 0.56);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-modal-meta dd {
    margin: 0;
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
}

.product-modal-copy h3,
.product-modal-nutrition h3 {
    margin: 0 0 10px;
    color: var(--cream);
    font-size: 1rem;
}

.product-modal-copy > p {
    margin: 0;
    color: rgba(255, 247, 235, 0.72);
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-modal-copy .product-modal-allergen {
    margin-top: 14px;
    padding-left: 14px;
    border-left: 3px solid var(--orange);
    color: var(--cream);
    font-weight: 700;
}

.product-modal-nutrition {
    margin-top: 30px;
}

.product-modal-nutrition h3 span {
    color: rgba(255, 247, 235, 0.5);
    font-size: 0.78rem;
    font-weight: 500;
}

.product-table-scroll {
    overflow-x: auto;
    border: 1px solid rgba(255, 197, 92, 0.18);
    border-radius: 6px;
}

.product-table-scroll table {
    width: 100%;
    min-width: 470px;
    border-collapse: collapse;
    color: rgba(255, 247, 235, 0.8);
    font-size: 0.82rem;
}

.product-table-scroll th,
.product-table-scroll td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255, 247, 235, 0.08);
    text-align: left;
}

.product-table-scroll th {
    background: var(--orange);
    color: #26150f;
    font-size: 0.75rem;
    font-weight: 800;
}

.product-table-scroll tbody tr:last-child td {
    border-bottom: 0;
}

.product-table-scroll tbody tr:nth-child(even) {
    background: rgba(255, 247, 235, 0.035);
}

.product-modal-fallback {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.product-modal-fallback:hover {
    color: var(--orange);
}

.story-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(38px, 7vw, 84px);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 197, 92, 0.1), transparent 34%),
        #090706;
    color: #fff;
}

.story-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.story-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 247, 235, 0.08);
    border: 1px solid rgba(255, 197, 92, 0.12);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
}

.story-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.coverage-banner,
.retailer-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    scroll-margin-top: 90px;
    color: #fff;
}

.coverage-banner {
    min-height: 640px;
}

.retailer-banner {
    min-height: 540px;
}

.banner-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverage-banner .banner-background {
    object-position: left center;
}

.retailer-banner .banner-background {
    object-position: left center;
}

.coverage-banner::after,
.retailer-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.coverage-banner::after {
    background:
        linear-gradient(90deg, rgba(18, 5, 7, 0.05) 0%, rgba(18, 5, 7, 0.26) 42%, rgba(8, 6, 5, 0.88) 57%, rgba(8, 6, 5, 0.96) 100%);
}

.retailer-banner::after {
    background:
        linear-gradient(90deg, rgba(8, 6, 5, 0.06) 0%, rgba(8, 6, 5, 0.22) 42%, rgba(8, 6, 5, 0.86) 56%, rgba(8, 6, 5, 0.96) 100%);
}

.coverage-inner,
.retailer-inner {
    width: min(1440px, 100%);
    min-height: inherit;
    margin: 0 auto;
    padding: clamp(62px, 7vw, 96px) clamp(18px, 5vw, 78px);
}

.coverage-inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
}

.retailer-inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(560px, 1.12fr);
    align-items: center;
}

.coverage-content {
    grid-column: 2;
}

.retailer-content {
    grid-column: 2;
    max-width: 670px;
}

.coverage-content h2,
.retailer-content h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.coverage-content > p:not(.eyebrow),
.retailer-content > p:not(.eyebrow) {
    max-width: 670px;
    margin: 20px 0 0;
    color: rgba(255, 247, 235, 0.78);
    font-size: 1.02rem;
    line-height: 1.65;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(10, auto);
    grid-auto-flow: column;
    gap: 10px 30px;
    margin: 28px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 197, 92, 0.24);
    list-style: none;
}

.coverage-list li {
    position: relative;
    min-width: 0;
    padding-left: 20px;
    color: var(--cream);
    font-size: clamp(0.9rem, 1.35vw, 1.08rem);
    font-weight: 700;
    line-height: 1.35;
}

.coverage-list li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 197, 92, 0.1);
}

.retailer-content > p:not(.eyebrow) {
    max-width: 590px;
}

.btn-whatsapp {
    gap: 10px;
    margin-top: 30px;
    color: #06160c;
    background: #25d366;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
    background: #4ae27f;
}

.btn-whatsapp img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.instagram-section {
    background:
        linear-gradient(180deg, rgba(58, 13, 21, 0.72), rgba(8, 6, 5, 0.9)),
        var(--borravino);
}

.instagram-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 197, 92, 0.18);
    border-radius: 8px;
    background: #f6f6f6;
}

.instagram-frame iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
}

.locator {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.locator > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locator::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 41, 25, 0.86), rgba(12, 41, 25, 0.45), rgba(12, 41, 25, 0.12));
}

.locator-content {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100% - 36px));
    margin-left: clamp(22px, 6vw, 86px);
}

.locator p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px clamp(18px, 5vw, 78px);
    background: #090706;
    color: rgba(255, 247, 235, 0.68);
    border-top: 1px solid rgba(255, 197, 92, 0.14);
}

.site-footer img {
    width: 120px;
}

.site-footer p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--orange);
    font-weight: 700;
}

.aviso-cookies {
    position: fixed;
    left: clamp(14px, 3vw, 28px);
    bottom: clamp(14px, 3vw, 28px);
    z-index: 120;
    display: none;
    width: min(360px, calc(100vw - 28px));
    padding: 48px 22px 20px;
    border: 1px solid rgba(255, 197, 92, 0.22);
    border-radius: 8px;
    background: rgba(17, 7, 8, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    color: var(--ink);
    text-align: left;
    backdrop-filter: blur(16px);
}

.aviso-cookies.activo {
    display: block;
}

.aviso-cookies .galleta {
    position: absolute;
    top: -34px;
    left: 20px;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    background: var(--card-cream);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.aviso-cookies .titulo {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 1.12rem;
    line-height: 1.2;
}

.aviso-cookies .parrafo {
    margin: 0 0 16px;
    color: rgba(255, 247, 235, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.aviso-cookies .boton {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.aviso-cookies .boton:hover {
    background: #d97f1f;
    transform: translateY(-1px);
}

.aviso-cookies .enlace {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.aviso-cookies .enlace:hover {
    color: var(--orange);
}

.fondo-aviso-cookies,
.fondo-aviso-cookies.activo {
    display: none;
}

@media (max-width: 1180px) {
    .flavor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .brand img {
        width: 118px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .site-header.nav-open .main-nav {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(17, 7, 8, 0.98);
        box-shadow: var(--shadow);
    }

    .site-header.nav-open .main-nav a {
        padding: 14px;
    }

    .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border: 1px solid rgba(255, 197, 92, 0.22);
        border-radius: 50%;
        background: rgba(255, 247, 235, 0.08);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        background: var(--gold);
    }
}

@media (max-width: 860px) {

    .hero-content {
        padding: 112px 18px 108px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(3.1rem, 17vw, 5rem);
    }

    .hero-content h2 {
        max-width: 9ch;
    }

    .hero-hook {
        max-width: 16ch;
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .hero-copy {
        max-width: 34rem;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-slide > img {
        object-position: 68% center;
    }

    .slider-controls {
        left: 18px;
        bottom: 24px;
    }

    .intro-band,
    .section-split,
    .section-heading,
    .story-panel,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .image-stack {
        min-height: auto;
    }

    .image-card-main {
        width: 100%;
        height: 340px;
    }

    .image-card-small {
        position: relative;
        width: 62%;
        margin: -80px 18px 0 auto;
    }

    .flavor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-media img {
        height: auto;
    }

    .coverage-inner,
    .retailer-inner {
        grid-template-columns: minmax(0, 0.48fr) minmax(0, 1.52fr);
    }

    .product-modal {
        padding: 14px;
    }

    .product-modal-dialog {
        grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
        height: min(800px, calc(100svh - 28px));
        max-height: calc(100svh - 28px);
    }

    .product-modal-visual {
        min-height: 0;
        padding: 76px 24px 40px;
    }

    .product-modal-content {
        padding: 58px 26px 38px;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        display: grid;
    }

    .btn,
    .header-cta {
        width: 100%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-dots button {
        width: 24px;
    }

    .flavor-grid,
    .story-media {
        grid-template-columns: 1fr;
    }

    .coverage-banner {
        min-height: auto;
    }

    .retailer-banner {
        min-height: 620px;
    }

    .coverage-banner .banner-background {
        object-position: 22% center;
    }

    .retailer-banner .banner-background {
        object-position: 24% center;
    }

    .coverage-banner::after {
        background: rgba(8, 6, 5, 0.84);
    }

    .retailer-banner::after {
        background: rgba(8, 6, 5, 0.82);
    }

    .coverage-inner {
        display: block;
        min-height: auto;
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .coverage-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 9px;
    }

    .coverage-list li {
        font-size: 0.98rem;
    }

    .coverage-content h2,
    .retailer-content h2 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    .retailer-inner {
        display: block;
        min-height: 620px;
        padding-top: 66px;
    }

    .retailer-content {
        max-width: none;
    }

    .flavor-card {
        min-height: 390px;
    }

    .flavor-card img {
        height: 250px;
    }

    .product-modal {
        align-items: end;
        padding: 8px;
    }

    .product-modal-dialog {
        grid-template-columns: 1fr;
        height: auto;
        max-height: calc(100svh - 16px);
        overflow-y: auto;
    }

    .product-modal-close {
        position: sticky;
        top: 12px;
        grid-row: 1;
        justify-self: end;
        margin: 12px 12px -56px 0;
    }

    .product-modal-visual {
        min-height: 270px;
        padding: 52px 28px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 197, 92, 0.22);
    }

    .product-modal-stamp {
        top: 24px;
        left: 24px;
    }

    .product-modal-visual img {
        width: min(100%, 190px);
        max-height: 230px;
    }

    .product-modal-content {
        overflow: visible;
        padding: 32px 20px 36px;
    }

    .product-modal-content h2 {
        max-width: none;
        font-size: 2.35rem;
    }

    .product-modal-meta {
        gap: 30px;
    }

    .locator {
        min-height: 560px;
    }

    .locator-content {
        margin: 0 18px;
    }

    .aviso-cookies {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 42px 16px 16px;
    }

    .aviso-cookies .galleta {
        width: 58px;
        height: 58px;
        top: -26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide > img {
        transition: none;
    }

    .hero-slide.is-active .hero-content > .eyebrow,
    .hero-slide.is-active .hero-content > h1,
    .hero-slide.is-active .hero-content > h2,
    .hero-slide.is-active .hero-content > .hero-hook,
    .hero-slide.is-active .hero-content > .hero-copy,
    .hero-slide.is-active .hero-content > .hero-actions {
        opacity: 1;
        animation: none;
        transform: none;
    }
}
