:root {
    --brand: #16332f;
    --brand-rgb: 22, 51, 47;
    --accent: #d8a65b;
    --accent-soft: #f2dfbc;
    --bg: #f6f1e8;
    --surface: #fffdf8;
    --surface-raised: #ffffff;
    --text: #18302c;
    --muted: #6e7b76;
    --line: rgba(22, 51, 47, .12);
    --danger: #b94c42;
    --success: #2e7d64;
    --shadow-sm: 0 12px 35px rgba(31, 52, 47, .08);
    --shadow-lg: 0 28px 80px rgba(21, 42, 38, .18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 76px;
    color-scheme: light;
}

html[data-theme="dark"] {
    --bg: #0f1d1b;
    --surface: #152522;
    --surface-raised: #1b2d29;
    --text: #f7f1e7;
    --muted: #aab6b1;
    --line: rgba(255, 255, 255, .11);
    --accent-soft: #4a3b27;
    --shadow-sm: 0 12px 35px rgba(0, 0, 0, .2);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, .42);
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 160px; }

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 5% 12%, rgba(216, 166, 91, .08), transparent 24rem),
        var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    transition: background-color .35s ease, color .35s ease;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

::selection { background: var(--accent); color: #142724; }

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 78%, white);
    outline-offset: 3px;
}

.icon { flex: 0 0 auto; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-content: center;
    gap: 22px;
    background: var(--brand);
    color: white;
    transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.is-hidden { opacity: 0; visibility: hidden; }

.loader-mark {
    display: grid;
    width: 74px;
    height: 74px;
    margin-inline: auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50% 50% 50% 15%;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 42px;
    animation: loaderFloat 1.6s ease-in-out infinite;
}

.loader-line { width: 130px; height: 2px; overflow: hidden; border-radius: 5px; background: rgba(255, 255, 255, .18); }
.loader-line i { display: block; width: 48%; height: 100%; background: var(--accent); animation: loaderLine 1.15s ease-in-out infinite; }

@keyframes loaderFloat { 50% { transform: translateY(-7px) rotate(3deg); } }
@keyframes loaderLine { from { transform: translateX(-120%); } to { transform: translateX(230%); } }

.announcement {
    position: relative;
    z-index: 50;
    display: flex;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 6px 18px;
    background: var(--accent);
    color: #19312d;
    font-size: .81rem;
    font-weight: 700;
    text-align: center;
}

.announcement p { margin: 0; }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 1.8s infinite; }

@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(22, 51, 47, 0); } 0%, 100% { box-shadow: 0 0 0 0 rgba(22, 51, 47, .28); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 45;
    display: flex;
    width: 100%;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px max(22px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(20px) saturate(140%);
}

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 49px; height: 49px; object-fit: contain; border-radius: 16px; }

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50% 50% 50% 12px;
    background: var(--brand);
    color: var(--accent);
    box-shadow: 0 7px 18px rgba(17, 48, 43, .2);
    font-family: Georgia, serif;
    font-size: 28px;
}

.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { overflow: hidden; font-size: 1.05rem; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions form { display: contents; }

.icon-button {
    position: relative;
    display: inline-flex;
    min-width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: var(--surface);
    cursor: pointer;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.icon-button:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); }
.icon-button.active { background: var(--brand); color: white; }
.theme-sun { display: none; }
html[data-theme="dark"] .theme-moon { display: none; }
html[data-theme="dark"] .theme-sun { display: block; color: var(--accent); }
.language-button span { font-size: .78rem; font-weight: 700; }
.favorite-count { display: none; min-width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--accent); color: #172e2a; font-size: .65rem; font-weight: 800; }
.favorite-count.has-items { display: grid; }

.hero {
    position: relative;
    display: grid;
    min-height: min(760px, calc(100vh - var(--header-height)));
    overflow: hidden;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 40px;
    padding: clamp(70px, 9vw, 130px) max(24px, calc((100vw - var(--container)) / 2));
    isolation: isolate;
    background:
        linear-gradient(125deg, color-mix(in srgb, var(--brand) 98%, black), color-mix(in srgb, var(--brand) 80%, #345b4e));
    color: white;
}

.hero.has-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(11, 32, 28, .92), rgba(11, 32, 28, .55)), var(--hero-image);
    background-position: center;
    background-size: cover;
}

