:root {
    --red: #f26a21;
    --deep-red: #bb3d12;
    --gold: #ffb13d;
    --pistachio: #6f8b48;
    --ink: #241719;
    --muted: #756365;
    --soft: #fff7ee;
    --paper: #ffffff;
    --line: rgba(111, 55, 24, 0.16);
    --shadow: 0 18px 48px rgba(58, 35, 20, 0.12);
    --shadow-strong: 0 28px 80px rgba(187, 61, 18, 0.18);
    --photo-radius: 24px;
    --photo-border: rgba(111, 55, 24, 0.12);
    --photo-shadow: 0 18px 42px rgba(58, 35, 20, 0.10);
    --radius: 20px;
    --container: min(1480px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fffdf8 0%, #fff5e9 42%, #ffffff 100%);
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.premium-photo-frame,
.product-image,
.menu-card-media,
.brand-product-chip,
.category-card-preview img,
.product-modal-media,
.cart-item img,
.magic-spotlight,
.magic-mini-card,
.hero-product-shot,
.menu-hero-thumb {
    position: relative;
    border-color: var(--photo-border);
}
.product-modal-media {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}
.brand-product-chip::after,
.product-modal-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -18px 42px rgba(242, 106, 33, 0.05);
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}
.grain {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 106, 33, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187, 61, 18, 0.028) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.7;
}

.site-header {
    width: calc(100% - 32px);
    min-height: 76px;
    margin: 18px auto 0;
    position: sticky;
    top: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    box-shadow: 0 16px 42px rgba(36, 23, 25, 0.08);
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
}
.brand img { width: 112px; height: auto; flex: 0 0 auto; }
.brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    margin-top: 3px;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.site-nav a {
    padding: 11px 13px;
    border-radius: var(--radius);
    color: #4e3335;
    font-weight: 800;
    font-size: 0.92rem;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.site-nav a:hover {
    background: #fff1f1;
    color: var(--red);
    transform: translateY(-1px);
}
.nav-cta {
    background: var(--red) !important;
    color: var(--paper) !important;
    box-shadow: 0 12px 28px rgba(173, 18, 31, 0.22);
}
.nav-cart-pill {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(242, 106, 33, 0.2);
    border-radius: var(--radius);
    background: #fff7ed;
    color: var(--red);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 900;
    cursor: pointer;
}
.nav-cart-pill span {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    min-height: 24px;
    margin-left: 6px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.76rem;
}
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 18px;
    border: 1px solid rgba(242, 106, 33, 0.34);
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.42), transparent 30%),
        linear-gradient(145deg, #ff7a28, #d84b12);
    box-shadow:
        0 16px 34px rgba(187, 61, 18, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-enquiry-button {
    min-height: 42px;
    padding: 11px 16px;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 900;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 21px;
    height: 2.5px;
    background: #fff;
    margin: 0;
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(87, 29, 9, 0.22);
    transition: width 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(2) {
    width: 15px;
}
.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 38px rgba(187, 61, 18, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    width: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.section-pad {
    width: var(--container);
    margin: 0 auto;
    padding: 56px 0;
}
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 54px;
    align-items: center;
    min-height: calc(88vh - 110px);
    padding-top: 58px;
}
.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 900;
    font-size: 0.78rem;
    margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    font-size: 4.8rem;
    letter-spacing: 0;
    line-height: 0.98;
    margin-bottom: 22px;
}
h2 {
    font-size: 3.35rem;
    letter-spacing: 0;
    line-height: 1.04;
    margin-bottom: 18px;
}
h3 { letter-spacing: 0; }
.hero-text,
.menu-hero-copy p {
    font-size: 1.18rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
}
.hero-copy,
.menu-hero-copy,
.section-heading,
.product-body,
.menu-card-body {
    min-width: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 26px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 23px;
    border-radius: var(--radius);
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--deep-red));
    color: #fff;
    box-shadow: 0 18px 42px rgba(173, 18, 31, 0.24);
}
.btn-outline {
    border-color: rgba(173, 18, 31, 0.22);
    background: #fff;
    color: var(--red);
}
.btn-light {
    background: #fff;
    color: var(--red);
    box-shadow: 0 18px 44px rgba(36, 23, 25, 0.16);
}
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trust-strip span {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #5f3f42;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}
.brand-visual {
    display: grid;
    place-items: center;
}
.brand-logo-stage {
    position: relative;
    width: min(100%, 520px);
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 36px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 229, 0.78)),
        linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(255, 177, 61, 0.08));
    border: 1px solid rgba(111, 55, 24, 0.16);
    box-shadow: 0 34px 90px rgba(187, 61, 18, 0.16);
    overflow: hidden;
    isolation: isolate;
    animation: logoPopIn 0.9s cubic-bezier(.2, .9, .2, 1.15) both, logoStageBreath 5.4s ease-in-out 1.1s infinite;
}
.brand-logo-stage::before {
    content: '';
    position: absolute;
    inset: 16px;
    z-index: -1;
    border-radius: 28px;
    border: 1px solid rgba(255, 177, 61, 0.42);
}
.brand-logo-stage img {
    width: min(100%, 360px);
    filter: drop-shadow(0 22px 26px rgba(187, 61, 18, 0.18));
    animation: logoFloat 4.8s ease-in-out 1s infinite;
}
.brand-stage-line {
    position: absolute;
    left: 36px;
    right: 36px;
    top: 26px;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(242, 106, 33, 0.16);
}
.brand-stage-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(242, 106, 33, 0.95), transparent);
    animation: logoLineSweep 2.8s ease-in-out 0.4s infinite;
}
.brand-stage-caption {
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
}
.brand-stage-caption strong {
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.2;
}
.brand-stage-caption span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

