﻿/* ============================================================
   SULT — Premium Digital Menu Styles
   Palette: Light Beige · Burgundy · Charcoal
   ============================================================ */

:root {
    --beige-50: #FAF7F4;
    --beige-100: #F5F0EB;
    --beige-200: #EDE6DD;
    --beige-300: #DDD4C8;
    --surface-page: #FAF7F4;
    --surface-section: #F5F0EB;
    --surface-card: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    --burgundy: #722F37;
    --burgundy-light: #8B3A44;
    --burgundy-dark: #5A252C;
    --burgundy-muted: rgba(114, 47, 55, 0.12);
    --charcoal: #2C2C2C;
    --charcoal-soft: #4A4A4A;
    --charcoal-muted: #7A7A7A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 8px 32px rgba(44, 44, 44, 0.1);
    --gold: #C4A265;
    --gold-light: #E8D5B0;
    --gold-muted: rgba(196, 162, 101, 0.15);
    --shadow-xl: 0 32px 80px rgba(44, 28, 28, 0.18);
    --shadow-glow: 0 0 0 1px rgba(196, 162, 101, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-display: 'Amiri', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Tajawal', system-ui, sans-serif;
    --header-h: 88px;
    --promo-h: 0px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --accent: var(--burgundy);
    --scrollbar-size: 10px;
    --scrollbar-track: var(--beige-100);
    --scrollbar-thumb: var(--burgundy-light);
    --scrollbar-thumb-hover: var(--burgundy);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: clip;
    max-width: 100%;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
    border-inline-start: 1px solid var(--beige-200);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--scrollbar-thumb) 55%, var(--burgundy) 100%);
    border-radius: var(--radius-full);
    border: 2px solid var(--scrollbar-track);
    min-height: 56px;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold) 0%, var(--scrollbar-thumb-hover) 100%);
}

html::-webkit-scrollbar-corner {
    background: var(--scrollbar-track);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--surface-page);
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: clip;
    max-width: 100%;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(1200px, 92vw); margin: 0 auto; }

/* ---- Loader ---- */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--surface-page);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader__inner { text-align: center; }
.loader__cup {
    width: 48px; height: 48px; margin: 0 auto 16px;
    border: 2px solid var(--burgundy-muted);
    border-top-color: var(--burgundy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader__text { font-size: 0.875rem; color: var(--charcoal-muted); letter-spacing: 0.06em; }

.load-error {
    padding: 20px 24px;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: var(--radius-md);
    color: var(--burgundy-dark);
    text-align: center;
    line-height: 1.7;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: transparent;
    border-bottom: none;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: transparent !important;
}

body.is-ready .site-header {
    animation: navSlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
    pointer-events: auto;
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

body.is-ready main,
body.is-ready .site-footer {
    opacity: 1;
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready main {
    animation: pageEnter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

@keyframes pageEnter {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.is-ready .site-footer {
    transition-delay: 0.15s;
}

.site-header__wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.site-header__dock {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 58px;
    padding: 5px 8px 5px 10px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.96);
    border: 1px solid rgba(196, 162, 101, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 10px 28px rgba(114, 47, 55, 0.08);
    transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled .site-header__dock {
    background: rgba(255, 252, 248, 0.98);
    box-shadow:
        0 0 0 1px rgba(196, 162, 101, 0.2),
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 14px 32px rgba(44, 28, 28, 0.1);
}

.site-header__rail {
    width: 1px;
    height: 28px;
    flex-shrink: 0;
    background: linear-gradient(180deg, transparent, rgba(196, 162, 101, 0.55), transparent);
    opacity: 0.85;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
    min-width: 0;
    max-width: min(30vw, 220px);
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
    transition: color var(--transition), transform var(--transition);
}

.site-logo:hover {
    color: var(--burgundy);
    transform: translateY(-1px);
}

.site-logo__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(0.9375rem, 3vw, 1.0625rem);
}

.site-logo__icon {
    width: 34px;
    height: 34px;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(114, 47, 55, 0.2));
}

.site-logo__icon svg { width: 100%; height: 100%; }

.site-logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    padding: 0 4px;
}

.site-nav__bar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

@media (max-width: 900px) {
    .site-nav__bar {
        overflow-x: auto;
    }
}

@media (max-width: 1320px) {
    .site-nav__link {
        padding: 9px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1280px) {
    .site-nav__index {
        display: none;
    }

    .site-nav__link {
        padding: 9px 11px;
        font-size: 0.75rem;
    }
}

.site-nav__bar::-webkit-scrollbar { display: none; }

.site-nav__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--charcoal-soft);
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid transparent;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        filter 0.22s ease;
}

.site-nav__index {
    display: none;
}

.site-nav__label {
    line-height: 1.2;
    transition: transform 0.22s ease;
}

@media (hover: hover) {
    .site-nav__link:hover:not(.is-active) {
        color: var(--burgundy);
        background: linear-gradient(135deg, rgba(114, 47, 55, 0.07) 0%, rgba(196, 162, 101, 0.12) 100%);
        border-color: rgba(196, 162, 101, 0.28);
        box-shadow: 0 2px 8px rgba(44, 28, 28, 0.08);
    }

    .site-nav__link.is-active:hover {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }
}

.site-nav__link:focus:not(:focus-visible) {
    outline: none;
}

.site-nav__link:focus-visible {
    outline: 2px solid rgba(196, 162, 101, 0.55);
    outline-offset: 2px;
}

.site-nav__link.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 48%, var(--burgundy-dark) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    text-shadow: none;
}

.site-nav__link.is-active .site-nav__index {
    color: rgba(255, 255, 255, 0.82);
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(196, 162, 101, 0.25);
    background: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.menu-toggle:hover {
    background: var(--burgundy-muted);
    border-color: rgba(114, 47, 55, 0.18);
    transform: translateY(-1px);
}

.menu-toggle.is-active {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(114, 47, 55, 0.32);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.is-active span {
    background: var(--white);
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header__dock,
    .site-logo,
    .site-nav,
    .site-nav__bar,
    .site-nav__link,
    .header-tools,
    .header-tools__cluster,
    .menu-toggle,
    .mobile-nav__panel,
    .mobile-nav__link,
    .mobile-nav__mesh {
        transition: none !important;
        animation: none !important;
    }
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
}

.mobile-nav.is-open {
    pointer-events: auto;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(22, 16, 16, 0.42);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    backdrop-filter: blur(10px) saturate(1.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.mobile-nav.is-open .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 162, 101, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 80% 10%, rgba(114, 47, 55, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 50% 80%, rgba(114, 47, 55, 0.1) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.mobile-nav.is-open .mobile-nav__mesh {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    inset: calc(var(--header-h) + 12px) 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

body.has-promo .mobile-nav__panel {
    inset: calc(var(--header-h) + var(--promo-h) + 12px) 16px 20px;
}

.mobile-nav__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 8px;
}

.mobile-nav__eyebrow {
    font-family: 'Outfit', var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.mobile-nav__title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.25;
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    flex: 1;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 247, 244, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(196, 162, 101, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 64px rgba(44, 28, 28, 0.14);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.mobile-nav__inner::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy-light), var(--gold));
    background-size: 200% 100%;
    animation: mobileNavBeam 4s linear infinite;
}

@keyframes mobileNavBeam {
    to { background-position: 200% 0; }
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--charcoal-soft);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(10px);
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        opacity 0.4s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav__link-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.mobile-nav__index {
    font-family: 'Outfit', var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--gold);
    flex-shrink: 0;
}

.mobile-nav__label {
    line-height: 1.35;
}

.mobile-nav__signal {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige-300);
    box-shadow: 0 0 0 0 rgba(114, 47, 55, 0);
    flex-shrink: 0;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mobile-nav.is-open .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.09s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.13s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.17s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(5) { transition-delay: 0.21s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(6) { transition-delay: 0.25s; }

.mobile-nav__link:hover:not(.is-active) {
    color: var(--burgundy);
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.07) 0%, rgba(196, 162, 101, 0.1) 100%);
    border-color: rgba(196, 162, 101, 0.25);
}

.mobile-nav__link:hover:not(.is-active) .mobile-nav__signal {
    background: var(--gold);
    transform: scale(1.1);
}

.mobile-nav__link.is-active {
    color: var(--burgundy);
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.11) 0%, rgba(196, 162, 101, 0.14) 100%);
    border-color: rgba(196, 162, 101, 0.35);
}

.mobile-nav__link.is-active .mobile-nav__signal {
    background: var(--burgundy);
    box-shadow: 0 0 0 5px rgba(114, 47, 55, 0.12);
    transform: scale(1.2);
}

.mobile-nav__progress {
    height: 3px;
    border-radius: 999px;
    background: rgba(114, 47, 55, 0.1);
    overflow: hidden;
}

.mobile-nav__progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    box-shadow: 0 0 16px rgba(196, 162, 101, 0.45);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.nav-open {
    overflow: hidden;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: var(--transition);
}
.btn--primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(114, 47, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(196, 162, 101, 0.25);
}
.btn--primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(114, 47, 55, 0.35);
}
.btn--ghost {
    border: 1.5px solid var(--burgundy);
    color: var(--burgundy);
    padding: 10px 24px;
}
.btn--ghost:hover { background: var(--burgundy-muted); }

/* ---- Hero ---- */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    padding: calc(var(--header-h) + var(--promo-h) + 40px) 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
    background: linear-gradient(168deg, var(--surface-page) 0%, var(--surface-section) 42%, var(--surface-page) 100%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero__glow--1 {
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(114, 47, 55, 0.09) 0%, transparent 68%);
}

.hero__glow--2 {
    width: min(420px, 60vw);
    height: min(420px, 60vw);
    bottom: 6%;
    left: -10%;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.14) 0%, transparent 70%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1200px, 92vw);
}