[dir="ltr"] .hero.has-cover::before { background-image: linear-gradient(-90deg, rgba(11, 32, 28, .92), rgba(11, 32, 28, .55)), var(--hero-image); }

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-orb { position: absolute; z-index: -1; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.hero-orb-one { top: -160px; inset-inline-end: 4%; width: 520px; height: 520px; }
.hero-orb-two { bottom: -260px; inset-inline-start: 25%; width: 480px; height: 480px; }

.hero-content { position: relative; z-index: 2; max-width: 670px; }
.hero-eyebrow, .section-kicker { margin: 0 0 12px; color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.3rem, 9vw, 8.6rem); font-weight: 500; letter-spacing: -.065em; line-height: .87; text-wrap: balance; }
[dir="rtl"] .hero h1 { font-family: "Segoe UI", Tahoma, sans-serif; font-weight: 800; letter-spacing: -.055em; }
.hero-tagline { max-width: 580px; margin: 28px 0 0; color: rgba(255, 255, 255, .76); font-size: clamp(1.05rem, 2vw, 1.4rem); line-height: 1.75; }

.open-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    font-size: .76rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.open-status span { width: 8px; height: 8px; border-radius: 50%; }
.open-status.is-open span { background: #7be0ad; box-shadow: 0 0 0 5px rgba(123, 224, 173, .12); }
.open-status.is-closed span { background: #f19b91; box-shadow: 0 0 0 5px rgba(241, 155, 145, .12); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.primary-button, .ghost-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border: 0;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.primary-button { background: var(--accent); color: #19312d; box-shadow: 0 12px 30px rgba(216, 166, 91, .2); }
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(216, 166, 91, .3); }
.ghost-button { border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .06); color: white; backdrop-filter: blur(10px); }
.ghost-button:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); }
.hero-address { display: flex; align-items: center; gap: 8px; margin: 25px 0 0; color: rgba(255, 255, 255, .62); font-size: .88rem; }

.hero-dish {
    position: relative;
    display: grid;
    width: min(38vw, 510px);
    aspect-ratio: 1;
    justify-self: end;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), rgba(255, 255, 255, .015) 62%, transparent 63%);
    animation: dishFloat 7s ease-in-out infinite;
}

.dish-ring { position: absolute; inset: 9%; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; box-shadow: inset 0 0 90px rgba(0, 0, 0, .16), 0 50px 100px rgba(0, 0, 0, .22); }
.dish-emoji { display: grid; width: 56%; aspect-ratio: 1; place-items: center; border: 2px solid rgba(255, 255, 255, .45); border-radius: 50%; background: linear-gradient(145deg, #fff9eb, #dcd5c6); box-shadow: 0 25px 80px rgba(0, 0, 0, .3); font-size: clamp(5rem, 10vw, 9rem); filter: saturate(.85); transform: rotate(-7deg); }
.ingredient { position: absolute; display: grid; place-items: center; font-style: normal; filter: drop-shadow(0 10px 10px rgba(0,0,0,.25)); }
.ingredient-one { top: 6%; inset-inline-start: 3%; font-size: 4rem; transform: rotate(-28deg); }
.ingredient-two { top: 18%; inset-inline-end: 2%; color: var(--accent); font-size: 3rem; }
.ingredient-three { bottom: 5%; inset-inline-end: 10%; font-size: 3.8rem; transform: rotate(20deg); }

@keyframes dishFloat { 50% { transform: translateY(-14px) rotate(1.5deg); } }

.menu-shell { width: min(100% - 36px, var(--container)); margin: 0 auto; padding: clamp(65px, 8vw, 105px) 0 90px; }

.search-wrap {
    position: relative;
    display: flex;
    width: min(100%, 760px);
    height: 66px;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
    padding: 0 21px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-sm);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.search-wrap:focus-within { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 75%, var(--line)); box-shadow: 0 18px 48px rgba(31, 52, 47, .12); }
.search-wrap > .icon { color: var(--accent); }
.search-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 1rem; }
.search-wrap input::placeholder { color: var(--muted); opacity: .8; }
.search-wrap kbd { min-width: 26px; padding: 2px 7px; border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; color: var(--muted); font-family: inherit; font-size: .72rem; text-align: center; }
.clear-search { display: none; padding: 5px; border: 0; background: transparent; cursor: pointer; }
.search-wrap.has-value .clear-search { display: inline-grid; }