@keyframes logoPopIn {
    0% { opacity: 0; transform: translateY(22px) scale(0.82); }
    70% { opacity: 1; transform: translateY(-4px) scale(1.035); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes logoStageBreath {
    0%, 100% { transform: translateY(0); box-shadow: 0 34px 90px rgba(187, 61, 18, 0.16); }
    50% { transform: translateY(-8px); box-shadow: 0 42px 105px rgba(187, 61, 18, 0.22); }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(-0.4deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}
@keyframes logoLineSweep {
    0% { transform: translateX(-110%); opacity: 0; }
    25%, 65% { opacity: 1; }
    100% { transform: translateX(110%); opacity: 0; }
}
.hero-photo-stack {
    position: relative;
    min-height: 540px;
    perspective: 1100px;
}
.hero-product-shot,
.menu-hero-thumb {
    margin: 0;
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform-origin: center;
    will-change: transform;
}
.hero-product-shot {
    position: absolute;
}
.hero-product-shot::after,
.menu-hero-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.42) 42%, transparent 64%);
    transform: translateX(-140%);
    animation: cardSheen 6.8s ease-in-out infinite;
}
.hero-product-shot img,
.menu-hero-thumb img {
    width: 100%;
    height: calc(100% - 48px);
    object-fit: contain;
    padding: 14px;
    background: linear-gradient(145deg, #fffdfa, #fff0ea);
}
.hero-product-shot figcaption,
.menu-hero-thumb figcaption {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 14px;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.2;
    background: #fff;
}
.shot-1 {
    width: 68%;
    height: 390px;
    top: 0;
    left: 13%;
    animation: heroCardFloatOne 8.4s ease-in-out infinite;
}
.shot-2 {
    width: 45%;
    height: 258px;
    left: 0;
    bottom: 22px;
    animation: heroCardFloatTwo 7.6s ease-in-out infinite;
}
.shot-3 {
    width: 44%;
    height: 246px;
    right: 0;
    bottom: 72px;
    animation: heroCardFloatThree 8.9s ease-in-out infinite;
}
.shot-2::after { animation-delay: 1.1s; }
.shot-3::after { animation-delay: 2.2s; }

@keyframes heroCardFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
    38% { transform: translate3d(10px, -14px, 0) rotate(0.8deg); }
    68% { transform: translate3d(-6px, 5px, 0) rotate(-1.4deg); }
}
@keyframes heroCardFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(1.2deg); }
    45% { transform: translate3d(-8px, -12px, 0) rotate(-0.7deg); }
    72% { transform: translate3d(8px, 4px, 0) rotate(1.8deg); }
}
@keyframes heroCardFloatThree {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.1deg); }
    42% { transform: translate3d(9px, -10px, 0) rotate(1deg); }
    75% { transform: translate3d(-7px, 6px, 0) rotate(-1.6deg); }
}
@keyframes cardSheen {
    0%, 38% { transform: translateX(-140%); opacity: 0; }
    48% { opacity: 0.75; }
    62% { transform: translateX(140%); opacity: 0; }
    100% { transform: translateX(140%); opacity: 0; }
}
.sweet-card {
    width: min(92%, 520px);
    min-height: 520px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    place-items: center;
}
.sweet-card img {
    width: min(100%, 420px);
    height: auto;
}

.magic-counter {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: grid;
    align-content: start;
    isolation: isolate;
}
.magic-counter::before {
    content: '';
    position: absolute;
    inset: 32px 20px 78px;
    z-index: -1;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(173, 18, 31, 0.12), transparent 34%),
        linear-gradient(315deg, rgba(111, 139, 72, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(88, 43, 47, 0.1);
    transform: skewY(-2deg);
}
.magic-counter::after {
    content: '';
    position: absolute;
    inset: 28px 0 auto;
    height: 1px;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(200, 151, 61, 0.8), transparent);
    animation: counterLightSweep 5.6s ease-in-out infinite;
}
.magic-spotlight {
    position: relative;
    width: min(68%, 410px);
    height: 348px;
    margin: 38px 0 156px auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(88, 43, 47, 0.14);
    box-shadow: 0 32px 90px rgba(126, 13, 22, 0.2);
    transform-origin: center;
    animation: spotlightDrift 8s ease-in-out infinite;
}
.magic-spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 14%, rgba(255, 255, 255, 0.48) 46%, transparent 68%);
    transform: translateX(-140%);
    animation: cardSheen 6.6s ease-in-out infinite;
}
.magic-spotlight img {
    width: 100%;
    height: calc(100% - 74px);
    object-fit: contain;
    padding: 16px;
    background:
        linear-gradient(145deg, #fffdf8, #fff0ea 62%, #f7f9ef);
}
.magic-spotlight figcaption {
    min-height: 74px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 12px 18px;
    background: #fff;
}
.magic-spotlight span,
.magic-quality-mark span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}
.magic-spotlight strong {
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.14;
}
.magic-rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    overflow: hidden;
    padding: 18px 0 22px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.magic-rail-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: magicRailMove 28s linear infinite;
}
.magic-counter:hover .magic-rail-track {
    animation-play-state: paused;
}
.magic-mini-card {
    width: 156px;
    min-height: 172px;
    margin: 0;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(88, 43, 47, 0.12);
    box-shadow: 0 18px 44px rgba(36, 23, 25, 0.12);
}
.magic-mini-card img {
    width: 100%;
    height: 118px;
    object-fit: contain;
    padding: 9px;
    background: linear-gradient(145deg, #fffdf8, #fff1ea);
}
.magic-mini-card figcaption {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.15;
}
.magic-quality-mark {
    position: absolute;
    left: 18px;
    top: 72px;
    display: grid;
    gap: 2px;
    width: 108px;
    min-height: 108px;
    align-content: center;
    justify-items: center;
    border-radius: 50%;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(200, 151, 61, 0.92), rgba(173, 18, 31, 0.92));
    box-shadow: 0 22px 54px rgba(126, 13, 22, 0.24);
    animation: qualityMarkPulse 4.8s ease-in-out infinite;
}
.magic-quality-mark strong {
    font-size: 2rem;
    line-height: 1;
}
.magic-quality-mark span {
    color: rgba(255, 255, 255, 0.86);
    text-align: center;
}
.menu-magic-counter .magic-spotlight {
    width: min(72%, 440px);
    margin-right: 7%;
}
.home-magic-counter .magic-mini-card:nth-child(3n),
.menu-magic-counter .magic-mini-card:nth-child(3n) {
    transform: translateY(10px);
}
.home-magic-counter .magic-mini-card:nth-child(4n),
.menu-magic-counter .magic-mini-card:nth-child(4n) {
    transform: translateY(-8px);
}

@keyframes magicRailMove {
    to { transform: translateX(calc(-50% - 7px)); }
}
@keyframes spotlightDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
    50% { transform: translate3d(-12px, -14px, 0) rotate(0.7deg); }
}
@keyframes qualityMarkPulse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(4px, -6px, 0) scale(1.035); }
}
@keyframes counterLightSweep {
    0%, 100% { transform: translateX(-26%); opacity: 0.32; }
    50% { transform: translateX(26%); opacity: 0.9; }
}

.setup-alert {
    width: var(--container);
    margin: 0 auto 20px;
    padding: 18px 22px;
    background: #fff7de;
    border: 1px solid #f3d37a;
    border-radius: var(--radius);
    color: #6d4b00;
}
.setup-alert code {
    background: rgba(255, 255, 255, 0.7);
    padding: 2px 6px;
    border-radius: 6px;
}

.section-heading { max-width: 760px; }
.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}
.section-heading p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 18px;
    margin-top: 34px;
}
.glass-card,
.stat-card,
.feature-card,
.contact-card,
.map-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 55px rgba(36, 23, 25, 0.07);
}
.about-card { padding: 34px; }
.about-card p {
    color: var(--muted);
    line-height: 1.8;
}
.stat-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 230px;
    background: linear-gradient(145deg, #fff, #fff7f0);
}
.stat-card strong {
    display: block;
    font-size: 3rem;
    color: var(--red);
}
.stat-card span {
    font-weight: 800;
    color: #4b3033;
}