.hero__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__cta-row {
    opacity: 0;
    transform: translateY(12px);
}

body.is-ready .hero__eyebrow {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}
body.is-ready .hero__title {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.64s both;
}
body.is-ready .hero__subtitle {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.76s both;
}
body.is-ready .hero__cta-row {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.88s both;
}

body.is-ready .hero-reveal {
    animation: heroFadeUpGlass 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

body.is-ready .hero__rating-pill:not([hidden]) {
    animation: heroFadeUpGlass 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.18s forwards;
}

.hero-reveal,
.hero__rating-pill:not([hidden]) {
    opacity: 0;
    transform: translateY(18px);
}

@keyframes heroFadeUpGlass {
    to { opacity: 1; transform: translateY(0); }
}

body.is-ready .social-float:not([hidden]) {
    animation: socialFloatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes promoDropFromNav {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes socialFloatIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero__grain,
.hero__orb { display: none; }

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(114, 47, 55, 0.06);
    border: 1px solid rgba(196, 162, 101, 0.28);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6.5vw, 4.5rem);
    font-weight: 700; line-height: 1.08;
    margin-bottom: 16px;
    color: var(--burgundy-dark);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--charcoal-muted);
    max-width: 520px;
    margin: 0 auto 22px;
    font-weight: 400;
    line-height: 1.65;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 22px;
    max-width: 100%;
}

.hero-fact {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.92);
    border: 1px solid rgba(196, 162, 101, 0.22);
    box-shadow: 0 2px 10px rgba(114, 47, 55, 0.05);
}

.hero-fact__value {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.hero-fact__label {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hero__cta { margin-bottom: 0; }

.hero__cta-secondary {
    padding: 10px 22px;
}
.hero__scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--charcoal-muted);
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
        transition:
            opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    /* blur ثابت — حركة transform فقط بدون opacity */
    .glass-panel.reveal {
        opacity: 1;
    }
    .reveal-stagger > * {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
        transition:
            opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-stagger.is-visible > * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
    .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
    .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.12s; }
    .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.16s; }
    .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.20s; }
    .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.24s; }
    .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.28s; }
    .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.32s; }
    .reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.36s; }
    .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.40s; }
    .reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 0.44s; }
    .reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 0.48s; }
    .reveal-stagger.is-visible > *:nth-child(n+13) { transition-delay: 0.52s; }

    .reveal-item {
        opacity: 0;
        transform: translate3d(0, 36px, 0);
        transition:
            opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: calc(var(--reveal-i, 0) * 0.055s);
    }
    .reveal-item.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .product-card.reveal-item,
    .featured-card.reveal-item,
    .moment-card.reveal-item {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
        transition:
            opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.45s ease,
            border-color 0.35s ease;
        transition-delay: calc(var(--reveal-i, 0) * 0.07s);
    }
    .product-card.reveal-item.is-visible,
    .featured-card.reveal-item.is-visible,
    .moment-card.reveal-item.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .product-card.reveal-item.is-visible:hover,
    .featured-card.reveal-item.is-visible:hover,
    .moment-card.reveal-item.is-visible:hover {
        transform: translateY(-8px);
    }
}

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header__label {
    display: block; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--burgundy); margin-bottom: 12px;
}
.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--charcoal);
}
.section-header__title::after {
    content: '';
    display: block; width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    margin-top: 16px;
}
.section-header--center .section-header__title::after {
    margin-right: auto; margin-left: auto;
}

/* ---- Story ---- */
.story { background: var(--surface-section); }
.story__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start;
}
.story__text p {
    font-size: 1.0625rem; line-height: 1.85;
    color: var(--charcoal-soft); margin-bottom: 1.25em;
}
.story__text p:last-child { margin-bottom: 0; }
.story__achievements { display: flex; flex-direction: column; gap: 16px; }
.achievement-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 100%);
    border-radius: 16px;
    border: 1px solid rgba(196, 162, 101, 0.28);
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.1);
    border-color: rgba(196, 162, 101, 0.45);
}
.achievement-card__icon {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--burgundy-muted);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
}
.achievement-card__text {
    font-size: 0.9375rem; font-weight: 500;
    color: var(--charcoal); line-height: 1.5;
}

/* ---- Allergy Filter ---- */
.allergy-filter {
    padding: 20px 24px;
    margin-bottom: 32px;
}
.allergy-filter__header {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.8125rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--charcoal-soft); margin-bottom: 16px;
}
.allergy-filter__header svg { color: var(--burgundy); flex-shrink: 0; }
.allergy-filter__clear {
    margin-left: auto; font-size: 0.75rem;
    color: var(--burgundy); text-decoration: underline;
    text-underline-offset: 3px;
}
.allergy-filter__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.allergy-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: var(--radius-full);
    font-size: 0.8125rem; font-weight: 500;
    border: 1px solid rgba(196, 162, 101, 0.3);
    background: rgba(255, 252, 248, 0.85);
    color: var(--charcoal-soft);
    transition: var(--transition);
    min-height: 40px;
    touch-action: manipulation;
}
.allergy-pill__dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
}
.allergy-pill.is-active {
    border-color: var(--burgundy);
    background: var(--burgundy-muted);
    color: var(--burgundy-dark);
}
.allergy-pill:active { transform: scale(0.96); }

