/* ==========================================================================
   HACIZADE KÜNEFE — Premium Menü Deneyimi
   Tema: Tabela Paleti — Koyu Yeşil Zemin / Haki / Altın-Hardal Vurgu / Fildişi
   Renk oranları restoran tabelasından (logo) piksel analiziyle alınmıştır:
   koyu yeşil %55+, haki tonlar %8, altın-hardal %2, fildişi metin.
   ========================================================================== */

:root {
    --bg-deep: #021b0e;
    --bg-soft: #06301a;
    --bg-card: #053015;
    --cream: #f2ecd8;
    --cream-dim: #cfc9a8;
    --gold: #a99451;
    --gold-bright: #c4ab63;
    --gold-deep: #6f5f2e;
    --amber: #b08a3e;
    --cherry: #8a4f2e;
    --green: #5e6937;
    --cyan: #4b5e31;
    --brand-green: #5e6937;
    --brand-green-soft: #8f9755;
    --text-main: #f2ecd8;
    --text-muted: #b8ae84;
    --text-dim: #8a815e;
    /* Harici font çağrısı yok: sistemdeki serif/sans aileleri kullanılır. */
    --font-display: Georgia, 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-gold: 0 14px 40px -8px rgba(169, 148, 81, 0.35);
    --shadow-card: 0 20px 45px -12px rgba(0, 0, 0, 0.65);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

/* ========================================================================== 
   SPA MODLARI — normal vitrin + hızlı QR menü görünümü
   ========================================================================== */
html[data-spa-mode="qr"] .splash,
html[data-spa-mode="qr"] [data-spa-view="home"],
html[data-spa-mode="qr"] [data-spa-view="hakkimizda"],
html[data-spa-mode="qr"] .footer {
    display: none !important;
}

html[data-spa-mode="qr"] [data-spa-view="menu"],
html[data-spa-mode="qr"] [data-spa-view="konum"],
html[data-spa-mode="qr"] [data-spa-view="iletisim"] {
    display: none;
}

html[data-spa-mode="qr"][data-spa-view="menu"] [data-spa-view="menu"],
html[data-spa-mode="qr"][data-spa-view="konum"] [data-spa-view="konum"],
html[data-spa-mode="qr"][data-spa-view="iletisim"] [data-spa-view="iletisim"] {
    display: block;
}

html[data-spa-mode="qr"] .navbar {
    background: rgba(2, 27, 14, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

html[data-spa-mode="qr"] .nav-link[data-spa-nav="hakkimizda"] {
    display: none;
}

html[data-spa-mode="qr"] .menu-section,
html[data-spa-mode="qr"] .location-section,
html[data-spa-mode="qr"] .contact-section {
    min-height: 100vh;
    padding-top: 112px;
}

html[data-spa-mode="qr"] .menu-section::before,
html[data-spa-mode="qr"] .location-section::before,
html[data-spa-mode="qr"] .contact-section::before {
    display: none;
}

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

/* Ekran dışındaki uzun bölümlerin ilk layout/paint maliyetini düşür. */
.menu-category,
.about-section,
.location-section,
.contact-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 900px;
}

a { text-decoration: none; color: inherit; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #4a3418; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

::selection { background: var(--gold); color: #1a0f04; }

/* ==========================================================================
   BUTONLAR
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
    color: #052413;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -8px rgba(196, 171, 99, 0.5);
}

.btn-ghost {
    background: rgba(249, 239, 220, 0.07);
    border: 1.5px solid rgba(196, 171, 99, 0.4);
    color: var(--cream);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(249, 239, 220, 0.14);
    border-color: var(--gold-bright);
    transform: translateY(-3px);
}

/* ==========================================================================
   SPLASH / GİRİŞ EKRANI
   ========================================================================== */
.splash {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background:
        radial-gradient(ellipse at 50% 110%, rgba(217, 164, 65, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 0%, rgba(138, 79, 46, 0.14) 0%, transparent 45%),
        linear-gradient(180deg, #06301a 0%, var(--bg-deep) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}
.splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Parçacıklar (CSS ile ışıltılar) */
.splash-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.splash-particles::before,
.splash-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: particleDrift 12s ease-in-out infinite alternate;
}
.splash-particles::before {
    background: radial-gradient(circle, rgba(196, 171, 99, 0.5), transparent 65%);
    top: -80px; right: -80px;
}
.splash-particles::after {
    background: radial-gradient(circle, rgba(224, 123, 42, 0.4), transparent 65%);
    bottom: -80px; left: -80px;
    animation-delay: 6s;
}
@keyframes particleDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.15); }
}

.splash-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Logo animasyonu */
.splash-logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    animation: splashLogoIn 1s ease-out both;
}
@keyframes splashLogoIn {
    0% { transform: scale(0.2) rotate(-25deg); opacity: 0; }
    60% { transform: scale(1.08) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.splash-logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(196, 171, 99, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoSpin 30s linear infinite;
}
@keyframes logoSpin { to { transform: rotate(360deg); } }
.splash-logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: contain;
    background: #04210f;
    padding: 6px;
    box-shadow: 0 0 40px rgba(196, 171, 99, 0.45), inset 0 0 12px rgba(0,0,0,0.6);
}
.splash-logo-glow {
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 171, 99, 0.28) 0%, transparent 65%);
    filter: blur(18px);
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.splash-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--cream);
    animation: fadeUp 0.9s 0.25s ease-out both;
}
.splash-title-accent {
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(196, 171, 99, 0.5);
}
.splash-slogan {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--amber);
    margin-top: 6px;
    animation: fadeUp 0.9s 0.4s ease-out both;
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