.category-bar-wrap { position: sticky; top: calc(var(--header-height) + 10px); z-index: 35; margin: 38px -18px 0; padding: 10px 18px; overflow: hidden; background: linear-gradient(var(--bg) 64%, transparent); }
.category-bar { display: flex; gap: 10px; overflow-x: auto; padding: 4px max(0px, calc((100% - 1050px) / 2)) 12px; scrollbar-width: none; scroll-snap-type: x proximity; }
.category-bar::-webkit-scrollbar { display: none; }

.category-chip {
    display: inline-flex;
    min-height: 47px;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    color: var(--muted);
    cursor: pointer;
    scroll-snap-align: center;
    backdrop-filter: blur(16px);
    transition: .24s ease;
}

.category-chip > span { font-size: 1.05rem; }
.category-chip small { display: grid; min-width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--bg); color: var(--muted); font-size: .68rem; }
.category-chip:hover { transform: translateY(-2px); color: var(--text); }
.category-chip.active { border-color: var(--brand); background: var(--brand); color: white; box-shadow: 0 10px 25px rgba(22, 51, 47, .18); }
.category-chip.active small { background: rgba(255, 255, 255, .13); color: white; }

.menu-sections { margin-top: 64px; }
.menu-category { margin-top: 90px; }
.menu-category:first-child { margin-top: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section-heading h2 { display: flex; align-items: center; gap: 13px; margin: 0; font-size: clamp(1.75rem, 3.6vw, 2.55rem); letter-spacing: -.035em; }
.section-heading h2 span { font-size: .85em; }
.section-heading p { max-width: 620px; margin: 10px 0 0; color: var(--muted); }
.section-heading .section-kicker { margin-bottom: 4px; }
.section-count { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: .8rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, border-color .32s ease;
}

.product-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); box-shadow: var(--shadow-lg); }
.product-card[hidden] { display: none; }

.product-media { position: relative; display: block; width: 100%; aspect-ratio: 1.25; overflow: hidden; padding: 0; border: 0; background: color-mix(in srgb, var(--brand) 8%, var(--surface)); cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle at 50% 50%, var(--accent-soft), color-mix(in srgb, var(--brand) 9%, var(--surface)) 65%); }
.product-placeholder i { display: grid; width: 42%; aspect-ratio: 1; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--surface) 62%, transparent); box-shadow: 0 20px 40px rgba(31, 52, 47, .1); font-size: clamp(3rem, 7vw, 5.5rem); font-style: normal; transform: rotate(-7deg); }
.media-shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.22) 48%, transparent 58%); transform: translateX(-120%); transition: transform .9s ease; }
.product-card:hover .media-shine { transform: translateX(120%); }