/* ---- Category Tabs ---- */
.category-tabs {
    display: flex; gap: 8px;
    overflow-x: auto; padding-bottom: 8px;
    margin-bottom: 40px;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
    flex-shrink: 0;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem; font-weight: 600;
    color: var(--charcoal-muted);
    background: linear-gradient(165deg, #FFFCF8 0%, #F2E9DF 100%);
    border: 1px solid rgba(196, 162, 101, 0.25);
    box-shadow: 0 2px 8px rgba(114, 47, 55, 0.05);
    transition: var(--transition);
    min-height: 44px;
    touch-action: manipulation;
}
.category-tab.is-active {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.28);
}
.category-tab:hover:not(.is-active) {
    background: linear-gradient(165deg, #FFFAF5 0%, #EDE6DD 100%);
    color: var(--charcoal);
    border-color: rgba(196, 162, 101, 0.4);
}

/* ---- Product Cards ---- */
@property --card-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes cardBorderGlow {
    to { --card-border-angle: 360deg; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 10px 28px rgba(114, 47, 55, 0.07);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    isolation: isolate;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    transform: translateX(-115%);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.65) 0%,
        rgba(114, 47, 55, 0.35) 28%,
        rgba(237, 230, 221, 0.95) 52%,
        rgba(196, 162, 101, 0.5) 78%,
        rgba(114, 47, 55, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.product-card > *:not(.product-card__shine):not(.product-card__badge) {
    position: relative;
    z-index: 3;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(114, 47, 55, 0.08),
        0 12px 40px rgba(114, 47, 55, 0.14);
}

.product-card:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.15) 0deg,
        rgba(196, 162, 101, 0.85) 60deg,
        rgba(114, 47, 55, 0.65) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.75) 300deg,
        rgba(196, 162, 101, 0.15) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.product-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.product-card:active { transform: translateY(-3px) scale(0.995); }
.product-card.is-hidden { display: none; }

.product-card--featured {
    background:
        linear-gradient(165deg, #FFFAF5 0%, #F9F0E6 45%, #F3E6D8 100%);
    box-shadow:
        0 2px 4px rgba(114, 47, 55, 0.06),
        0 12px 32px rgba(114, 47, 55, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-card--featured::after {
    opacity: 1;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.95) 0%,
        rgba(114, 47, 55, 0.55) 40%,
        rgba(232, 213, 176, 0.9) 65%,
        rgba(196, 162, 101, 0.85) 100%
    );
}

.product-card--featured:hover::after {
    animation: cardBorderGlow 2.2s linear infinite;
}

.product-card__media {
    position: relative;
    z-index: 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(196, 162, 101, 0.22),
        0 4px 14px rgba(114, 47, 55, 0.08);
}

.product-card__visual {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(196, 162, 101, 0.1) 0%, transparent 55%),
        linear-gradient(165deg, var(--beige-50) 0%, var(--beige-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__visual img { transform: scale(1.06); }

.product-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 16, 0.38);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__view {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.8125rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-card__view { transform: translateY(0); }

.product-card__price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.97) 0%, rgba(247, 240, 232, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--burgundy);
    font-family: var(--font-body);
    box-shadow: 0 2px 12px rgba(114, 47, 55, 0.12);
    border: 1px solid rgba(196, 162, 101, 0.35);
    pointer-events: none;
}

.product-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--burgundy);
    opacity: 0.55;
}

.product-card__placeholder-icon {
    width: 56px;
    height: 56px;
}

.product-card__placeholder-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.1;
    position: absolute;
    bottom: 12px;
    left: 16px;
    color: var(--burgundy);
}

.product-card__body {
    padding: 12px 8px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(196, 162, 101, 0.15);
    margin-top: 4px;
}

.product-card__category {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    margin-bottom: 8px;
    border-radius: var(--radius-full);
    background: rgba(114, 47, 55, 0.07);
    border: 1px solid rgba(114, 47, 55, 0.12);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0;
    text-transform: none;
}

.product-card__name {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.35;
}

.product-card__desc {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.product-card__allergens { display: flex; gap: 5px; flex-wrap: wrap; }

.product-card__allergen-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.product-card__action {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--burgundy-light) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    flex-shrink: 0;
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-card__action {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(114, 47, 55, 0.32);
}

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 48px 28px;
    border-radius: 20px;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: 1px solid rgba(196, 162, 101, 0.28);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.06);
}
.empty-state__icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    color: var(--charcoal-muted); opacity: 0.5;
}
.empty-state p { color: var(--charcoal-muted); margin-bottom: 20px; }

/* ---- Contact ---- */
.contact { background: var(--surface-section); }
.contact__card {
    padding: 48px 40px;
}
.contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 32px;
    margin-top: 36px;
    align-items: stretch;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--beige-50);
    border: 1px solid var(--beige-200);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact__row:hover {
    border-color: rgba(196, 162, 101, 0.45);
    box-shadow: var(--shadow-sm);
}
.contact__row-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-muted);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
}
.contact__row-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--charcoal-muted);
    margin-bottom: 4px;
}
.contact__row-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.6;
    word-break: break-word;
}
.contact__row-value a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact__row-value a:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}
.contact__map-wrap {
    min-height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--beige-200);
    background: var(--beige-50);
    box-shadow: var(--shadow-sm);
}
.contact__map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}
.contact__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 360px;
    padding: 32px;
    text-align: center;
    color: var(--charcoal-muted);
}
.contact__map-placeholder svg { color: var(--gold); opacity: 0.7; }
.contact__map-placeholder p { font-size: 0.875rem; line-height: 1.6; }

@media (max-width: 768px) {
    .contact__card { padding: 32px 24px; }
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact__map-wrap { order: -1; }
    .contact__map-wrap,
    .contact__map,
    .contact__map-placeholder {
        min-height: 260px;
    }
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    padding: 0 0 28px;
    background: linear-gradient(180deg, var(--surface-section) 0%, var(--surface-page) 100%);
    border-top: 1px solid var(--beige-200);
}
.site-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    opacity: 0.85;
}
.site-footer__main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr;
    gap: 40px;
    padding: 48px 0 36px;
}
.site-footer__brand { max-width: 280px; }
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.site-footer__logo-icon {
    width: 36px;
    height: 36px;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-footer__logo-icon svg { width: 100%; height: 100%; }
.site-footer__logo-icon .site-logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.site-footer__logo-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
}
.site-footer__tagline {
    font-size: 0.875rem;
    color: var(--charcoal-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.site-footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-200);
    color: var(--burgundy);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-footer__social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 162, 101, 0.5);
    background: var(--burgundy-muted);
}
.site-footer__social-link--whatsapp { color: var(--burgundy); }
.site-footer__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__nav a {
    font-size: 0.875rem;
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: color 0.2s ease, padding-inline-start 0.2s ease;
}
.site-footer__nav a:hover {
    color: var(--burgundy);
    padding-inline-start: 4px;
}
.site-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.site-footer__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--charcoal-soft);
    line-height: 1.65;
}
.site-footer__list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-200);
    color: var(--gold);
    margin-top: 1px;
}
.site-footer__list a {
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer__list a:hover { color: var(--burgundy); }
.site-footer__muted {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--beige-200);
}
.site-footer__copy {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}
.dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--beige-200);
    background: rgba(255, 255, 255, 0.7);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.dev-credit:hover {
    border-color: rgba(196, 162, 101, 0.45);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.dev-credit__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-muted);
    color: var(--gold);
    flex-shrink: 0;
}
.dev-credit__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
}
.dev-credit__label {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--charcoal-muted);
}
.dev-credit__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--burgundy);
}
.dev-credit:hover .dev-credit__name { text-decoration: underline; }