.splash-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin: 22px auto;
    max-width: 340px;
    animation: fadeUp 0.9s 0.5s ease-out both;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); }
.divider-ornament { color: var(--gold-bright); font-size: 0.9rem; animation: sparkle 2.5s ease-in-out infinite; }
@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(90deg); }
}

.splash-cta-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    animation: fadeUp 0.9s 0.6s ease-out both;
}

/* ====== 3 ANA KUTU ====== */
.splash-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    perspective: 1200px;
}

.splash-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(249, 239, 220, 0.14);
    background: linear-gradient(165deg, rgba(43, 26, 10, 0.85), rgba(28, 16, 6, 0.9));
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: var(--transition);
    animation: boxPop 0.8s ease-out both;
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.6);
}
.splash-box:nth-child(1) { animation-delay: 0.75s; }
.splash-box:nth-child(2) { animation-delay: 0.9s; }
.splash-box:nth-child(3) { animation-delay: 1.05s; }

@keyframes boxPop {
    0% { opacity: 0; transform: translateY(40px) scale(0.92); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card), 0 0 50px -10px rgba(196, 171, 99, 0.4);
}

/* Her kutunun kendi rengi */
.box-menu { border-top: 3px solid var(--gold); }
.box-location { border-top: 3px solid var(--green); }
.box-contact { border-top: 3px solid var(--cyan); }

.box-menu .box-icon { background: rgba(217, 164, 65, 0.16); color: var(--gold-bright); box-shadow: inset 0 0 20px rgba(217, 164, 65, 0.15); }
.box-location .box-icon { background: rgba(94, 105, 55, 0.16); color: #8f9755; box-shadow: inset 0 0 20px rgba(94, 105, 55, 0.15); }
.box-contact .box-icon { background: rgba(94, 105, 55, 0.18); color: #8f9755; box-shadow: inset 0 0 20px rgba(94, 105, 55, 0.18); }

.box-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}
.box-icon svg { width: 30px; height: 30px; }
.splash-box:hover .box-icon { transform: scale(1.12) rotate(-6deg); }

.box-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.box-desc { font-size: 0.86rem; color: var(--text-muted); }

.box-arrow {
    margin-top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 239, 220, 0.08);
    transition: var(--transition);
}
.box-arrow svg { width: 17px; height: 17px; }
.splash-box:hover .box-arrow {
    background: var(--gold);
    color: #052413;
    transform: translateX(4px);
}

/* Kutu parlama efekti */
.box-shine {
    position: absolute;
    top: -60%;
    left: -30%;
    width: 60%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    transform: rotate(20deg);
    transition: left 0.8s ease;
    pointer-events: none;
}
.splash-box:hover .box-shine { left: 130%; }