.product-badge { position: absolute; top: 16px; inset-inline-start: 16px; padding: 7px 11px; border-radius: 50px; background: var(--accent); color: #15302b; box-shadow: 0 5px 18px rgba(0,0,0,.12); font-size: .7rem; font-weight: 800; }
.favorite-button { position: absolute; z-index: 3; top: 15px; inset-inline-end: 15px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(255,255,255,.82); color: #24413b; box-shadow: 0 5px 20px rgba(0,0,0,.12); cursor: pointer; backdrop-filter: blur(10px); transition: transform .2s ease, color .2s ease, background .2s ease; }
.favorite-button:hover { transform: scale(1.08); }
.favorite-button.active, .round-action.active { background: #fff0ed; color: #c44f45; }
.favorite-button.active svg, .round-action.active svg { fill: currentColor; }

.product-body { padding: 21px; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.product-category-name { margin: 0 0 3px; color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-body h3 { margin: 0; font-size: 1.18rem; line-height: 1.35; }
.product-price { display: flex; flex: 0 0 auto; align-items: baseline; gap: 4px; color: var(--brand); }
html[data-theme="dark"] .product-price { color: var(--accent); }
.product-price strong { font-size: 1.15rem; }
.product-price span { color: var(--muted); font-size: .7rem; }
.product-description { min-height: 48px; margin: 13px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.75; }
.product-meta { display: flex; min-height: 28px; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 15px; color: var(--muted); font-size: .72rem; }
.product-meta span { display: inline-flex; align-items: center; gap: 5px; }
.product-meta .spicy { color: #b85b4e; }
.product-link { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-top: 18px; padding: 14px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--text); font-size: .78rem; font-weight: 800; cursor: pointer; }
.product-link svg { transition: transform .22s ease; }
.product-link:hover svg { transform: translateX(-4px); }
[dir="ltr"] .product-link svg { transform: rotate(180deg); }
[dir="ltr"] .product-link:hover svg { transform: rotate(180deg) translateX(-4px); }

.empty-state { padding: 90px 20px; text-align: center; }
.empty-state > span { display: grid; width: 90px; height: 90px; margin: 0 auto 24px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 3rem; }
.empty-state h2 { margin: 0; font-size: 1.6rem; }
.empty-state p { margin: 8px 0 24px; color: var(--muted); }

.story-section { display: grid; width: min(100% - 36px, var(--container)); grid-template-columns: 1.1fr .9fr; gap: 22px; margin: 0 auto 80px; }
.story-card, .contact-card { position: relative; min-height: 350px; overflow: hidden; border-radius: var(--radius-lg); }
.story-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 80px); background: var(--brand); color: white; }
.story-card h2 { max-width: 650px; margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.15; }
.story-card > p:last-child { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.66); }
.story-mark { position: absolute; top: -48px; inset-inline-end: 35px; color: rgba(255,255,255,.07); font-family: Georgia, serif; font-size: 17rem; line-height: 1; }
.contact-card { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; padding: clamp(30px, 5vw, 55px); border: 1px solid var(--line); background: var(--surface); }
.contact-orbit { display: grid; width: 140px; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.contact-orbit::before { content: ""; position: absolute; width: 92px; height: 92px; border-radius: 50%; background: var(--accent-soft); }
.contact-orbit span { position: relative; z-index: 1; color: var(--accent); font-size: 2.5rem; animation: spinSlow 10s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.contact-card h2 { margin: 0 0 8px; font-size: 2rem; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-actions { display: grid; gap: 10px; margin-top: 24px; }
.contact-actions a { display: flex; align-items: center; gap: 9px; font-size: .84rem; font-weight: 700; }
.contact-actions a:hover { color: var(--accent); }
.hours-details { margin-top: 18px; }
.hours-details summary { display: flex; width: fit-content; align-items: center; gap: 7px; color: var(--text); font-size: .77rem; font-weight: 800; cursor: pointer; list-style: none; }
.hours-details summary::-webkit-details-marker { display: none; }
.hours-details > div { display: grid; min-width: 230px; gap: 4px; margin-top: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); }
.hours-details p { display: flex; justify-content: space-between; gap: 18px; margin: 0; font-size: .67rem; }
.hours-details p strong { color: var(--text); font-weight: 700; }

.site-footer { display: grid; width: min(100% - 36px, var(--container)); grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; margin: 0 auto; padding: 28px 0 38px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-brand .brand-mark { width: 42px; height: 42px; font-size: 23px; }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--text); }
.footer-brand small { font-size: .72rem; }
.site-footer > p { justify-self: end; margin: 0; font-size: .75rem; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s ease; }
.social-links a:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }

.whatsapp-float { position: fixed; z-index: 36; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 16px 36px rgba(22, 93, 55, .32); font-size: 1.6rem; }
[dir="rtl"] .whatsapp-float { right: auto; left: 22px; }
.whatsapp-float i { position: absolute; inset: -5px; border: 1px solid rgba(37,211,102,.45); border-radius: 50%; animation: whatsappPulse 2.2s ease-out infinite; }
@keyframes whatsappPulse { to { transform: scale(1.35); opacity: 0; } }

.product-dialog { width: min(920px, calc(100% - 30px)); max-height: min(780px, calc(100dvh - 30px)); padding: 0; overflow: visible; border: 0; border-radius: 30px; background: var(--surface); color: var(--text); box-shadow: 0 40px 120px rgba(0,0,0,.35); }
.product-dialog::backdrop { background: rgba(7, 20, 18, .72); backdrop-filter: blur(8px); }
.product-dialog[open] { animation: dialogIn .35s cubic-bezier(.2,.9,.2,1); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(30px) scale(.97); } }
.dialog-panel { position: relative; display: grid; max-height: inherit; overflow: auto; grid-template-columns: .95fr 1.05fr; border-radius: inherit; }
.dialog-close { position: absolute; z-index: 5; top: 16px; inset-inline-end: 16px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(255,255,255,.85); color: #18302c; cursor: pointer; backdrop-filter: blur(8px); }
.dialog-media { position: relative; min-height: 560px; overflow: hidden; background: color-mix(in srgb, var(--brand) 9%, var(--surface)); }
.dialog-media > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.dialog-placeholder { display: grid; position: absolute; inset: 0; place-items: center; background: radial-gradient(circle, var(--accent-soft), color-mix(in srgb, var(--brand) 8%, var(--surface))); font-size: 7rem; }
.dialog-thumbs { position: absolute; right: 16px; bottom: 16px; left: 16px; display: flex; justify-content: center; gap: 8px; }
.dialog-thumbs button { width: 54px; height: 54px; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 12px; background: white; cursor: pointer; }
.dialog-thumbs button.active { border-color: var(--accent); }
.dialog-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.dialog-content { display: flex; flex-direction: column; padding: 54px 42px 38px; }
.dialog-badge { width: fit-content; margin-bottom: 13px; padding: 6px 11px; border-radius: 50px; background: var(--accent-soft); color: color-mix(in srgb, var(--brand) 90%, black); font-size: .7rem; font-weight: 800; }
.dialog-badge:empty { display: none; }
.dialog-content h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.2; }
.dialog-content > p { margin: 17px 0 0; color: var(--muted); line-height: 1.8; }
.dialog-meta, .dialog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.dialog-meta span, .dialog-tags span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 50px; color: var(--muted); font-size: .72rem; }
.dialog-tags span { border-color: transparent; background: color-mix(in srgb, var(--brand) 8%, var(--surface)); color: var(--text); }
.dialog-variants, .dialog-allergens { margin-top: 24px; }
.dialog-variants h3, .dialog-allergens h3 { margin: 0 0 10px; font-size: .8rem; }
.variant-list { display: grid; gap: 7px; }
.variant-list button { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
.variant-list button.active { border-color: var(--accent); background: var(--accent-soft); }
.dialog-allergens p { margin: 0; color: var(--muted); font-size: .78rem; }
.dialog-bottom { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 30px; }
.dialog-price { display: grid; }
.dialog-price small { color: var(--muted); font-size: .7rem; }
.dialog-price strong { color: var(--brand); font-size: 1.7rem; }
html[data-theme="dark"] .dialog-price strong { color: var(--accent); }
.dialog-actions { display: flex; gap: 8px; }
.round-action { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); cursor: pointer; }