@media (max-width: 900px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .site-footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 600px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        padding: 36px 0 28px;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .dev-credit { justify-content: center; }
    .dev-credit__text { align-items: center; }
}

/* ---- Modal (Premium) ---- */
.modal {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}
.modal.is-open {
    visibility: visible;
    pointer-events: auto;
}
.modal.is-closing {
    visibility: visible;
    pointer-events: none;
}
.modal__backdrop {
    position: absolute; inset: 0;
    isolation: isolate;
}
.modal__backdrop::before {
    content: '';
    position: absolute; inset: 0;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateZ(0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open:not(.is-closing) .modal__backdrop::before {
    opacity: 1;
    visibility: visible;
}
.modal.is-closing .modal__backdrop::before {
    opacity: 0;
    visibility: hidden;
}
.modal__backdrop::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(20, 16, 16, 0.68);
    opacity: 0;
    transition: opacity 0.32s ease;
}
.modal.is-open:not(.is-closing) .modal__backdrop::after {
    opacity: 1;
}
.modal.is-closing .modal__backdrop::after {
    opacity: 0;
}

.modal__panel {
    position: relative; z-index: 1;
    width: min(920px, 100%);
    max-height: min(88dvh, 680px);
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border-radius: 24px;
    box-shadow:
        0 32px 80px rgba(114, 47, 55, 0.2),
        0 8px 24px rgba(44, 28, 28, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    isolation: isolate;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.modal__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.75) 0%,
        rgba(114, 47, 55, 0.4) 30%,
        rgba(237, 230, 221, 0.95) 55%,
        rgba(196, 162, 101, 0.6) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 6;
}

.modal.is-open:not(.is-closing) .modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.modal.is-closing .modal__panel {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
}

.modal__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    direction: ltr;
    height: min(88dvh, 680px);
    max-height: min(88dvh, 680px);
    overflow: hidden;
    padding: 12px;
    gap: 12px;
}
.modal__layout > * {
    min-height: 0;
    min-width: 0;
    direction: rtl;
}

.modal__body {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 252, 248, 0.72);
    border-radius: 18px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) transparent;
}
.modal__body::-webkit-scrollbar { width: 6px; }
.modal__body::-webkit-scrollbar-track {
    background: transparent;
    margin-block: 8px;
}
.modal__body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-light), var(--burgundy-light));
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 252, 248, 0.6);
}
.modal__body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--burgundy));
}
.modal__close {
    position: absolute; top: 16px; left: 16px; z-index: 5;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--charcoal-muted);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 2px 10px rgba(114, 47, 55, 0.1);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.modal__close:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
    transform: rotate(90deg);
}
.modal__body-inner {
    padding: 44px 32px 32px;
}
.modal__body-inner > * {
    opacity: 0;
    transform: translateY(10px);
}
.modal.is-open .modal__body-inner > * {
    animation: modalFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.modal.is-open .modal__body-inner > *:nth-child(1) { animation-delay: 0.06s; }
.modal.is-open .modal__body-inner > *:nth-child(2) { animation-delay: 0.1s; }
.modal.is-open .modal__body-inner > *:nth-child(3) { animation-delay: 0.14s; }
.modal.is-open .modal__body-inner > *:nth-child(4) { animation-delay: 0.18s; }
.modal.is-open .modal__body-inner > *:nth-child(5) { animation-delay: 0.22s; }
@keyframes modalFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.modal__header { margin-bottom: 18px; }

.modal__header-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.modal__category {
    display: inline-flex;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--burgundy);
    padding: 5px 12px;
    background: rgba(114, 47, 55, 0.08);
    border: 1px solid rgba(114, 47, 55, 0.14);
    border-radius: var(--radius-full);
}

.modal__featured {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
}

.modal__title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--charcoal);
}

.modal__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.modal__price {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.98) 0%, rgba(247, 240, 232, 0.95) 100%);
    border: 1px solid rgba(196, 162, 101, 0.4);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.1);
    line-height: 1;
}

.modal__price-value {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--burgundy);
    font-family: var(--font-body);
}

.modal__price-currency {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal-muted);
}

.modal__calories {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(114, 47, 55, 0.06);
    border: 1px solid rgba(114, 47, 55, 0.1);
    border-radius: var(--radius-full);
    color: var(--burgundy);
}

.modal__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.55), transparent);
    margin-bottom: 18px;
}

.modal__desc {
    font-size: 0.9375rem;
    color: var(--charcoal-soft);
    line-height: 1.85;
    margin-bottom: 22px;
}

.modal__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal__section {
    padding: 14px 16px;
    background: rgba(255, 252, 248, 0.88);
    border: 1px solid rgba(196, 162, 101, 0.28);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 2px 8px rgba(114, 47, 55, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal__section:hover {
    border-color: rgba(196, 162, 101, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 14px rgba(114, 47, 55, 0.08);
}

.modal__section[hidden] { display: none !important; }

.modal__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--burgundy);
    margin-bottom: 6px;
}

.modal__section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.22) 0%, rgba(114, 47, 55, 0.1) 100%);
    border: 1px solid rgba(196, 162, 101, 0.25);
    flex-shrink: 0;
}

.modal__section-icon svg { color: var(--burgundy); width: 14px; height: 14px; }

.modal__section-text {
    font-size: 0.875rem;
    color: var(--charcoal-soft);
    line-height: 1.7;
}

.modal__allergen-badges { display: flex; flex-wrap: wrap; gap: 6px; }

.allergen-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.allergen-badge--none {
    background: rgba(114, 47, 55, 0.06);
    border: 1px solid rgba(114, 47, 55, 0.1);
    color: var(--charcoal-muted);
}

.modal__visual {
    position: relative;
    background: linear-gradient(165deg, var(--beige-50) 0%, var(--beige-200) 100%);
    overflow: hidden;
    border-radius: 18px;
    box-shadow:
        inset 0 0 0 1px rgba(196, 162, 101, 0.28),
        0 8px 28px rgba(114, 47, 55, 0.12);
}

.modal__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 16, 0.25) 0%, transparent 45%);
    pointer-events: none;
    z-index: 2;
}

.modal__visual-label {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--burgundy);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.modal__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal__image {
    animation: modalImageIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes modalImageIn {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.modal__image[hidden] { display: none !important; }

.modal__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(196, 162, 101, 0.15) 0%, transparent 55%),
        linear-gradient(165deg, var(--beige-50) 0%, var(--beige-200) 100%);
}

.modal__placeholder[hidden] { display: none !important; }

.modal__placeholder-icon {
    width: 72px;
    height: 72px;
    color: var(--burgundy);
    opacity: 0.55;
}

.modal__placeholder-icon svg { width: 100%; height: 100%; }

.modal__placeholder-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--burgundy);
    opacity: 0.15;
    line-height: 1;
}