.products { padding-top: 30px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}
.product-card,
.menu-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 20px 58px rgba(126, 13, 22, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.product-card:hover,
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 72px rgba(126, 13, 22, 0.15);
}
.product-image,
.menu-card-media {
    width: calc(100% - 32px);
    aspect-ratio: 1.08;
    background: transparent;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 16px 16px 0;
    border: 0;
    border-radius: 28px;
    box-shadow: none;
}
.product-image img,
.menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border: 1px solid var(--photo-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--photo-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover .product-image img,
.menu-card:hover .menu-card-media img {
    transform: scale(1.1) rotate(1.2deg);
    filter: saturate(1.12) contrast(1.03);
    box-shadow: 0 26px 60px rgba(58, 35, 20, 0.2);
}
.menu-card-media::after {
    content: '';
    position: absolute;
    inset: -40% -80%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.68) 50%, transparent 62%);
    transform: translateX(-55%) rotate(8deg);
    opacity: 0;
    transition: transform .7s ease, opacity .25s ease;
}
.menu-card:hover .menu-card-media::after {
    transform: translateX(55%) rotate(8deg);
    opacity: 1;
}
.product-body,
.menu-card-body {
    padding: 16px;
}
.product-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #fff3d8;
    color: #7a4d00;
    font-size: 0.74rem;
    font-weight: 900;
}
.product-body h3,
.menu-card-body h3 {
    font-size: 1.24rem;
    line-height: 1.18;
    margin-bottom: 10px;
}
.product-body p,
.menu-card-body p {
    color: var(--muted);
    line-height: 1.6;
    min-height: 52px;
}
.product-link {
    display: inline-flex;
    color: var(--red);
    font-weight: 900;
    margin-top: 8px;
}
.promise-band {
    width: var(--container);
    margin: 34px auto 0;
    padding: 28px 24px;
    border-radius: 44px;
    background:
        linear-gradient(135deg, rgba(255, 226, 193, 0.96), rgba(255, 244, 232, 0.92)),
        linear-gradient(90deg, rgba(242, 106, 33, 0.12), rgba(111, 139, 72, 0.09));
    border: 1px solid rgba(111, 55, 24, 0.14);
    box-shadow: 0 24px 64px rgba(58, 35, 20, 0.1);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.promise-grid article {
    min-height: 158px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(111, 55, 24, 0.12);
}
.promise-grid span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    font-weight: 900;
}
.promise-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.05rem;
}
.promise-grid p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}
.center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.empty-state {
    width: min(520px, var(--container));
    margin: 40px auto 0;
    text-align: center;
    background: #fff;
    border: 1px dashed rgba(173, 18, 31, 0.28);
    border-radius: var(--radius);
    padding: 38px;
}
.empty-state img {
    width: 150px;
    margin: 0 auto 20px;
}
.empty-state p { color: var(--muted); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}
.feature-card {
    padding: 30px;
    transition: transform 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: #fff0f1;
    color: var(--red);
    font-weight: 900;
    margin-bottom: 28px;
}
.feature-card p {
    color: var(--muted);
    line-height: 1.7;
}

.cta-band {
    width: var(--container);
    margin: 20px auto 0;
    padding: 42px;
    border-radius: var(--radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        linear-gradient(135deg, rgba(200, 151, 61, 0.34), transparent 34%),
        linear-gradient(135deg, var(--red), var(--deep-red));
    box-shadow: 0 32px 80px rgba(126, 13, 22, 0.23);
}
.cta-band .eyebrow { color: #ffe4a6; }
.cta-band p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 0;
}
.cta-band h2 {
    max-width: 760px;
    margin-bottom: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
    margin-top: 36px;
}
.contact-card { padding: 32px; }
.contact-card p {
    color: var(--muted);
    line-height: 1.6;
}
.contact-card a {
    color: var(--red);
    font-weight: 900;
}
.map-card {
    overflow: hidden;
    min-height: 360px;
}
.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}
.map-placeholder {
    height: 100%;
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #fff, #fff0f1);
    padding: 30px;
}
.map-placeholder span {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}
.map-placeholder p { color: var(--muted); }

.menu-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 46px;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 28px;
}
.brand-menu-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: left;
    padding-top: 34px;
    padding-bottom: 18px;
}
.brand-hero-panel {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
    align-items: center;
    gap: 24px;
    padding: 18px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 225, 0.84)),
        linear-gradient(120deg, rgba(242, 106, 33, 0.12), rgba(111, 139, 72, 0.08));
    border: 1px solid rgba(111, 55, 24, 0.14);
    box-shadow: 0 30px 90px rgba(58, 35, 20, 0.12);
}
.brand-menu-hero .menu-hero-copy {
    width: 100%;
    display: grid;
    justify-items: start;
}
.brand-menu-hero h1 {
    max-width: 700px;
    font-size: 3.65rem;
    margin-top: 20px;
}
.menu-logo-stage {
    width: min(520px, 100%);
    margin: 8px 0 12px;
}
.brand-product-collage {
    position: relative;
    min-height: 440px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 248, 238, 0.96), rgba(255, 228, 197, 0.62)),
        linear-gradient(315deg, rgba(111, 139, 72, 0.1), transparent 54%);
    border: 1px solid rgba(111, 55, 24, 0.12);
}
.brand-product-collage::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 24px;
    border: 1px solid rgba(242, 106, 33, 0.2);
}
.brand-product-chip {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(111, 55, 24, 0.12);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 26px 64px rgba(58, 35, 20, 0.16);
    animation: collageFloat 6.8s ease-in-out infinite;
}
.brand-product-chip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: inherit;
    background: #fff;
}
.chip-1 {
    width: 58%;
    height: 250px;
    left: 22%;
    top: 34px;
}
.chip-2 {
    width: 42%;
    height: 178px;
    left: 8%;
    bottom: 48px;
    animation-delay: -1.4s;
}
.chip-3 {
    width: 38%;
    height: 164px;
    right: 8%;
    bottom: 84px;
    animation-delay: -2.3s;
}
.chip-4 {
    width: 27%;
    height: 118px;
    right: 12%;
    top: 42px;
    animation-delay: -3.1s;
}
@keyframes collageFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
    50% { transform: translate3d(5px, -10px, 0) rotate(0.7deg); }
}
.menu-hero h1 { margin-bottom: 18px; }
.menu-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.menu-stats span {
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
}
.menu-stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--red);
    line-height: 1;
}
.menu-stats small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 800;
}
.menu-hero-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    perspective: 1000px;
}
.menu-hero-thumb {
    --card-offset-y: 0px;
    --card-drift-x: 8px;
    --card-rotate: -0.5deg;
    min-height: 238px;
    animation: menuHeroCardFloat 7.8s ease-in-out infinite;
}
.menu-hero-thumb:nth-child(2),
.menu-hero-thumb:nth-child(3) {
    --card-offset-y: 22px;
}
.menu-hero-thumb:nth-child(2) {
    --card-drift-x: -7px;
    --card-rotate: 0.7deg;
    animation-delay: -1.8s;
}
.menu-hero-thumb:nth-child(3) {
    --card-drift-x: 6px;
    --card-rotate: -0.9deg;
    animation-delay: -3.1s;
}
.menu-hero-thumb:nth-child(4) {
    --card-drift-x: -8px;
    --card-rotate: 0.5deg;
    animation-delay: -4.4s;
}
.menu-hero-thumb:nth-child(2)::after { animation-delay: 1s; }
.menu-hero-thumb:nth-child(3)::after { animation-delay: 2s; }
.menu-hero-thumb:nth-child(4)::after { animation-delay: 3s; }