.toast { position: fixed; z-index: 100; bottom: 30px; left: 50%; max-width: min(90vw, 420px); padding: 12px 18px; border-radius: 50px; background: var(--brand); color: white; box-shadow: var(--shadow-lg); font-size: .8rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .28s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.product-card:nth-child(2) { transition-delay: .06s; }
.product-card:nth-child(3) { transition-delay: .12s; }

@media (max-width: 1050px) {
    .hero { grid-template-columns: 1fr .65fr; }
    .hero-dish { width: min(40vw, 410px); }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .story-section { grid-template-columns: 1fr; }
    .contact-card { min-height: 280px; }
}

@media (max-width: 760px) {
    :root { --header-height: 68px; }
    .site-header { padding-inline: 16px; }
    .brand-mark, .brand img { width: 43px; height: 43px; }
    .brand-copy strong { max-width: 130px; }
    .language-button span { display: none; }
    .icon-button { width: 41px; min-width: 41px; height: 41px; padding: 0; }
    .hero { min-height: 680px; grid-template-columns: 1fr; align-content: center; padding: 76px 22px 105px; }
    .hero h1 { font-size: clamp(4rem, 20vw, 6.5rem); }
    .hero-dish { position: absolute; right: -100px; bottom: -130px; width: 360px; opacity: .38; }
    [dir="rtl"] .hero-dish { right: auto; left: -100px; }
    .hero-content { z-index: 3; }
    .hero-tagline { max-width: 87%; }
    .menu-shell { width: min(100% - 24px, var(--container)); padding-top: 55px; }
    .search-wrap { height: 60px; border-radius: 18px; }
    .search-wrap kbd { display: none; }
    .category-bar-wrap { margin-inline: -12px; padding-inline: 12px; }
    .category-chip { min-height: 43px; padding-inline: 14px; font-size: .82rem; }
    .menu-sections { margin-top: 50px; }
    .menu-category { margin-top: 70px; }
    .product-grid { grid-template-columns: 1fr; gap: 17px; }
    .product-card { display: grid; grid-template-columns: 126px 1fr; min-height: 176px; border-radius: 19px; }
    .product-media { height: 100%; aspect-ratio: auto; }
    .product-placeholder i { width: 70%; font-size: 3rem; }
    .product-body { display: flex; min-width: 0; flex-direction: column; padding: 16px; }
    .product-title-row { gap: 8px; }
    .product-body h3 { font-size: 1rem; }
    .product-price { display: grid; gap: 0; text-align: end; line-height: 1.1; }
    .product-price strong { font-size: 1rem; }
    .product-description { min-height: 0; margin-top: 7px; font-size: .76rem; line-height: 1.55; }
    .product-meta { margin-top: 9px; font-size: .67rem; }
    .product-link { margin-top: auto; padding-top: 9px; }
    .favorite-button { top: 9px; inset-inline-end: auto; inset-inline-start: 9px; width: 35px; height: 35px; }
    .product-badge { top: auto; right: 8px; bottom: 8px; left: 8px; text-align: center; }
    .section-heading { align-items: center; }
    .section-heading h2 { font-size: 1.7rem; }
    .story-section { width: min(100% - 24px, var(--container)); margin-bottom: 55px; }
    .story-card { min-height: 390px; padding: 38px 27px; }
    .contact-card { grid-template-columns: 1fr; min-height: 370px; }
    .contact-orbit { width: 105px; }
    .site-footer { width: min(100% - 28px, var(--container)); grid-template-columns: 1fr auto; }
    .site-footer > p { grid-column: 1 / -1; justify-self: start; }
    .dialog-panel { grid-template-columns: 1fr; }
    .product-dialog { max-height: calc(100dvh - 18px); border-radius: 24px; }
    .dialog-media { min-height: 270px; max-height: 330px; }
    .dialog-media > img { min-height: 270px; max-height: 330px; }
    .dialog-content { padding: 30px 23px 25px; }
    .dialog-close { top: 12px; inset-inline-end: 12px; }
    .dialog-thumbs { justify-content: start; overflow-x: auto; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 18px; }
}

@media (max-width: 410px) {
    .brand-copy { display: none; }
    .hero-actions { display: grid; }
    .hero-actions > * { width: 100%; }
    .product-card { grid-template-columns: 112px 1fr; }
    .product-description { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .product-meta span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