@media (max-width: 768px) {
    .modal { padding: 0; align-items: flex-end; }
    .modal__panel {
        width: 100%;
        max-height: 92dvh;
        border-radius: 24px 24px 0 0;
    }
    .modal.is-closing .modal__panel {
        transform: translateY(100%) scale(1);
    }
    .modal__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        direction: rtl;
        height: auto;
        max-height: 92dvh;
        padding: 10px;
        gap: 10px;
    }
    .modal__layout > * { direction: rtl; }
    .modal__visual {
        order: -1;
        height: 220px;
        min-height: 220px;
    }
    .modal__body { max-height: none; }
    .modal__body-inner { padding: 40px 24px 32px; }
    .modal__close { top: 16px; left: 16px; }
}

/* ---- Responsive / Kiosk ---- */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
    }
    .section-header__title::after {
        margin-right: auto;
        margin-left: auto;
    }
    .section-header__sub {
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .story__grid { grid-template-columns: 1fr; gap: 40px; }
    .site-nav,
    .site-header__rail { display: none; }
    .menu-toggle { display: flex; }
    .contact__card { padding: 40px 24px; }
    .site-header__dock {
        gap: 8px;
        padding: 5px 6px 5px 10px;
    }
    .site-logo {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 8px 10px;
    }
    .header-tools {
        gap: 6px;
        flex-shrink: 0;
        margin-inline-start: auto;
    }
    .header-tools__cluster {
        padding: 3px;
        background: rgba(255, 255, 255, 0.45);
        border: 1px solid rgba(196, 162, 101, 0.18);
    }
    .menu-toggle { margin-inline-start: 0; }
    .featured-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
    .reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .moments-grid { grid-template-columns: 1fr; gap: 16px; }
    .moment-card--featured { grid-column: 1; }
    .section-pager__inner {
        width: min(100%, 360px);
        justify-content: space-between;
        gap: 8px;
        padding: 8px;
    }
    .section-pager__btn {
        padding: 10px 14px;
        min-height: 40px;
    }
    .section-pager__info {
        min-width: auto;
        padding: 8px 12px;
        flex: 1;
    }
    .hero__title { font-size: clamp(1.875rem, 9vw, 2.75rem); }
    .hero__cta-row { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
    .hero__cta-row .btn { width: 100%; justify-content: center; }
    .section { padding: 72px 0; }
    .site-logo { max-width: calc(100vw - 128px); }
    .site-footer__logo-name {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .section-header__title { font-size: clamp(1.625rem, 7vw, 2.25rem); }
    .promo-banner { padding: 4px 0 0; }
    .promo-banner__inner { padding: 8px 36px 8px 10px; gap: 8px; }
    .promo-banner__badge { padding: 4px 8px; font-size: 0.625rem; }
    .promo-banner__text { font-size: 0.75rem; }
}

@media (max-width: 380px) {
    .action-chip-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .action-chip { padding: 12px 8px; }
    .action-chip__icon { width: 38px; height: 38px; }
    .action-chip__label { font-size: 0.6875rem; }
    .header-tool-btn { width: 36px; height: 36px; }
}

@media (min-width: 768px) and (pointer: coarse) {
    .category-tab { padding: 14px 28px; font-size: 0.9375rem; }
    .allergy-pill { padding: 10px 20px; font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero__eyebrow, .hero__title, .hero__subtitle, .hero__cta-row,
    .hero__rating-pill, .hero-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    body:not(.is-ready) .site-header,
    body:not(.is-ready) main,
    body:not(.is-ready) .site-footer { opacity: 1 !important; }
}

/* ============================================================
   Modern Luxe v5 — glass, ambient, reviews, polish
   ============================================================ */

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    contain: strict;
}

.ambient-bg__mesh {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 70% 55% at 15% 15%, rgba(114, 47, 55, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 45% at 85% 8%, rgba(196, 162, 101, 0.1), transparent 50%),
        radial-gradient(ellipse 55% 60% at 50% 95%, rgba(114, 47, 55, 0.04), transparent 55%);
}

.ambient-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
}

.ambient-bg__orb--1 {
    width: 380px; height: 380px;
    top: -6%; right: -4%;
    background: radial-gradient(circle, rgba(114, 47, 55, 0.12), transparent 70%);
}

.ambient-bg__orb--2 {
    width: 300px; height: 300px;
    bottom: 8%; left: -6%;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.18), transparent 70%);
}

.glass-panel {
    position: relative;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 10px 28px rgba(114, 47, 55, 0.07);
    isolation: isolate;
    overflow: hidden;
    transition: box-shadow 0.45s ease, transform 0.45s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.glass-panel:hover::before {
    transform: translateX(-115%);
}

.glass-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.65) 0%,
        rgba(114, 47, 55, 0.35) 28%,
        rgba(237, 230, 221, 0.95) 52%,
        rgba(196, 162, 101, 0.5) 78%,
        rgba(114, 47, 55, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

.glass-panel > * {
    position: relative;
    z-index: 3;
}

.story__text.glass-panel { padding: 32px; }
.contact__card.glass-panel { padding: 48px 40px; }
.allergy-filter.glass-panel { margin-bottom: 28px; }

.loader__scene {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}

.loader__cup-3d {
    width: 44px; height: 44px;
    border: 2px solid var(--burgundy-muted);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

.hero__stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 28px 0 8px;
    flex-wrap: wrap;
}

.hero-stat {
    position: relative;
    padding: 14px 22px;
    border-radius: 16px;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 100%);
    border: 1px solid rgba(196, 162, 101, 0.28);
    min-width: 120px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.06);
}
.hero-stat::before {
    display: none;
}

.hero-stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.2;
}

.hero-stat__label {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}

.btn--glow {
    box-shadow: 0 6px 28px rgba(114, 47, 55, 0.32);
}

.btn--glow:hover {
    box-shadow: 0 10px 36px rgba(114, 47, 55, 0.4), 0 0 0 1px rgba(196, 162, 101, 0.3);
}

.menu { background: var(--surface-page); }

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}

.product-card__rating .stars,
.star-on { color: #C4A265; letter-spacing: 1px; }

.star-off { color: var(--beige-300); letter-spacing: 1px; }

.product-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.32) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-card__shine {
    transform: translateX(100%);
}

.reviews { padding-top: 20px; background: var(--surface-section); }

.reviews-summary {
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-summary__score {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-summary__big {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 800;
    color: var(--burgundy);
    line-height: 1;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 252, 248, 0.85);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.08);
}

.reviews-summary__stars {
    font-size: 1.25rem;
    color: #C4A265;
    letter-spacing: 2px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.section-pager-slot:empty {
    display: none;
}

.section-pager {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.section-pager__inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: 1px solid rgba(196, 162, 101, 0.28);
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 8px 24px rgba(114, 47, 55, 0.07);
}

.section-pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    min-height: 42px;
    padding: 11px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--burgundy);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(114, 47, 55, 0.16);
    box-shadow: 0 2px 8px rgba(114, 47, 55, 0.05);
    cursor: pointer;
    touch-action: manipulation;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition),
        opacity var(--transition);
}

.section-pager__btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: currentColor;
}

.section-pager__btn:hover:not(:disabled),
.section-pager__btn:focus-visible:not(:disabled) {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(114, 47, 55, 0.28);
    transform: translateY(-1px);
    outline: none;
}

.section-pager__btn:active:not(:disabled) {
    transform: translateY(0);
}