.splash-skip {
    color: var(--text-dim);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    animation: fadeUp 0.9s 1.2s ease-out both;
}
.splash-skip:hover { color: var(--gold-bright); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(22, 13, 6, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    padding: 10px 0;
}

.nav-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-card);
    padding: 4px;
    box-shadow: 0 0 16px rgba(196, 171, 99, 0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cream);
}
.brand-name em { color: var(--gold-bright); font-style: normal; }
.brand-tag { font-size: 0.66rem; color: var(--text-muted); letter-spacing: 1px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cream-dim);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-link svg { width: 16px; height: 16px; color: var(--gold); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-bright), var(--brand-green));
    transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(249, 239, 220, 0.07);
    border: 1px solid rgba(249, 239, 220, 0.15);
    align-items: center;
    justify-content: center;
}
.nav-burger svg { width: 22px; height: 22px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.15); } }
.hero-bg-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 13, 6, 0.96) 0%, rgba(22, 13, 6, 0.72) 45%, rgba(22, 13, 6, 0.25) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(217, 164, 65, 0.18) 0%, transparent 55%);
}

.hero-content {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(196, 171, 99, 0.12), rgba(94, 105, 55, 0.16));
    border: 1px solid rgba(169, 148, 81, 0.35);
    color: var(--gold-bright);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    animation: fadeUp 1s 0.2s ease-out both;
}
.hero-badge svg { width: 15px; height: 15px; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp 1s 0.35s ease-out both;
}
.hero-title-accent {
    background: linear-gradient(120deg, var(--gold-bright), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 18px rgba(196, 171, 99, 0.35));
}

.hero-sub {
    max-width: 560px;
    color: var(--cream-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 34px;
    animation: fadeUp 1s 0.5s ease-out both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 54px;
    animation: fadeUp 1s 0.65s ease-out both;
}

.hero-stats {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.8s ease-out both;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 6px; }

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 20px; height: 20px; color: var(--gold); }
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   BÖLÜM ORTAK
   ========================================================================== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-eyebrow svg { width: 16px; height: 16px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   MENÜ
   ========================================================================== */
.menu-section {
    padding: 100px 24px 80px;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
}
.menu-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.4), transparent);
}

/* Filtreler */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(249, 239, 220, 0.05);
    border: 1px solid rgba(249, 239, 220, 0.12);
    transition: var(--transition);
}
.filter-btn:hover {
    color: var(--cream);
    border-color: rgba(196, 171, 99, 0.5);
    transform: translateY(-2px);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #052413;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* Kategori */
.menu-category { margin-bottom: 70px; }
.menu-category.hidden { display: none; }

.category-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}
.category-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cream);
    white-space: nowrap;
}
.category-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-deep), transparent); }
.category-count {
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(217, 164, 65, 0.12);
    border: 1px solid rgba(217, 164, 65, 0.3);
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Ürün kartı */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 26px;
}

.dish-card {
    background: linear-gradient(170deg, var(--bg-card), #032010);
    border: 1px solid rgba(249, 239, 220, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.dish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 171, 99, 0.45);
    box-shadow: var(--shadow-card), 0 0 40px -12px rgba(196, 171, 99, 0.35);
}

.dish-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.dish-img-wrap picture { display: block; width: 100%; height: 100%; }
.dish-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    cursor: pointer;
}
.dish-img-wrap:hover .dish-img { transform: scale(1.08) rotate(0.5deg); }
.dish-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(22, 13, 6, 0.75) 100%);
    pointer-events: none;
}

/* ==========================================================================
   İKRAM BİLGİLENDİRMESİ — Menü girişinde zarif not
   ========================================================================== */
.ikram-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: -20px auto 44px;
    padding: 12px 24px;
    background: rgba(196, 171, 99, 0.06);
    border: 1px solid rgba(196, 171, 99, 0.2);
    border-radius: 999px;
}
.ikram-banner-icon {
    flex-shrink: 0;
    width: 17px; height: 17px;
    color: var(--gold);
}
.ikram-banner-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}
.ikram-banner-text strong {
    color: var(--gold-bright);
    font-weight: 700;
}