@keyframes menuHeroCardFloat {
    0%, 100% {
        transform: translate3d(0, var(--card-offset-y), 0) rotate(var(--card-rotate));
    }
    50% {
        transform: translate3d(var(--card-drift-x), calc(var(--card-offset-y) - 12px), 0) rotate(calc(var(--card-rotate) + 0.8deg));
    }
}

.menu-jump {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.menu-jump a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(36, 23, 25, 0.06);
}
.menu-jump span {
    font-size: 1.1rem;
    font-weight: 900;
}
.menu-jump strong {
    display: grid;
    place-items: center;
    min-width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
}
.category-band {
    width: var(--container);
    margin: 18px auto 0;
    padding: 22px 0 8px;
}
.category-band .section-heading {
    margin-bottom: 26px;
}
.category-band h2 {
    font-size: 2.65rem;
}
.category-showcase {
    padding-top: 0;
}
.category-showcase .category-card {
    position: relative;
    min-height: 250px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(230px, 0.72fr);
    align-items: center;
    padding: 16px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 231, 0.86)),
        linear-gradient(135deg, rgba(242, 106, 33, 0.1), rgba(255, 177, 61, 0.12));
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(58, 35, 20, 0.08);
    animation: categoryCardRise 0.75s ease both;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.category-showcase .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 75px rgba(58, 35, 20, 0.14);
}
.category-showcase .category-card:nth-child(2) {
    animation-delay: 0.12s;
}
.category-card::after {
    content: '';
    position: absolute;
    inset: auto 22px 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--gold), transparent);
    opacity: 0.75;
}
.category-card-copy {
    display: grid;
    gap: 8px;
}
.category-card-copy small {
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.category-card-copy strong {
    display: block;
    min-width: 0;
    height: auto;
    place-items: unset;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 2.3rem;
    line-height: 1;
}
.category-card-copy em {
    color: var(--muted);
    font-style: normal;
    font-weight: 900;
}
.category-card-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-self: stretch;
}
.category-card-preview img {
    width: 100%;
    aspect-ratio: 1;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    padding: 0;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(111, 55, 24, 0.1);
    box-shadow: var(--photo-shadow);
    animation: categoryPreviewFloat 4.6s ease-in-out infinite;
}
.category-card-preview img:nth-child(2) { animation-delay: -0.8s; }
.category-card-preview img:nth-child(3) { animation-delay: -1.6s; }
.category-card-preview img:nth-child(4) { animation-delay: -2.4s; }