.section-pager__btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.55);
    color: var(--charcoal-muted);
    border-color: rgba(114, 47, 55, 0.08);
}

.section-pager__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--charcoal-soft);
    background: rgba(196, 162, 101, 0.14);
    border: 1px solid rgba(196, 162, 101, 0.28);
    text-align: center;
}

.review-card {
    position: relative;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 8px 24px rgba(114, 47, 55, 0.07);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    isolation: isolate;
    overflow: hidden;
    cursor: default;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.55) 0%,
        rgba(114, 47, 55, 0.3) 50%,
        rgba(196, 162, 101, 0.45) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    opacity: 0.85;
}

.review-card > * {
    position: relative;
    z-index: 2;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 20px rgba(114, 47, 55, 0.1),
        0 18px 40px rgba(114, 47, 55, 0.12);
}

.review-card:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.15) 0deg,
        rgba(196, 162, 101, 0.75) 60deg,
        rgba(114, 47, 55, 0.55) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.65) 300deg,
        rgba(196, 162, 101, 0.15) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.review-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 3;
}

.review-card:hover .review-card__shine {
    transform: translateX(100%);
}

.review-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(196, 162, 101, 0.18);
}

.review-card__name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.review-card__product {
    font-size: 0.8125rem;
    color: var(--burgundy);
    margin-top: 2px;
}

.review-card__stars {
    color: #C4A265;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 252, 248, 0.85);
    border: 1px solid rgba(196, 162, 101, 0.25);
}

.review-card__text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--charcoal-soft);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(196, 162, 101, 0.18);
    border-radius: 12px;
}

.review-card__date {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--charcoal-muted);
}

.modal__rating-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.modal__rating-badge .stars { color: #C4A265; margin-right: 4px; }

.star-picker {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    direction: ltr;
    justify-content: flex-end;
}

.star-picker__star {
    font-size: 1.75rem;
    color: var(--beige-300);
    padding: 4px;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
}

.star-picker__star:hover,
.star-picker__star.is-active {
    color: #C4A265;
    transform: scale(1.12);
}

.review-input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(196, 162, 101, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: rgba(255, 252, 248, 0.9);
    transition: border-color 0.25s, box-shadow 0.25s;
    resize: vertical;
}

.review-input:focus {
    outline: none;
    border-color: rgba(196, 162, 101, 0.55);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.08);
}

.review-note {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
    margin-top: 10px;
}

.review-success {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(46, 125, 79, 0.08);
    border: 1px solid rgba(46, 125, 79, 0.2);
    color: #2e7d4f;
    font-size: 0.875rem;
    font-weight: 600;
}

.modal__review-form .btn { width: 100%; margin-top: 4px; }

@media (max-width: 768px) {
    .hero__stats { gap: 12px; }
    .reviews-summary { padding: 20px; }
    .reviews-summary__big { font-size: 2.25rem; }
}

/* ============================================================
   Premium v6 — shop reviews, featured, quick actions, kiosk
   ============================================================ */

.promo-banner {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 98;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6px 0 0;
    pointer-events: none;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
}

.promo-banner__shell {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.promo-banner.is-open {
    visibility: visible;
    pointer-events: auto;
    animation: promoDropFromNav 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.promo-banner__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 9px 40px 9px 12px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 42%, var(--burgundy-light) 100%);
    border: 1px solid rgba(196, 162, 101, 0.38);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.22);
    color: var(--promo-text, var(--white));
    overflow: hidden;
    isolation: isolate;
}

.promo-banner__inner--clickable {
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.promo-banner__inner--clickable:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 16px 40px rgba(114, 47, 55, 0.36);
}

.promo-banner__inner--clickable:focus-visible {
    outline: 2px solid rgba(196, 162, 101, 0.65);
    outline-offset: 3px;
}

.promo-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 100%);
    background-size: 220% 100%;
    animation: promoShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.promo-banner__inner::after {
    content: '';
    position: absolute;
    inset-inline: 20px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.65), transparent);
    pointer-events: none;
}

@keyframes promoShimmer {
    0%, 100% { background-position: 130% 0; opacity: 0.35; }
    50% { background-position: -30% 0; opacity: 0.75; }
}

.promo-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(196, 162, 101, 0.35);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.promo-banner__badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
}

.promo-banner__text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-banner__close {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.promo-banner__close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

section[id] {
    scroll-margin-top: calc(var(--header-h) + var(--promo-h) + 12px);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 38px;
}

.header-tools__cluster {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(196, 162, 101, 0.16);
    transition: background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled .header-tools__cluster {
    background: rgba(255, 255, 255, 0.72);
}

.header-tool-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--charcoal-soft);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-tool-btn:hover {
    background: var(--burgundy-muted);
    border-color: rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
    transform: translateY(-1px);
}

.open-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.open-badge--open {
    background: rgba(46, 125, 79, 0.12);
    color: #2e7d4f;
}

.open-badge--closed {
    background: rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
}

.hero__rating-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin: 8px 0 4px;
    border-radius: var(--radius-full);
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal-soft);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 8px 22px rgba(114, 47, 55, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.hero__rating-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.hero__rating-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.7) 0%,
        rgba(114, 47, 55, 0.35) 50%,
        rgba(196, 162, 101, 0.55) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

.hero__rating-pill > * {
    position: relative;
    z-index: 3;
}

.hero__rating-pill:hover {
    color: var(--burgundy);
    transform: translateY(-4px);
    box-shadow:
        0 6px 20px rgba(114, 47, 55, 0.12),
        0 16px 36px rgba(114, 47, 55, 0.1);
}

.hero__rating-pill:hover::before {
    transform: translateX(-115%);
}

.hero__rating-pill:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.2) 0deg,
        rgba(196, 162, 101, 0.85) 60deg,
        rgba(114, 47, 55, 0.6) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.7) 300deg,
        rgba(196, 162, 101, 0.2) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.hero__rating-stars { color: #C4A265; letter-spacing: 2px; font-size: 0.9375rem; }

.hero__actions {
    margin: 24px 0 8px;
    width: 100%;
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    min-height: 108px;
}

.action-chip-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    max-width: 100%;
}

.action-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 18px;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    color: var(--charcoal);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 8px 24px rgba(114, 47, 55, 0.07);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.action-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.action-chip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.65) 0%,
        rgba(114, 47, 55, 0.3) 50%,
        rgba(196, 162, 101, 0.5) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
    opacity: 0.88;
    transition: opacity 0.4s ease;
}

.action-chip > * {
    position: relative;
    z-index: 2;
}

.action-chip:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 20px rgba(114, 47, 55, 0.1),
        0 18px 40px rgba(114, 47, 55, 0.12);
}

.action-chip:hover::before {
    transform: translateX(-115%);
}

.action-chip:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.15) 0deg,
        rgba(196, 162, 101, 0.85) 60deg,
        rgba(114, 47, 55, 0.55) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.7) 300deg,
        rgba(196, 162, 101, 0.15) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.action-chip__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(114, 47, 55, 0.08);
    border: 1px solid rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
    transition: var(--transition);
    overflow: visible;
}

.action-chip__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    overflow: visible;
}

.action-chip:hover .action-chip__icon {
    background: var(--burgundy);
    color: var(--white);
    border-color: transparent;
}

.action-chip__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.section--compact {
    padding: 48px 0;
    background: var(--surface-page);
}