.dish-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.dish-badge.best { background: rgba(138, 79, 46, 0.85); color: #fff; }
.dish-badge.chef { background: rgba(196, 171, 99, 0.9); color: #052413; }
.dish-badge.signature { background: linear-gradient(135deg, var(--cherry), #8f2218); color: #fff; }
.dish-badge.crunch { background: rgba(224, 123, 42, 0.85); color: #fff; }
.dish-badge.modern { background: rgba(122, 78, 180, 0.85); color: #fff; }
.dish-badge.pistachio { background: rgba(96, 153, 71, 0.9); color: #fff; }
.dish-badge.alt { background: rgba(94, 105, 55, 0.85); color: #fff; }
.dish-badge.cream { background: rgba(242, 214, 160, 0.9); color: #4a2f12; }
.dish-badge.gaziantep { background: rgba(138, 79, 46, 0.85); color: #fff; }
.dish-badge.popular { background: rgba(94, 105, 55, 0.88); color: #fff; }
.dish-badge.new { background: rgba(196, 171, 99, 0.92); color: #052413; }
.dish-badge.maras { background: rgba(224, 123, 42, 0.88); color: #fff; }

.dish-expand {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(22, 13, 6, 0.55);
    border: 1px solid rgba(249, 239, 220, 0.25);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}
.dish-card:hover .dish-expand { opacity: 1; transform: scale(1); }
.dish-expand:hover { background: var(--gold); color: #052413; border-color: transparent; }
.dish-expand svg { width: 18px; height: 18px; }

.dish-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }

.dish-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.dish-name {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 800;
    color: #fff;
}
.dish-price-tag {
    color: var(--gold-bright);
    font-weight: 800;
    font-size: 0.92rem;
    white-space: nowrap;
    background: rgba(217, 164, 65, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
}

.dish-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dish-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.price-chip {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--cream-dim);
    background: rgba(249, 239, 220, 0.06);
    border: 1px solid rgba(249, 239, 220, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    transition: var(--transition);
}
.price-chip:hover {
    background: rgba(196, 171, 99, 0.18);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}
.price-main {
    background: rgba(196, 171, 99, 0.16);
    border-color: rgba(196, 171, 99, 0.5);
    color: var(--gold-bright);
    font-size: 0.9rem;
    padding: 6px 16px;
}

.dish-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px dashed rgba(249, 239, 220, 0.12);
    padding-top: 14px;
}
.dish-serve {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: var(--text-dim);
}
.dish-serve svg { width: 14px; height: 14px; color: var(--gold); }
.dish-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-bright);
    transition: var(--transition);
}
.dish-order svg { width: 15px; height: 15px; }
.dish-order:hover { color: #fff; transform: translateX(3px); }

.menu-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
}
.menu-note svg { width: 15px; height: 15px; color: var(--gold); }

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.about-section {
    padding: 100px 24px;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(138, 79, 46, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0d0905, #191107);
    border-top: 1px solid rgba(249, 239, 220, 0.06);
    border-bottom: 1px solid rgba(249, 239, 220, 0.06);
}
.about-inner {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-media { position: relative; }
.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-card);
}
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 42%;
    border-radius: var(--radius-md);
    border: 5px solid var(--bg-deep);
    box-shadow: var(--shadow-card);
    animation: floaty 5s ease-in-out infinite alternate;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}
@keyframes floaty {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-14px) rotate(2deg); }
}
.about-badge-float {
    position: absolute;
    top: 24px; left: -18px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #052413;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.35;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floaty 6s 1s ease-in-out infinite alternate;
}
.about-badge-float svg { width: 26px; height: 26px; }

.about-text .section-title { text-align: left; }
.about-text .section-title::after { left: 0; transform: none; }

.about-p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 16px; }
.about-p strong { color: var(--gold-bright); }

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--cream-dim);
}
.about-features svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ==========================================================================
   KONUM
   ========================================================================== */
.location-section {
    padding: 100px 24px;
    max-width: 1250px;
    margin: 0 auto;
}
.hidden { display: none !important; }

/* ==========================================================================
   ŞUBE SEÇİCİ
   ========================================================================== */
.branch-switch {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.branch-btn {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(170deg, var(--bg-card), #032010);
    border: 1px solid rgba(249, 239, 220, 0.12);
    border-radius: var(--radius-md);
    color: var(--cream-dim);
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.branch-btn:hover {
    border-color: rgba(196, 171, 99, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.branch-btn.active {
    border-color: var(--gold-bright);
    background: linear-gradient(160deg, rgba(196, 171, 99, 0.16), rgba(24, 15, 5, 0.6));
    box-shadow: 0 0 0 1px rgba(196, 171, 99, 0.35), 0 14px 32px rgba(0, 0, 0, 0.4);
    color: #fff;
}
.branch-btn-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(196, 171, 99, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.branch-btn.active .branch-btn-icon {
    background: var(--gold-bright);
    color: #03130a;
}
.branch-btn-icon svg { width: 20px; height: 20px; }
.branch-btn-text { display: flex; flex-direction: column; gap: 2px; }
.branch-btn-text strong { font-size: 0.95rem; font-weight: 800; }
.branch-btn-text small { font-size: 0.78rem; color: var(--text-muted); }
.branch-new-tag {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #03130a;
    background: linear-gradient(135deg, #e3b863, #d3a75c);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    box-shadow: 0 0 18px rgba(196, 171, 99, 0.55);
    animation: glowPulse 2s ease-in-out infinite;
}
.branch-new-tag svg { width: 12px; height: 12px; }
.fade-in { animation: cardFade 0.45s ease; }
@keyframes cardFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.map-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(249, 239, 220, 0.12);
    box-shadow: var(--shadow-card);
    position: relative;
}
.map-frame iframe { filter: saturate(0.9) brightness(0.92); }
.map-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 171, 99, 0.25);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.map-info {
    background: linear-gradient(170deg, var(--bg-card), #032010);
    border: 1px solid rgba(249, 239, 220, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}
.map-info-head { text-align: center; margin-bottom: 26px; }
.map-logo {
    width: 64px; height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: contain;
    background: #04210f;
    padding: 5px;
    box-shadow: 0 0 24px rgba(196, 171, 99, 0.4);
}
.map-info-head h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.map-info-head p { color: var(--text-muted); font-size: 0.9rem; }

.map-info-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(249, 239, 220, 0.1);
    font-size: 0.9rem;
    color: var(--cream-dim);
}
.map-info-row strong { color: #fff; }
.map-info-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(196, 171, 99, 0.12);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.map-info-icon svg { width: 18px; height: 18px; }

.map-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    flex-wrap: wrap;
}

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact-section {
    padding: 100px 24px;
    max-width: 1250px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}
.contact-card {
    background: linear-gradient(170deg, var(--bg-card), #032010);
    border: 1px solid rgba(249, 239, 220, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 171, 99, 0.45);
    box-shadow: var(--shadow-card), 0 0 40px -12px rgba(196, 171, 99, 0.3);
}
.contact-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.contact-card:hover .contact-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.contact-icon-wrap svg { width: 32px; height: 32px; }
.instagram-icon { display: block; }
.phone-icon { background: rgba(94, 105, 55, 0.15); color: #8f9755; }
.wa-icon { background: rgba(94, 105, 55, 0.15); color: #8f9755; }
.ig-icon {
    background: linear-gradient(45deg, rgba(196, 171, 99, 0.18), rgba(138, 79, 46, 0.2));
    color: var(--gold-bright);
}

.contact-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.contact-value {
    font-weight: 800;
    color: var(--gold-bright);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.contact-desc { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 20px; }
.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cream);
    margin-top: auto;
    transition: var(--transition);
}
.contact-cta svg { width: 15px; height: 15px; }
.contact-card:hover .contact-cta { color: var(--gold-bright); gap: 10px; }

.hours-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hours-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(249, 239, 220, 0.04);
    border: 1px solid rgba(249, 239, 220, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}
.hours-item svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.hours-item strong { display: block; color: #fff; font-size: 0.95rem; }
.hours-item span { color: var(--text-muted); font-size: 0.85rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #02170c;
    border-top: 1px solid rgba(249, 239, 220, 0.07);
    padding: 60px 24px 26px;
}
.footer-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: contain; background: #04210f; padding: 5px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer-brand h3 em { color: var(--gold-bright); font-style: normal; }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; }

.footer-branches {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 380px);
}
.footer-branch {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    min-height: 76px;
}
.footer-branch svg {
    width: 18px; height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-branch > div {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}
.footer-branch strong {
    color: var(--cream-dim);
    font-weight: 700;
    line-height: 1.25;
}
.footer-branch span {
    color: var(--text-muted);
    line-height: 1.45;
}
.footer-branch a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    align-self: flex-start;
    transition: var(--transition);
}
.footer-branch a:hover { color: #fff; }

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-bright); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(249, 239, 220, 0.06);
    border: 1px solid rgba(249, 239, 220, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: #052413;
    border-color: transparent;
    transform: translateY(-3px);
}
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
    max-width: 1250px;
    margin: 0 auto;
    border-top: 1px solid rgba(249, 239, 220, 0.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(10, 5, 2, 0.82);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-card {
    background: linear-gradient(170deg, #17100a, #120c07);
    border: 1px solid rgba(196, 171, 99, 0.35);
    border-radius: var(--radius-lg);
    max-width: 620px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-card), 0 0 60px -15px rgba(196, 171, 99, 0.35);
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-overlay.open .modal-card { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 5;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(22, 13, 6, 0.7);
    border: 1px solid rgba(249, 239, 220, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--cherry); border-color: transparent; transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }

.modal-media { aspect-ratio: 16 / 9; overflow: hidden; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: 28px 30px 32px; }
.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.modal-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 22px; }

.modal-prices { margin-bottom: 26px; }
.modal-prices-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-radius: 10px;
    background: rgba(249, 239, 220, 0.04);
    border: 1px solid rgba(249, 239, 220, 0.08);
    margin-bottom: 8px;
    transition: var(--transition);
}
.modal-price-row:hover { border-color: rgba(196, 171, 99, 0.4); background: rgba(196, 171, 99, 0.06); }
.modal-price-row .p-unit { color: var(--cream-dim); font-size: 0.92rem; font-weight: 600; }
.modal-price-row .p-price { color: var(--gold-bright); font-weight: 800; font-size: 1.05rem; }

.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .splash-boxes { gap: 14px; }
    .splash-box { padding: 26px 16px; }
    .about-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-img-float { right: 10px; }
    .map-card { grid-template-columns: 1fr; }
    .map-frame { min-height: 320px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .hours-strip { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    html { scroll-behavior: auto; }

    .navbar.scrolled,
    html[data-spa-mode="qr"] .navbar {
        backdrop-filter: none;
        background: rgba(2, 27, 14, 0.98);
    }

    .splash-box,
    .btn-ghost,
    .dish-badge,
    .dish-expand,
    .modal-overlay {
        backdrop-filter: none;
    }

    .hero-bg-img,
    .hero-scroll-hint,
    .about-img-float,
    .about-badge-float {
        animation: none;
    }

    .hero-bg-img { transform: scale(1.04); }
    .dish-img { transition: none; }
    .reveal { opacity: 1; transform: none; transition: none; }

    .nav-links {
        position: fixed;
        top: 74px; right: 16px;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(22, 13, 6, 0.97);
        border: 1px solid rgba(196, 171, 99, 0.25);
        border-radius: var(--radius-md);
        padding: 20px 24px;
        gap: 16px;
        box-shadow: var(--shadow-card);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 990;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-burger { display: flex; }

    .splash-boxes { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .splash-box { flex-direction: row; text-align: left; gap: 16px; padding: 18px 20px; align-items: center; }
    .box-icon { margin-bottom: 0; width: 52px; height: 52px; flex-shrink: 0; }
    .box-icon svg { width: 25px; height: 25px; }
    .box-arrow { margin-top: 0; margin-left: auto; }
    .box-title { font-size: 1.1rem; }
    .box-desc { font-size: 0.78rem; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.9rem; }
    .menu-section { padding: 70px 18px 60px; }
    .menu-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .map-actions { flex-direction: column; }
    .map-actions .btn { width: 100%; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .modal-actions { flex-direction: column; }
    .modal-actions .btn { width: 100%; }
}

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

/* Küçük ekran öncelikli dokunmatik deneyim */
@media (hover: none) {
    .dish-expand {
        opacity: 1;
        transform: scale(1);
        width: 44px; height: 44px;
        top: 12px; right: 12px;
    }
    .dish-expand svg { width: 20px; height: 20px; }
}