@keyframes categoryCardRise {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes categoryPreviewFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.menu-category {
    padding-top: 40px;
}
.menu-category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.menu-category-head h2 { margin-bottom: 0; }
.menu-category-head > span {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    font-weight: 900;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.menu-card-body {
    min-height: 228px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.menu-control-panel {
    width: var(--container);
    margin: 36px auto 8px;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
    gap: 26px;
    align-items: center;
    padding: 20px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 231, 0.9)),
        linear-gradient(90deg, rgba(242, 106, 33, 0.08), rgba(111, 139, 72, 0.08));
    border: 1px solid rgba(111, 55, 24, 0.14);
    box-shadow: 0 24px 64px rgba(58, 35, 20, 0.08);
}
.menu-control-copy h2 {
    margin-bottom: 12px;
    font-size: 2.45rem;
}
.menu-control-copy p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}
.menu-control-tools {
    display: grid;
    gap: 16px;
}
.menu-search-box {
    display: grid;
    gap: 8px;
}
.menu-search-box span {
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}
.menu-search-box input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 750;
    outline: none;
    box-shadow: 0 14px 34px rgba(58, 35, 20, 0.06);
}
.menu-search-box input:focus {
    border-color: rgba(242, 106, 33, 0.54);
    box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.1);
}
.filter-scroller {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-scroller button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 10px 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #543c3e;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.filter-scroller button:hover,
.filter-scroller button.active {
    transform: translateY(-2px);
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 36px rgba(187, 61, 18, 0.2);
}
.filter-scroller strong {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(36, 23, 25, 0.08);
    color: inherit;
    font-size: 0.78rem;
}
.menu-results-line {
    margin: 0;
    color: var(--muted);
    font-weight: 850;
}
.menu-results-line strong {
    color: var(--red);
}
.occasion-strip {
    width: var(--container);
    margin: 20px auto 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.occasion-strip article {
    position: relative;
    min-height: 240px;
    padding: 18px;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(111, 55, 24, 0.14);
    box-shadow: 0 18px 52px rgba(58, 35, 20, 0.08);
}
.occasion-strip article::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 12%, rgba(242, 106, 33, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(255, 244, 231, 0.92), transparent 55%);
    pointer-events: none;
}
.occasion-strip span,
.occasion-strip strong,
.occasion-strip p,
.occasion-strip button {
    position: relative;
}
.occasion-strip span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff3d8;
    color: #7a4d00;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}
.occasion-strip strong {
    display: block;
    font-size: 1.42rem;
    line-height: 1.1;
}
.occasion-strip p {
    color: var(--muted);
    line-height: 1.6;
}
.occasion-strip button {
    border: 0;
    border-radius: 999px;
    padding: 11px 15px;
    background: var(--ink);
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
.menu-card.is-hidden {
    display: none;
}
.menu-card-media {
    width: calc(100% - 32px);
    border: 0;
    padding: 0;
    cursor: pointer;
}
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 28px;
    margin-bottom: 12px;
}
.product-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff3d8;
    color: #7a4d00;
    font-size: 0.72rem;
    font-weight: 900;
}
.product-weight-picker {
    display: grid;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    padding-inline: 0;
    padding-bottom: 0;
    border: 0;
}
.product-weight-picker > legend {
    padding: 0;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.product-weight-picker input {
    width: 100%;
    min-height: 43px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
}
.weight-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}
.weight-options label { cursor: pointer; }
.weight-options input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.weight-options span {
    min-height: 40px;
    display: grid;
    place-items: center;
    padding: 7px 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 900;
    text-align: center;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.weight-options label:hover span { transform: translateY(-2px); border-color: rgba(242,106,33,.5); }
.weight-options input:checked + span { border-color: var(--red); background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(187,61,18,.18); }
.weight-options input:focus-visible + span { outline: 3px solid rgba(242,106,33,.22); outline-offset: 2px; }
.product-weight-picker input[hidden] {
    display: none;
}
.product-price {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 10px 0 0;
    padding: 10px 12px;
    overflow: hidden;
    border: 1px solid rgba(187, 61, 18, .16);
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 203, 92, .3), transparent 34%),
        linear-gradient(135deg, #fffaf1, #fff1df);
    box-shadow: 0 12px 30px rgba(111, 55, 24, .09), inset 0 1px 0 rgba(255,255,255,.9);
}
.product-price::after {
    content: '';
    position: absolute;
    top: -22px;
    right: -20px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(187, 61, 18, .08);
    border-radius: 50%;
}
.product-price-icon {
    position: relative;
    z-index: 1;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, var(--red), #e98227);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(187, 61, 18, .24);
}
.product-price-icon svg { width: 21px; fill: #fff; }
.product-price.price-updated { animation: priceReveal .3s ease; }
@keyframes priceReveal {
    0% { transform: translateY(2px) scale(.985); opacity: .7; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.product-price-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: grid;
    gap: 1px;
}
.product-price-copy small {
    color: #8a6049;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
}
.product-price-copy strong {
    color: var(--ink);
    font-size: 1.28rem;
    font-weight: 950;
    line-height: 1.05;
}
.product-price-weight {
    position: relative;
    z-index: 1;
    margin-left: auto;
    padding: 6px 9px;
    border: 1px solid rgba(187, 61, 18, .13);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--red);
    font-size: .69rem;
    font-weight: 950;
    white-space: nowrap;
}
.product-price[hidden] { display: none; }
.menu-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: auto;
    padding-top: 14px;
}
.menu-card-button {
    min-height: 44px;
    border-radius: 16px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.menu-card-button:hover {
    transform: translateY(-2px);
}
.menu-card-button.ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}
.menu-card-button.add {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 30px rgba(187, 61, 18, 0.2);
}
.menu-empty-filter {
    width: min(560px, var(--container));
    margin: 36px auto 0;
    padding: 34px;
    text-align: center;
    border: 1px dashed rgba(242, 106, 33, 0.34);
    border-radius: 30px;
    background: #fff;
}
.menu-empty-filter[hidden] {
    display: none;
}
.menu-empty-filter img {
    width: 128px;
    margin: 0 auto 18px;
}
.menu-empty-filter p {
    color: var(--muted);
}
.qr-order-band {
    width: var(--container);
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(36, 23, 25, 0.94), rgba(77, 43, 28, 0.94)),
        linear-gradient(90deg, rgba(242, 106, 33, 0.28), transparent);
    color: #fff;
    box-shadow: 0 28px 78px rgba(36, 23, 25, 0.2);
}
.qr-order-band .eyebrow {
    color: #ffcf8a;
}
.qr-order-band h2 {
    margin-bottom: 12px;
}
.qr-order-band p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
.qr-card {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 16px;
    border-radius: 26px;
    background: #fff;
}
.qr-card img {
    width: 168px;
    aspect-ratio: 1;
}
.qr-card a {
    color: var(--red);
    font-weight: 900;
}
.menu-page {
    padding-bottom: 112px;
}
.menu-page .floating-whatsapp {
    bottom: 104px;
}
.cart-dock {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 45;
    width: min(390px, calc(100% - 26px));
    min-height: 74px;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(111, 55, 24, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(58, 35, 20, 0.18);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    cursor: pointer;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.cart-dock.is-empty {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 32px));
}
.cart-dock > span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.cart-dock strong,
.cart-dock small {
    text-align: left;
}
.cart-dock strong {
    font-size: 1rem;
}
.cart-dock small {
    color: var(--muted);
    font-weight: 800;
}
.cart-dock.pulse {
    animation: cartPulse 0.62s ease;
}
@keyframes cartPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.035); }
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 65;
    width: min(480px, 100%);
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 12px;
    padding: 20px;
    background: #fffdf8;
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 70px rgba(36, 23, 25, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}
.cart-drawer.open {
    transform: translateX(0);
}
.cart-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}
.cart-drawer-head h2 {
    margin-bottom: 0;
    font-size: 2.2rem;
}
.cart-drawer-head > div > small { display: block; margin-top: 5px; color: var(--muted); line-height: 1.4; }
.cart-items-panel {
    min-height: 280px;
    max-height: 42vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.88);
}
.cart-step-heading { display: flex; align-items: center; gap: 10px; }
.cart-step-heading > span,
.cart-actions .btn-primary > span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .76rem;
    font-weight: 900;
}
.cart-step-heading div { display: grid; gap: 1px; }
.cart-step-heading strong { font-size: .88rem; }
.cart-step-heading small { color: var(--muted); font-size: .7rem; }
.cart-drawer-head button,
.product-modal-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff3e8;
    color: var(--ink);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