.highlights__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(165deg, #FFFCF8 0%, #F2E9DF 100%);
    border: 1px solid rgba(196, 162, 101, 0.28);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal-soft);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.06);
}

.highlight-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
}

.featured {
    background: var(--surface-section);
    overflow: hidden;
    width: 100%;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border: none;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 10px 28px rgba(114, 47, 55, 0.07);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    isolation: isolate;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 4;
}

.featured-card:hover::before {
    transform: translateX(-115%);
}

.featured-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.65) 0%,
        rgba(114, 47, 55, 0.35) 28%,
        rgba(237, 230, 221, 0.95) 52%,
        rgba(196, 162, 101, 0.5) 78%,
        rgba(114, 47, 55, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.featured-card > * {
    position: relative;
    z-index: 2;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(114, 47, 55, 0.08),
        0 12px 40px rgba(114, 47, 55, 0.14);
}

.featured-card:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.15) 0deg,
        rgba(196, 162, 101, 0.85) 60deg,
        rgba(114, 47, 55, 0.65) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.75) 300deg,
        rgba(196, 162, 101, 0.15) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.featured-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.32) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 3;
}

.featured-card:hover .featured-card__shine {
    transform: translateX(100%);
}

.featured-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    border: 1.5px solid rgba(255, 252, 248, 0.35);
    box-shadow: 0 4px 14px rgba(20, 16, 16, 0.28);
    pointer-events: none;
}

.featured-card__media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(196, 162, 101, 0.22),
        0 4px 14px rgba(114, 47, 55, 0.08);
}

.featured-card__visual {
    position: relative;
    aspect-ratio: 1;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(196, 162, 101, 0.1) 0%, transparent 55%),
        linear-gradient(165deg, var(--beige-50) 0%, var(--beige-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card:hover .featured-card__visual img {
    transform: scale(1.06);
}

.featured-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 16, 0.38);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.featured-card:hover .featured-card__overlay { opacity: 1; }

.featured-card__view {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.featured-card:hover .featured-card__view { transform: translateY(0); }

.featured-card__price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.97) 0%, rgba(247, 240, 232, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--burgundy);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 2px 12px rgba(114, 47, 55, 0.12);
    pointer-events: none;
}

.featured-card__body {
    padding: 12px 8px 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(196, 162, 101, 0.15);
    margin-top: 4px;
}

.featured-card__category {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 9px;
    margin-bottom: 6px;
    border-radius: var(--radius-full);
    background: rgba(114, 47, 55, 0.07);
    border: 1px solid rgba(114, 47, 55, 0.12);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--burgundy);
}

.featured-card__name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.35;
}

.featured-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.featured-card__action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--burgundy-light) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover .featured-card__action {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(114, 47, 55, 0.32);
}

.menu-toolbar {
    padding: 16px 20px;
    margin-bottom: 24px;
}

.menu-search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-search svg { color: var(--burgundy); flex-shrink: 0; }

.menu-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    outline: none;
}

.menu-toolbar__hint {
    margin-top: 8px;
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    border: 1.5px solid rgba(255, 252, 248, 0.35);
    box-shadow: 0 4px 14px rgba(20, 16, 16, 0.28);
    pointer-events: none;
}

.product-card__fav {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.96);
    border: 2px solid rgba(196, 162, 101, 0.7);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(20, 16, 16, 0.22);
}

.product-card__fav svg {
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
}

.product-card__fav svg path {
    fill: var(--burgundy);
    stroke: none;
}

.product-card__fav.is-active {
    color: var(--white);
    background: var(--burgundy);
    border-color: var(--burgundy-dark);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.4);
}

.product-card__fav.is-active svg path {
    fill: currentColor;
}

.product-card__fav:hover {
    transform: scale(1.08);
    color: var(--burgundy);
    border-color: rgba(114, 47, 55, 0.4);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.2);
}

.product-card__fav.is-active:hover {
    color: var(--white);
    background: var(--burgundy-dark);
}

.shop-review-form {
    padding: 24px 28px;
    margin-bottom: 24px;
}

.shop-review-form__title {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--burgundy-dark);
    margin-bottom: 6px;
}

.shop-review-form__sub {
    font-size: 0.875rem;
    color: var(--charcoal-muted);
    margin-bottom: 20px;
}

.aspect-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.aspect-picker__btn {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(196, 162, 101, 0.3);
    background: rgba(255, 252, 248, 0.85);
    color: var(--charcoal-soft);
    transition: var(--transition);
}

.aspect-picker__btn.is-active,
.aspect-picker__btn:hover {
    border-color: rgba(114, 47, 55, 0.35);
    background: rgba(114, 47, 55, 0.08);
    color: var(--burgundy-dark);
}

.review-card__aspect {
    display: inline-flex;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-top: 4px;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    background: rgba(114, 47, 55, 0.07);
    border: 1px solid rgba(114, 47, 55, 0.12);
}

.review-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* ---- Floating social ---- */
.social-float {
    position: fixed;
    inset-inline-end: 18px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    z-index: 85;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--beige-200);
    box-shadow: 0 4px 20px rgba(44, 28, 28, 0.1);
    color: var(--burgundy);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s;
}

.social-float__btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 32px rgba(114, 47, 55, 0.18);
}

.social-float__btn--whatsapp {
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 100%);
    color: var(--burgundy);
    border-color: rgba(196, 162, 101, 0.45);
}

.social-float__btn--whatsapp:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.social-float__btn--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.social-float__btn--tiktok {
    background: #010101;
    color: #fff;
    border-color: transparent;
}

.social-float__btn--phone {
    background: var(--burgundy);
    color: #fff;
    border-color: transparent;
}

.site-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 200;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.site-toast--error {
    background: var(--burgundy);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.35);
}

.section-header__sub {
    margin-top: 8px;
    font-size: 1rem;
    color: var(--charcoal-muted);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.6;
}

.moments {
    padding-block: clamp(64px, 8vw, 96px);
    background: var(--surface-page);
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.moment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    box-shadow:
        0 1px 2px rgba(114, 47, 55, 0.04),
        0 10px 28px rgba(114, 47, 55, 0.07);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    isolation: isolate;
    touch-action: manipulation;
}

.moment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 252, 248, 0.55) 50%, transparent 60%);
    transform: translateX(115%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.moment-card:hover::before {
    transform: translateX(-115%);
}

.moment-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.65) 0%,
        rgba(114, 47, 55, 0.35) 28%,
        rgba(237, 230, 221, 0.95) 52%,
        rgba(196, 162, 101, 0.5) 78%,
        rgba(114, 47, 55, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.moment-card > *:not(.moment-card__shine):not(.moment-card__badge) {
    position: relative;
    z-index: 3;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(114, 47, 55, 0.08),
        0 12px 40px rgba(114, 47, 55, 0.14);
}

.moment-card:hover::after {
    opacity: 1;
    background: conic-gradient(
        from var(--card-border-angle, 0deg),
        rgba(196, 162, 101, 0.15) 0deg,
        rgba(196, 162, 101, 0.85) 60deg,
        rgba(114, 47, 55, 0.65) 140deg,
        rgba(250, 247, 244, 0.95) 220deg,
        rgba(196, 162, 101, 0.75) 300deg,
        rgba(196, 162, 101, 0.15) 360deg
    );
    animation: cardBorderGlow 2.8s linear infinite;
}

.moment-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.32) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 2;
}

.moment-card:hover .moment-card__shine {
    transform: translateX(100%);
}