.cart-items {
    display: grid;
    align-content: start;
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
    min-height: 190px;
}
.cart-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}
.cart-item img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    padding: 6px;
    border: 1px solid var(--photo-border);
    border-radius: 18px;
    background: #fff4e8;
    box-shadow: 0 10px 24px rgba(58, 35, 20, 0.08);
}
.cart-item strong {
    display: block;
    font-size: .96rem;
    line-height: 1.16;
}
.cart-item span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
}
.cart-item-controls {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.cart-item-controls button,
.cart-item-controls span {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 900;
}
.cart-item-controls button {
    cursor: pointer;
}
.cart-item-controls button:last-child {
    padding: 0 12px;
    color: var(--red);
}
.cart-empty {
    padding: 22px;
    border: 1px dashed rgba(242, 106, 33, 0.32);
    border-radius: 24px;
    background: #fff;
}
.cart-empty[hidden] {
    display: none;
}
.cart-empty p {
    margin-bottom: 0;
    color: var(--muted);
}
.cart-note {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 900;
}
.cart-note textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    font: inherit;
    resize: vertical;
}
.cart-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}
.cart-actions .btn-primary { gap: 8px; }
.cart-actions .btn-primary > span { background: rgba(255,255,255,.22); }
.ui-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(36, 23, 25, 0.36);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.22s ease;
}
.ui-backdrop.visible {
    opacity: 1;
}
.ui-backdrop.terms-visible { z-index: 75; }
.ui-backdrop[hidden] {
    display: none;
}
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}
.product-modal[hidden] {
    display: none;
}
.product-modal-panel {
    position: relative;
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
    gap: 28px;
    padding: 24px;
    border-radius: 34px;
    background: #fffdf8;
    box-shadow: 0 34px 110px rgba(36, 23, 25, 0.28);
    pointer-events: auto;
}
.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}
.product-modal-media {
    display: grid;
    place-items: center;
    min-height: 420px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, #fff, #fff0e0),
        radial-gradient(circle at 50% 50%, rgba(242, 106, 33, 0.1), transparent 62%);
    border: 1px solid var(--photo-border);
    box-shadow: var(--photo-shadow);
}
.product-modal-media img {
    width: calc(100% - 40px);
    max-height: 380px;
    object-fit: contain;
    padding: 0;
    border: 1px solid var(--photo-border);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--photo-shadow);
}
.product-modal-copy {
    align-self: center;
    padding-right: 42px;
}
.product-modal-copy h2 {
    font-size: 2.7rem;
}
.product-modal-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
}
.product-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.product-modal-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff3d8;
    color: #7a4d00;
    font-size: 0.78rem;
    font-weight: 900;
}
.product-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.product-modal-copy .modal-product-price { max-width: 390px; margin-top: 16px; }
.product-modal-copy .modal-product-price .product-price-copy strong { font-size: 1.6rem; }
.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}
.terms-modal[hidden] { display: none; }
.terms-modal-panel {
    width: min(820px, 100%);
    max-height: min(880px, calc(100vh - 48px));
    max-height: min(880px, calc(100dvh - 48px));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(111, 55, 24, .13);
    border-radius: 32px;
    background: #fffdf8;
    box-shadow: 0 36px 120px rgba(36, 23, 25, .34);
    pointer-events: auto;
}
.terms-modal-head {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(111, 55, 24, .1);
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 203, 92, .25), transparent 32%),
        linear-gradient(135deg, #fffaf1, #fff4e7);
}
.terms-modal-head h2 { margin: 1px 0 3px; font-size: 2rem; }
.terms-modal-head p:last-child { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.terms-shield {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(145deg, var(--red), #e98227);
    box-shadow: 0 12px 24px rgba(187, 61, 18, .22);
}
.terms-shield svg { width: 29px; fill: #fff; }
.terms-modal-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    color: var(--ink);
    font: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(36, 23, 25, .08);
}
.terms-modal-close:hover { background: #fff; color: var(--red); }
.terms-modal-scroll {
    overflow-y: auto;
    padding: 22px 26px;
    scrollbar-color: rgba(187,61,18,.35) transparent;
}
.terms-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: terms;
}
.terms-list > li {
    position: relative;
    min-height: 48px;
    padding: 14px 16px 14px 53px;
    border: 1px solid rgba(111, 55, 24, .1);
    border-radius: 17px;
    background: #fff;
    color: #533a2e;
    font-size: .88rem;
    line-height: 1.55;
    counter-increment: terms;
}
.terms-list > li::before {
    content: counter(terms, decimal-leading-zero);
    position: absolute;
    top: 12px;
    left: 13px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff1e2;
    color: var(--red);
    font-size: .69rem;
    font-weight: 950;
}
.shelf-life-term > strong { display: block; margin-bottom: 12px; color: var(--ink); font-size: 1rem; }
.shelf-life-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.shelf-life-grid > div {
    min-height: 88px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 11px;
    border-radius: 13px;
    background: #fff8ee;
}
.shelf-life-grid span { color: #7d5b48; font-size: .72rem; font-weight: 850; }
.shelf-life-grid b { color: var(--red); font-size: .9rem; }
.shelf-life-grid small { color: var(--muted); font-size: .66rem; line-height: 1.35; }
.storage-note {
    margin: 11px 0 0;
    padding: 10px 12px;
    border-left: 3px solid #e9a52c;
    border-radius: 0 10px 10px 0;
    background: #fff8df;
    color: #6d4a28;
    font-size: .76rem;
    line-height: 1.45;
}
.terms-modal-footer {
    display: grid;
    gap: 13px;
    padding: 17px 24px 20px;
    border-top: 1px solid rgba(111, 55, 24, .1);
    background: #fffdf8;
}
.terms-consent {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(187, 61, 18, .18);
    border-radius: 15px;
    background: #fff7ec;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 850;
    cursor: pointer;
}
.terms-consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.terms-checkmark {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(187, 61, 18, .3);
    border-radius: 8px;
    background: #fff;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.terms-consent input:checked + .terms-checkmark { border-color: var(--red); background: var(--red); transform: scale(1.04); }
.terms-consent input:checked + .terms-checkmark::after { content: '✓'; color: #fff; font-size: .82rem; font-weight: 950; }
.terms-consent input:focus-visible + .terms-checkmark { outline: 3px solid rgba(242,106,33,.2); outline-offset: 3px; }
.terms-modal-actions { display: grid; grid-template-columns: auto minmax(240px, 1fr); justify-content: end; gap: 10px; }
.terms-modal-actions .btn { min-height: 48px; }
.terms-modal-actions .btn-primary:disabled { opacity: .46; cursor: not-allowed; box-shadow: none; transform: none; }
body.modal-open { overflow: hidden; }
.customer-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}
.customer-fields > .cart-step-heading,
.customer-fields .field-wide,
.customer-fields .cart-form-status,
.customer-fields .cart-privacy-note { grid-column: 1 / -1; }
.customer-fields label { display: grid; gap: 6px; font-size: .78rem; font-weight: 900; }
.customer-fields input {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
.location-input-row { display: grid; grid-template-columns: 1fr auto; gap: 7px; }
.location-input-row button { border: 0; border-radius: 13px; padding: 8px 10px; background: #fff3e8; color: var(--red); font: inherit; font-size: .72rem; font-weight: 900; cursor: pointer; }
.cart-form-status { min-height: 18px; margin: 0; color: var(--red); font-size: .76rem; font-weight: 800; }
.cart-privacy-note { padding-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.cart-actions button:disabled, .customer-fields button:disabled { opacity: .62; cursor: wait; }
.modal-weight-picker {
    margin-top: 20px;
    padding-top: 0;
}
.category-band,
.menu-control-panel,
.menu-category,
.promise-band,
.qr-order-band {
    scroll-margin-top: 120px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.42), transparent 28%),
        linear-gradient(135deg, #16a34a 0%, #22c55e 48%, #77f29a 100%);
    color: #fff;
    font-weight: 900;
    box-shadow:
        0 18px 40px rgba(34, 197, 94, 0.38),
        0 0 0 0 rgba(34, 197, 94, 0.34);
    animation: whatsappFloat 3.1s ease-in-out infinite, whatsappGlow 2.7s ease-in-out infinite;
    transition: box-shadow 0.22s ease;
}
.floating-whatsapp { border: 0; cursor: pointer; }
.floating-whatsapp::after {
    content: '';
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -62%;
    width: 28px;
    z-index: 0;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: whatsappShine 2.85s ease-in-out infinite;
}
.floating-whatsapp:hover {
    box-shadow:
        0 22px 48px rgba(34, 197, 94, 0.48),
        0 0 0 10px rgba(34, 197, 94, 0.1);
}
.floating-whatsapp svg {
    position: relative;
    z-index: 1;
    width: 31px;
    height: 31px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
    animation: whatsappIconBeat 1.8s ease-in-out infinite;
}
@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.035); }
}
@keyframes whatsappGlow {
    0%, 100% {
        box-shadow:
            0 18px 40px rgba(34, 197, 94, 0.38),
            0 0 0 0 rgba(34, 197, 94, 0.34);
    }
    50% {
        box-shadow:
            0 24px 50px rgba(34, 197, 94, 0.48),
            0 0 0 12px rgba(34, 197, 94, 0.08);
    }
}
@keyframes whatsappShine {
    0%, 42% { transform: translateX(0) rotate(24deg); opacity: 0; }
    52% { opacity: 0.9; }
    68%, 100% { transform: translateX(210px) rotate(24deg); opacity: 0; }
}
@keyframes whatsappIconBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.site-footer {
    width: var(--container);
    margin: 40px auto 24px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }
.site-footer a {
    color: var(--red);
    font-weight: 900;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay { transition-delay: 0.1s; }

@media (max-width: 1100px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.8rem; }
    .product-grid,
    .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand-hero-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-menu-hero .menu-hero-copy {
        justify-items: center;
    }
    .menu-logo-stage {
        margin-inline: auto;
    }
    .brand-product-collage {
        width: min(620px, 100%);
        margin: 0 auto;
    }
    .category-showcase .category-card {
        grid-template-columns: 1fr;
    }
    .category-card-preview {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .menu-control-panel,
    .qr-order-band,
    .product-modal-panel {
        grid-template-columns: 1fr;
    }
    .occasion-strip {
        grid-template-columns: 1fr;
    }
    .product-modal-copy {
        padding-right: 0;
    }
}

@media (max-width: 980px) {
    .site-header { min-height: 70px; }
    .nav-toggle {
        display: inline-flex;
    }
    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 104px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a { text-align: center; }
    .nav-cart-pill {
        width: 100%;
    }
    .hero,
    .menu-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 62px;
    }
    .brand-menu-hero {
        min-height: auto;
    }
    .brand-logo-stage {
        width: min(100%, 520px);
    }
    .hero-visual,
    .hero-photo-stack { min-height: 460px; }
    .magic-counter { min-height: 500px; }
    .magic-spotlight {
        width: min(74%, 420px);
        margin-right: auto;
        margin-left: auto;
    }
    .magic-quality-mark {
        left: 8%;
        top: 44px;
    }
    .about-grid,
    .feature-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .product-grid,
    .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-control-panel {
        align-items: start;
    }
    .filter-scroller {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .filter-scroller button {
        flex: 0 0 auto;
    }
    .product-modal-media {
        min-height: 330px;
    }
}

@media (max-width: 700px) {
    :root { --container: min(1480px, calc(100% - 22px)); }
    html, body { max-width: 100%; overflow-x: clip; }
    .site-header,
    .section-pad,
    .setup-alert,
    .category-band,
    .promise-band,
    .menu-jump,
    .cta-band,
    .site-footer {
        width: calc(100% - 22px);
    }
    .site-header {
        top: 8px;
        margin-top: 8px;
        padding: 10px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
    }
    .brand {
        min-width: 0;
        gap: 10px;
        overflow: hidden;
    }
    .brand span { min-width: 0; }
    .brand strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .brand img { width: 92px; }
    .brand small { display: none; }
    .nav-toggle { justify-self: end; }
    .section-pad { padding: 34px 0; }
    h1 {
        font-size: 2.75rem;
        line-height: 1.04;
    }
    .menu-page h1,
    .brand-menu-hero h1 {
        max-width: 330px;
        font-size: 1.74rem;
        line-height: 1.04;
        overflow-wrap: break-word;
        text-wrap: balance;
    }
    h2 {
        font-size: 2.1rem;
        line-height: 1.1;
    }
    .hero,
    .menu-hero {
        gap: 22px;
        padding-top: 48px;
    }
    .brand-logo-stage {
        padding: 14px 10px;
        border-radius: 26px;
    }
    .brand-logo-stage::before {
        inset: 10px;
        border-radius: 20px;
    }
    .brand-logo-stage img {
        width: min(100%, 292px);
    }
    .brand-stage-caption strong {
        font-size: 1rem;
    }
    .brand-stage-caption span {
        max-width: 280px;
        margin-inline: auto;
        font-size: 0.82rem;
    }
    .brand-hero-panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }
    .brand-menu-hero .menu-hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .menu-logo-stage,
    .brand-logo-stage,
    .brand-product-collage { width: 100%; max-width: 100%; min-width: 0; }
    .brand-menu-hero .menu-hero-copy > p:not(.eyebrow) {
        max-width: min(100%, 330px);
        margin-inline: auto;
        font-size: 1rem;
        line-height: 1.58;
    }
    .brand-product-collage {
        min-height: 264px;
        border-radius: 26px;
    }
    .chip-1 {
        width: 64%;
        height: 150px;
        left: 18%;
        top: 24px;
    }
    .chip-2 {
        width: 42%;
        height: 110px;
        left: 7%;
        bottom: 28px;
    }
    .chip-3 {
        width: 38%;
        height: 100px;
        right: 8%;
        bottom: 48px;
    }
    .chip-4 {
        width: 30%;
        height: 78px;
        right: 10%;
        top: 32px;
    }
    .category-band {
        padding-top: 26px;
    }
    .category-band h2 {
        font-size: 1.85rem;
    }
    .menu-control-panel {
        width: calc(100% - 22px);
        margin-top: 24px;
        padding: 14px;
        border-radius: 26px;
        gap: 20px;
    }
    .menu-control-copy h2 {
        font-size: 1.82rem;
    }
    .menu-search-box input {
        min-height: 54px;
    }
    .filter-scroller {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        gap: 9px;
        padding-bottom: 0;
    }
    .filter-scroller button {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        gap: 6px;
        padding: 8px 9px 8px 12px;
        font-size: 0.88rem;
    }
    .filter-scroller strong {
        min-width: 28px;
        min-height: 28px;
        padding: 0 7px;
    }
    .occasion-strip,
    .qr-order-band,
    .menu-empty-filter {
        width: calc(100% - 22px);
    }
    .occasion-strip article {
        min-height: auto;
        padding: 14px;
        border-radius: 24px;
    }
    .menu-card-actions {
        grid-template-columns: 1fr 1fr;
    }
    .qr-order-band {
        padding: 24px;
        border-radius: 28px;
    }
    .qr-order-band h2 {
        font-size: 1.9rem;
    }
    .qr-card img {
        width: 150px;
    }
    .cart-drawer {
        width: 100%;
        padding: 14px;
        overflow-y: auto;
    }
    .cart-items-panel { min-height: 240px; max-height: 40vh; }
    .cart-items { min-height: 150px; }
    .customer-fields { grid-template-columns: 1fr; }
    .customer-fields > * { grid-column: 1 / -1; }
    .cart-drawer-head h2 {
        font-size: 1.9rem;
    }
    .cart-actions {
        grid-template-columns: 1fr;
    }
    .cart-dock {
        bottom: 10px;
        border-radius: 20px;
    }
    .menu-page .floating-whatsapp {
        right: 14px;
        bottom: 98px;
        width: 54px;
        height: 54px;
        display: grid;
        z-index: 46;
    }
    .menu-page .floating-whatsapp svg {
        width: 29px;
        height: 29px;
    }
    .product-modal {
        padding: 12px;
        align-items: end;
    }
    .product-modal-panel {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        padding: 16px;
        border-radius: 26px;
        gap: 18px;
    }
    .product-modal-media {
        min-height: 250px;
        border-radius: 22px;
    }
    .product-modal-media img {
        max-height: 230px;
        padding: 14px;
    }
    .product-modal-copy h2 {
        font-size: 2rem;
    }
    .product-modal-actions {
        display: grid;
    }
    .terms-modal { align-items: end; padding: 10px; }
    .terms-modal-panel {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 25px;
    }
    .terms-modal-head { grid-template-columns: auto 1fr auto; gap: 10px; padding: 15px; }
    .terms-modal-head h2 { font-size: 1.48rem; }
    .terms-modal-head p:last-child { display: none; }
    .terms-shield { width: 43px; height: 43px; border-radius: 14px; }
    .terms-shield svg { width: 24px; }
    .terms-modal-close { width: 37px; height: 37px; }
    .terms-modal-scroll { padding: 14px; }
    .terms-list { gap: 9px; }
    .terms-list > li { padding: 12px 12px 12px 48px; font-size: .81rem; }
    .shelf-life-grid { grid-template-columns: 1fr; }
    .shelf-life-grid > div { min-height: 67px; }
    .terms-modal-footer { padding: 13px 14px 15px; }
    .terms-consent { align-items: flex-start; padding: 11px; font-size: .78rem; }
    .terms-modal-actions { grid-template-columns: 1fr; }
    .category-band,
    .menu-control-panel,
    .menu-category,
    .promise-band,
    .qr-order-band {
        scroll-margin-top: 96px;
    }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .hero-visual,
    .hero-photo-stack { min-height: auto; }
    .magic-counter {
        min-height: 500px;
        margin-top: 6px;
    }
    .magic-counter::before {
        inset: 24px 0 88px;
    }
    .magic-spotlight,
    .menu-magic-counter .magic-spotlight {
        width: calc(100% - 54px);
        height: 292px;
        margin: 0 auto 92px;
    }
    .magic-spotlight img {
        height: calc(100% - 66px);
        padding: 10px;
    }
    .magic-spotlight figcaption {
        min-height: 66px;
        padding: 10px 14px;
    }
    .magic-spotlight strong {
        font-size: 1rem;
    }
    .magic-quality-mark {
        width: 82px;
        min-height: 82px;
        left: 4px;
        top: 22px;
    }
    .magic-quality-mark strong {
        font-size: 1.45rem;
    }
    .magic-quality-mark span {
        font-size: 0.62rem;
    }
    .magic-rail {
        bottom: 26px;
        padding: 12px 0 18px;
        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }
    .magic-rail-track {
        gap: 10px;
        animation-duration: 22s;
    }
    .magic-mini-card {
        width: 128px;
        min-height: 144px;
    }
    .magic-mini-card img {
        height: 94px;
        padding: 7px;
    }
    .magic-mini-card figcaption {
        min-height: 50px;
        font-size: 0.72rem;
        padding: 7px 8px;
    }
    .hero-photo-stack {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-product-shot {
        position: static;
        width: 100%;
        height: 280px;
    }
    .shot-1,
    .shot-2,
    .shot-3 {
        width: 100%;
        height: 280px;
    }
    .product-grid,
    .menu-jump,
    .menu-hero-board { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .menu-card { border-radius: 18px; }
    .menu-card-media { width: calc(100% - 16px); margin: 8px 8px 0; border-radius: 16px; aspect-ratio: 1; }
    .menu-card-media img { border-radius: 15px; }
    .menu-card-body { min-height: 0; padding: 10px; }
    .menu-card-body h3 { margin-bottom: 6px; font-size: .95rem; }
    .menu-card-body > p { display: none; }
    .product-price { min-height: 55px; gap: 7px; padding: 7px; border-radius: 13px; }
    .product-price-icon { width: 32px; height: 32px; flex-basis: 32px; border-radius: 10px; font-size: 1rem; }
    .product-price-copy small { font-size: .5rem; }
    .product-price-copy strong { font-size: 1rem; }
    .product-price-weight { padding: 4px 6px; font-size: .57rem; }
    .product-badges { min-height: 0; margin-bottom: 7px; gap: 4px; }
    .product-badges span { min-height: 21px; padding: 3px 6px; font-size: .58rem; }
    .product-weight-picker { padding-top: 7px; }
    .product-weight-picker > legend { font-size: .64rem; }
    .weight-options { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
    .weight-options span { min-height: 32px; padding: 5px 3px; border-radius: 10px; font-size: .65rem; }
    .menu-card-actions { gap: 5px; padding-top: 8px; }
    .menu-card-button { min-height: 36px; border-radius: 11px; font-size: .72rem; }
    .category-showcase .category-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }
    .category-card-copy strong {
        font-size: 1.7rem;
    }
    .category-card-preview {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
    }
    .category-card-preview img {
        border-radius: 18px;
        padding: 0;
    }
    .promise-band {
        padding: 28px 18px;
        border-radius: 30px;
    }
    .promise-grid {
        grid-template-columns: 1fr;
    }
    .menu-hero-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .menu-hero-thumb { min-height: 186px; }
    .menu-hero-thumb img {
        height: calc(100% - 42px);
        padding: 8px;
    }
    .menu-hero-thumb figcaption {
        min-height: 42px;
        padding: 7px 9px;
        font-size: 0.78rem;
    }
    .menu-hero-thumb:nth-child(2),
    .menu-hero-thumb:nth-child(3) {
        --card-offset-y: 0px;
        transform: none;
    }
    .menu-category-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .about-card,
    .stat-card,
    .feature-card,
    .contact-card,
    .cta-band { padding: 24px; }
    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-product-shot,
    .menu-hero-thumb,
    .hero-product-shot::after,
    .menu-hero-thumb::after,
    .magic-spotlight,
    .magic-spotlight::after,
    .magic-rail-track,
    .magic-quality-mark,
    .magic-counter::after {
        animation: none;
    }
    .brand-logo-stage,
    .brand-logo-stage img,
    .brand-stage-line::after,
    .brand-product-chip,
    .category-showcase .category-card,
    .category-card-preview img,
    .cart-dock.pulse,
    .floating-whatsapp,
    .floating-whatsapp::after,
    .floating-whatsapp svg {
        animation: none;
    }
}