.moment-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    background:
        linear-gradient(165deg, #FFFAF5 0%, #F9F0E6 45%, #F3E6D8 100%);
    box-shadow:
        0 2px 4px rgba(114, 47, 55, 0.06),
        0 12px 32px rgba(114, 47, 55, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.moment-card--featured::after {
    opacity: 1;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.95) 0%,
        rgba(114, 47, 55, 0.55) 40%,
        rgba(232, 213, 176, 0.9) 65%,
        rgba(196, 162, 101, 0.85) 100%
    );
}

.moment-card--featured:hover::after {
    animation: cardBorderGlow 2.2s linear infinite;
}

.moment-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.35);
}

.moment-card__media {
    position: relative;
    z-index: 3;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow:
        inset 0 0 0 1px rgba(196, 162, 101, 0.22),
        0 4px 14px rgba(114, 47, 55, 0.08);
}

.moment-card--featured .moment-card__media {
    aspect-ratio: auto;
    flex: 1;
    min-height: 0;
}

.moment-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.moment-card:hover .moment-card__img {
    transform: scale(1.06);
}

.moment-card__hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 16, 0.38);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.moment-card:hover .moment-card__hover {
    opacity: 1;
}

.moment-card__view {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.moment-card:hover .moment-card__view {
    transform: translateY(0);
}

.moment-card__body {
    padding: 12px 6px 4px;
    border-top: 1px solid rgba(196, 162, 101, 0.15);
    margin-top: 4px;
}

.moment-card__customer {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.moment-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 252, 248, 0.9);
    box-shadow: 0 2px 8px rgba(114, 47, 55, 0.2);
}

.moment-card__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.moment-card__name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moment-card__caption {
    font-size: 0.8125rem;
    color: var(--charcoal-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.moment-card__social {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.moment-card__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(114, 47, 55, 0.07);
    color: var(--burgundy);
    border: 1px solid rgba(114, 47, 55, 0.12);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.moment-card__social-link:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.moment-card__social-link svg {
    width: 14px;
    height: 14px;
}

.moment-lightbox {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}

.moment-lightbox.is-open {
    visibility: visible;
    pointer-events: auto;
}
.moment-lightbox.is-closing {
    visibility: visible;
    pointer-events: none;
}

.moment-lightbox__backdrop {
    position: absolute;
    inset: 0;
    isolation: isolate;
}

.moment-lightbox__backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateZ(0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.26s ease, visibility 0.26s ease;
}

.moment-lightbox.is-open:not(.is-closing) .moment-lightbox__backdrop::before {
    opacity: 1;
    visibility: visible;
}

.moment-lightbox.is-closing .moment-lightbox__backdrop::before {
    opacity: 0;
    visibility: hidden;
}

.moment-lightbox__backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 16, 0.68);
    opacity: 0;
    transition: opacity 0.26s ease;
}

.moment-lightbox.is-open:not(.is-closing) .moment-lightbox__backdrop::after {
    opacity: 1;
}

.moment-lightbox.is-closing .moment-lightbox__backdrop::after {
    opacity: 0;
}

.moment-lightbox__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(560px, 100%);
    max-height: 90vh;
    background: linear-gradient(165deg, #FFFCF8 0%, #F7F0E8 52%, #F2E9DF 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(114, 47, 55, 0.2),
        0 8px 24px rgba(44, 28, 28, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    isolation: isolate;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.moment-lightbox__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(196, 162, 101, 0.75) 0%,
        rgba(114, 47, 55, 0.4) 30%,
        rgba(237, 230, 221, 0.95) 55%,
        rgba(196, 162, 101, 0.6) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 6;
}

.moment-lightbox.is-open:not(.is-closing) .moment-lightbox__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.moment-lightbox.is-closing .moment-lightbox__panel {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
}

.moment-lightbox__media,
.moment-lightbox__info {
    opacity: 0;
    transform: translateY(10px);
}

.moment-lightbox.is-open .moment-lightbox__media,
.moment-lightbox.is-open .moment-lightbox__info {
    animation: modalFadeUp 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.moment-lightbox.is-open .moment-lightbox__media { animation-delay: 0.04s; }
.moment-lightbox.is-open .moment-lightbox__info { animation-delay: 0.07s; }

.moment-lightbox__close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--charcoal-muted);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 2px 10px rgba(114, 47, 55, 0.1);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.moment-lightbox__close:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(90deg);
}

.moment-lightbox__media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(196, 162, 101, 0.28),
        0 8px 28px rgba(114, 47, 55, 0.12);
}

.moment-lightbox__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 16, 16, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.moment-lightbox__label {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--burgundy);
    border: 1px solid rgba(196, 162, 101, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.moment-lightbox__img {
    width: 100%;
    max-height: min(70vh, 520px);
    object-fit: cover;
    display: block;
}

.moment-lightbox.is-open .moment-lightbox__img {
    animation: modalImageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.05s;
}

.moment-lightbox__info {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px 18px;
    background: rgba(255, 252, 248, 0.88);
    margin: 0 12px 12px;
    border-radius: 18px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.moment-lightbox__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.moment-lightbox__header-text {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.moment-lightbox__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 252, 248, 0.9);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.2);
}

.moment-lightbox__name {
    display: block;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.moment-lightbox__tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    background: rgba(114, 47, 55, 0.07);
    border: 1px solid rgba(114, 47, 55, 0.12);
    color: var(--burgundy);
}

.moment-lightbox__caption {
    margin: 4px 0 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(196, 162, 101, 0.22);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--charcoal-soft);
    line-height: 1.65;
}

.moment-lightbox__caption[hidden] {
    display: none !important;
}

.moment-lightbox__social[hidden] {
    display: none !important;
}

.moment-lightbox__social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
}

.moment-lightbox__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(114, 47, 55, 0.07);
    color: var(--burgundy);
    border: 1px solid rgba(114, 47, 55, 0.12);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.moment-lightbox__social-link:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.moment-lightbox__social-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .moments-grid { grid-template-columns: repeat(2, 1fr); }
    .moment-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .moment-card--featured .moment-card__media {
        aspect-ratio: 16 / 10;
        flex: none;
    }
}

@media (max-width: 520px) {
    .moments-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .moment-card--featured { grid-column: 1 / -1; }
    .moment-lightbox { padding: 0; align-items: flex-end; }
    .moment-lightbox__panel {
        width: 100%;
        max-height: 92dvh;
        border-radius: 24px 24px 0 0;
    }
}

body.kiosk-mode {
    --header-h: 88px;
}

body.kiosk-mode .site-header { height: var(--header-h); }

body.kiosk-mode .product-card {
    min-height: 340px;
}

body.kiosk-mode .category-tab,
body.kiosk-mode .allergy-pill {
    min-height: 52px;
    font-size: 1rem;
}

body.kiosk-mode .social-float { display: none; }

@media (min-width: 901px) {
    .header-tools .open-badge { display: inline-flex; }
}

@media (max-width: 900px) {
    .open-badge { display: none; }
}

@media (max-width: 640px) {
    .social-float {
        inset-inline-end: 12px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        gap: 8px;
    }
    .social-float__btn {
        width: 46px;
        height: 46px;
    }
    .site-footer__main {
        grid-template-columns: 1fr;
    }
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .action-chip-row { grid-template-columns: repeat(2, 1fr); }
    .shop-review-form { padding: 20px; }
}
