/* =========================================================================
   TASARIM SİSTEMİ — token'lar
   Premium restoran/kafe hissi: sıcak krem zemin, tek zeytin-yeşili vurgu,
   basılı menü tipografisi (noktalı fiyat çizgileri, italik slogan, ornament).
   ========================================================================= */
:root {
  /* Renkler — açık tema */
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f3eee7;
  --text: #1c1917;
  --text-2: #57534e;
  --text-3: #8a827b;
  --accent: #1c3a2e;          /* koyu zeytin yeşili (ayardan güncellenir) */
  --accent-soft: #edf1ee;
  --gold: #9a6b3d;            /* ikincil sıcak vurgu (ochre/altın) — dekoratif */
  --gold-soft: #f3e9dd;
  --border: #e7e5e4;
  --border-strong: #d6d1cb;
  --leader: #cfc9c1;          /* noktalı fiyat çizgisi rengi */
  --price: var(--accent);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.05), 0 14px 34px -22px rgba(28, 25, 23, 0.30);
  /* Görsel derecelendirme: farklı kaynaklı fotoğrafları tek sıcak estetikte birleştirir */
  --img-grade: saturate(1.06) contrast(1.035) brightness(1.005) sepia(0.05);

  /* Tipografi — karakterli, "şablon" olmayan eşleştirme */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Ölçek / boşluk */
  --maxw: 940px;
  --measure: 720px;           /* okuma sütunu genişliği */
  --radius: 14px;
  --radius-sm: 10px;
}

/* Koyu tema */
:root[data-theme="dark"] {
  --bg: #1b1917;
  --surface: #292524;
  --surface-2: #211e1c;
  --text: #f4efe7;
  --text-2: #bcb3a9;
  --text-3: #8f867c;
  --accent: #85b39a;          /* karanlıkta okunur açık zeytin */
  --accent-soft: #23302a;
  --gold: #c99a63;            /* karanlıkta okunur altın */
  --gold-soft: #2e2519;
  --border: #39332f;
  --border-strong: #4a433e;
  --leader: #423b36;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px -24px rgba(0, 0, 0, 0.8);
  --img-grade: saturate(1.04) contrast(1.03) brightness(0.99) sepia(0.04);
}

/* =========================================================================
   TEMEL
   ========================================================================= */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background-color: var(--bg);
  /* İnce kağıt/keten dokusu — basılı menü kağıdı hissi (dosya yok, gömülü SVG) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease, color 0.3s ease;
}
:root[data-theme="dark"] body { background-blend-mode: screen; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(18px, 5vw, 32px); }
img { max-width: 100%; display: block; }
/* Tüm menü görselleri tek sıcak derecelendirmeyle birleşir (mismatch fotoğraflar bütünleşir) */
.item__img, .cat-card__bg, .cat-cover__bg, .detail__img img, .detail__thumb img { filter: var(--img-grade); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; }
html { overscroll-behavior-y: none; } /* sayfa genelinde aşırı-kaydırma zincirini azalt */
::selection { background: var(--accent); color: #fff; }

/* Ortak ornament: ince çizgi — altın zeytin yaprağı — ince çizgi */
.ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 16px 0; }
.ornament::before, .ornament::after {
  content: ""; width: 44px; height: 1px;
  background: linear-gradient(to var(--to, right), transparent, var(--border-strong));
}
.ornament::after { --to: left; }
.ornament__dot {
  width: 9px; height: 9px; background: var(--gold);
  border-radius: 50% 0; transform: rotate(45deg); opacity: 0.9;
}

/* =========================================================================
   ÜST BÖLÜM — ince utility şeridi + ortalanmış masthead
   ========================================================================= */
.site-header { border-bottom: 1px solid var(--border); background: var(--bg); }

.utility { border-bottom: 1px solid var(--border); }
.utility__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 46px;
}
.utility__actions { display: flex; align-items: center; gap: 8px; }

/* Dil geçişi — metin bağlantı stili (segment buton değil, daha zarif) */
.lang-toggle { display: inline-flex; align-items: center; gap: 10px; }
.lang-btn {
  border: 0; background: transparent; color: var(--text-3);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.2px;
  padding: 12px 2px; min-height: 44px;
  transition: color 0.18s ease;
}
.lang-btn.is-active { color: var(--accent); font-weight: 600; }
.lang-sep { width: 1px; height: 13px; background: var(--border-strong); }

/* İkon butonları — 44px dokunmatik hedef */
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-2);
  border-radius: 10px;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.icon-btn:hover { color: var(--accent); background: var(--surface-2); }
.icon-btn:active { transform: translateY(1px); }
.ico-moon { display: none; }
:root[data-theme="dark"] .ico-sun { display: none; }
:root[data-theme="dark"] .ico-moon { display: block; }

/* Masthead */
.masthead { text-align: center; padding-block: clamp(30px, 7vw, 56px) clamp(24px, 5vw, 40px); }
.masthead__logo {
  width: 68px; height: 68px; margin: 0 auto 18px;
  border-radius: 50%; object-fit: cover;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
/* Logo yoksa marka amblemi (zeytin dalı, altın) */
.masthead__emblem { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--gold); }
.masthead__emblem svg { width: 100%; height: 100%; }
.masthead__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 7vw, 3rem);
  letter-spacing: 0.2px;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.masthead__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-2);
  font-size: clamp(0.98rem, 2.4vw, 1.14rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 46ch;
  text-wrap: balance;
}
.masthead .ornament { margin: 18px auto; }

/* =========================================================================
   YAPIŞKAN ALT BAR — arama + kategoriler
   ========================================================================= */
.subbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  -webkit-backdrop-filter: saturate(1.3) blur(12px); backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 16px -12px rgba(28, 25, 23, 0.5);
}
.subbar__inner { padding-block: 12px 0; }

.search {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 15px;
  margin-bottom: 12px;
  color: var(--text-3);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search input {
  border: 0; outline: 0; background: transparent;
  color: var(--text); font-size: 16px; /* iOS: 16px altı odakta otomatik zoom yapar */
  padding: 13px 0; width: 100%;
}
.search input::placeholder { color: var(--text-3); }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.cats {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding-bottom: 13px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
}

/* "Diyet filtreleri" aç/kapa düğmesi (kategori detayında) */
.diet-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 12px; padding: 0 14px; min-height: 40px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  border-radius: 999px; font-family: var(--sans); font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.diet-toggle:hover { border-color: var(--border-strong); color: var(--text); }
.diet-toggle.is-on { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); background: var(--accent-soft); }
.diet-toggle svg { flex-shrink: 0; }

/* Diyet filtreleri — ikincil, daha hafif toggle çipler */
.diet-bar { display: flex; flex-wrap: wrap; gap: 7px; padding-bottom: 12px; }
.diet-bar:empty { display: none; }
.diet-chip {
  flex: 0 0 auto;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-3); font-size: 0.78rem; font-weight: 500;
  padding: 0 12px; min-height: 34px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.diet-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid currentColor; transition: background 0.16s;
}
.diet-chip:hover { color: var(--text-2); border-color: var(--border-strong); }
.diet-chip.is-on { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); background: var(--accent-soft); }
.diet-chip.is-on::before { background: var(--accent); border-color: var(--accent); }
.cats::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  font-size: 0.85rem; font-weight: 500;
  padding: 0 16px; min-height: 40px;
  border-radius: 999px;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.cat-chip:hover { border-color: var(--border-strong); color: var(--text); }
.cat-chip.is-active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
:root[data-theme="dark"] .cat-chip.is-active { color: #12241b; }

/* =========================================================================
   MENÜ İÇERİĞİ
   ========================================================================= */
.menu { padding-block: 4px 48px; }

/* =========================================================================
   KATEGORİ IZGARASI (landing) — sadece görsel + ortada kategori adı
   ========================================================================= */
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 3vw, 18px); padding: clamp(14px, 4vw, 26px) 0 40px;
}
.cat-card {
  position: relative; border: 0; padding: 0; cursor: pointer;
  aspect-ratio: 5 / 6; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); background: var(--surface-2);
  transition: transform .2s ease, box-shadow .2s ease;
}
/* Tek sayıda kategoride son kart yalnız kalırsa tam genişlik banner olur (mobil 2 sütun) */
.cat-card:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
.cat-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.cat-card__bg--grad { background: linear-gradient(150deg, var(--accent) 0%, #12241b 100%); }
.cat-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,12,.25) 0%, rgba(15,13,12,.55) 100%); }
.cat-card__text { position: relative; z-index: 2; text-align: center; padding: 14px; color: #fff; }
.cat-card__title {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.15rem, 4.5vw, 1.6rem); line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.5); text-wrap: balance;
}
.cat-card__count {
  display: block; margin-top: 7px; font-size: .68rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.85);
}
@media (hover: hover) and (pointer: fine) {
  .cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .cat-card:hover .cat-card__bg { transform: scale(1.05); }
}
@media (min-width: 620px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card:last-child:nth-child(odd) { grid-column: auto; aspect-ratio: 5 / 6; }
}

/* Geri butonu (detay görünümü) */
.back-bar {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 4px 0 14px; padding: 8px 14px 8px 10px; min-height: 42px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  border-radius: 999px; font-family: var(--sans); font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.back-bar:hover { border-color: var(--border-strong); background: var(--surface-2); }
.back-bar svg { color: var(--accent); }

.cat-section { padding-top: clamp(4px, 2vw, 12px); scroll-margin-top: 120px; }

/* Kategori kapak kartı — görsel üstünde ad (referans tarzı) */
.cat-cover {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 120px; display: flex; align-items: flex-end;
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.cat-cover__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* Detay kapağında sol üst geri oku */
.cat-cover__back {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%; cursor: pointer;
  /* Koyu yarı saydam zemin → hem açık hem koyu kapak görsellerinde net görünür */
  background: rgba(15,13,12,.5); color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .15s;
  box-shadow: 0 2px 10px -2px rgba(0,0,0,.4);
}
.cat-cover__back:hover { background: rgba(15,13,12,.68); }
.cat-cover__bg--grad { background: linear-gradient(135deg, var(--accent) 0%, #12241b 100%); }
.cat-cover__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,12,.15) 0%, rgba(15,13,12,.72) 100%); }
.cat-cover__text { position: relative; z-index: 2; padding: 16px 20px; color: #fff; width: 100%; text-align: center; }
.cat-cover__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: .2px;
  font-size: clamp(1.5rem, 5vw, 2rem); line-height: 1.1; margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.cat-cover__desc { margin: 6px auto 0; font-size: .9rem; color: rgba(255,255,255,.9); max-width: 46ch; line-height: 1.5; }
.cat-cover__count {
  display: inline-block; margin-top: 10px; font-size: .72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.85);
}

.cat-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
  color: var(--text);
}
.cat-kicker {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent); opacity: 0.85;
  margin-bottom: 7px;
}
.cat-rule { height: 1px; background: var(--border); margin: 0 0 6px; }

/* Ürün satırı — basılı menü düzeni: ad ···· fiyat, altında açıklama */
.item {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cat-section .item:last-child { border-bottom: 0; }
.item__body { flex: 1 1 auto; min-width: 0; }

.item__head { display: flex; align-items: baseline; gap: 4px; }
.item__name {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1px;
  margin: 0; color: var(--text);
  flex: 0 1 auto;
  transition: color 0.18s ease;
}
/* Noktalı fiyat çizgisi (leader) — gerçek basılı menü detayı */
.item__leader {
  flex: 1 1 auto;
  min-width: 16px;
  align-self: flex-end;
  margin-bottom: 5px;
  border-bottom: 1.5px dotted var(--leader);
}
.item__price {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  font-weight: 600; font-size: 1rem;
  color: var(--price);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.item__desc {
  margin: 6px 0 0;
  color: var(--text-2);
  font-size: 0.9rem; line-height: 1.55;
  max-width: 58ch;
}
.item.is-out { opacity: 0.5; }
.item.is-out .item__name::after {
  content: " • Tükendi"; font-family: var(--sans); font-size: 0.72rem;
  font-weight: 500; color: var(--text-3);
}

/* Küçük görsel (thumbnail) — tıklanınca lightbox açar */
.item__thumb {
  width: 96px; height: 96px; flex-shrink: 0;
  padding: 0; border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface-2); cursor: pointer;
  display: block; position: relative;
}
.item__thumb .item__img { width: 100%; height: 100%; object-fit: cover; }
.item__thumb--empty {
  display: grid; place-items: center; color: var(--text-3); cursor: default;
}
.item__thumb:not(.item__thumb--empty)::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(28, 25, 23, 0); transition: background 0.2s ease;
}

/* Yasal özet satırı (kalori · alerjenler · uyarılar · detay) */
.item__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 11px; }
.meta-chip {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2px;
  padding: 3px 9px; border-radius: 6px;
  background: var(--surface-2); color: var(--text-2);
  border: 1px solid var(--border);
}
.meta-chip--cal { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 22%, transparent); background: var(--accent-soft); font-weight: 600; }
.meta-chip--warn { color: #a23b34; border-color: #edc9c5; background: #fbeeee; }
:root[data-theme="dark"] .meta-chip--warn { color: #e39a93; border-color: #593330; background: #3a2321; }
.item__more {
  border: 0; background: transparent; color: var(--accent);
  font-size: 0.82rem; font-weight: 600; font-family: var(--sans);
  padding: 11px 4px; margin-left: -2px; min-height: 44px;
  display: inline-flex; align-items: center; gap: 3px;
}
.item__more span { transition: transform 0.15s ease; }
.item__more:hover span { transform: translateX(2px); }

/* Yalnızca PDF/yazdırmada görünen tam yasal bilgi */
.item__print { display: none; }

/* Rozetler — ölçülü, letter-spacing'li */
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.badge {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 3px 9px; border-radius: 6px;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.badge--featured   { background: var(--gold-soft); color: var(--gold); border-color: color-mix(in srgb, var(--gold) 26%, transparent); }
.badge--new        { background: #eef4fb; color: #2b5a86; border-color: #d5e3f1; }
.badge--spicy      { background: #fbeeee; color: #a23b34; border-color: #f0d5d3; }
.badge--vegetarian, .badge--vegan { background: #eef5ee; color: #3a6b45; border-color: #d6e6d8; }
:root[data-theme="dark"] .badge--new        { background: #1e2c3a; color: #8fbde6; border-color: #2c405a; }
:root[data-theme="dark"] .badge--spicy      { background: #3a2321; color: #e39a93; border-color: #593330; }
:root[data-theme="dark"] .badge--vegetarian, :root[data-theme="dark"] .badge--vegan { background: #1f2e23; color: #8fc79f; border-color: #2e4735; }

.empty { text-align: center; color: var(--text-3); padding: 64px 20px; font-size: 0.95rem; }

/* =========================================================================
   ALT BİLGİ
   ========================================================================= */
.site-footer { border-top: 1px solid var(--border); padding-block: 14px 56px; text-align: center; }
.footer__name { font-family: var(--serif); font-size: 1.22rem; margin: 0; }
.footer__note { font-size: 0.86rem; color: var(--text-3); margin: 12px 0 0; line-height: 1.6; }
.footer__vat { font-size: 0.84rem; color: var(--text-2); margin: 22px 0 0; line-height: 1.6; }
.footer__legal {
  font-size: 0.8rem; color: var(--text-3); line-height: 1.65;
  margin: 18px auto 0; max-width: 58ch;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.ornament--footer { margin-bottom: 20px; }

/* Detay / kategori görünümünde kompakt footer:
   kurumsal (isim, sosyal, not) gizli; yalnızca yasal metinler sade & küçük kalır. */
.site-footer.is-compact { padding-block: 0 30px; border-top: 0; margin-top: 22px; }
.site-footer.is-compact .ornament--footer,
.site-footer.is-compact .footer__name,
.site-footer.is-compact .social,
.site-footer.is-compact .footer__note { display: none; }
.site-footer.is-compact .footer__vat { font-size: 0.75rem; margin: 0; color: var(--text-3); }
.site-footer.is-compact .footer__legal {
  font-size: 0.72rem; margin-top: 8px; padding-top: 10px; max-width: 100%; opacity: 0.85;
}

/* =========================================================================
   DETAY MODALI — mobilde alttan açılan sheet, masaüstünde ortalı kart
   ========================================================================= */
.sheet { position: fixed; inset: 0; z-index: 60; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(28, 25, 23, 0.5); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.sheet__card {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-height: 92vh; max-height: 92dvh; overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  background: var(--bg); color: var(--text);
  border-radius: 18px 18px 0 0;
  border-top: 1px solid var(--border);
  padding: 22px clamp(18px, 5vw, 28px) calc(28px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px -18px rgba(28, 25, 23, 0.4);
  animation: sheet-up 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes sheet-up { from { transform: translateY(14px); opacity: 0.6; } to { transform: none; opacity: 1; } }
.sheet__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  border-radius: 50%;
}
.sheet__close:hover { color: var(--text); }

.detail__img {
  display: block; width: 100%; height: clamp(180px, 42vw, 260px);
  border: 0; padding: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); cursor: zoom-in; margin-bottom: 18px;
}
.detail__img img { width: 100%; height: 100%; object-fit: cover; }
.detail__img--empty { display: grid; place-items: center; color: var(--text-3); cursor: default; }

.detail__badges { margin: 14px 0 0; }
.detail__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.detail__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin: 0; }
.detail__price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--accent); white-space: nowrap; }
.detail__cal { margin: 4px 0 0; font-weight: 600; color: var(--accent); }
.detail__cal span { font-weight: 400; color: var(--text-3); font-size: 0.85rem; }
.detail__desc { color: var(--text-2); margin: 12px 0 0; }
.detail__block { margin-top: 20px; }
.detail__block h4 {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.detail__block p { margin: 0; color: var(--text-2); }
.detail__muted { color: var(--text-3); }

.alg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.alg-row { display: flex; align-items: center; gap: 11px; color: var(--text); font-size: 0.92rem; }
.alg-row .alg-svg { color: var(--accent); flex-shrink: 0; }

.detail__warn {
  margin-top: 18px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: #fbeeee; border: 1px solid #edc9c5;
}
.detail__warn p { margin: 2px 0; color: #a23b34; font-size: 0.88rem; font-weight: 500; }
:root[data-theme="dark"] .detail__warn { background: #3a2321; border-color: #593330; }
:root[data-theme="dark"] .detail__warn p { color: #e79a93; }

.detail__legal {
  margin: 22px 0 0; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 0.76rem; color: var(--text-3); line-height: 1.55;
}

/* =========================================================================
   LIGHTBOX — büyük görsel
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 24px; overscroll-behavior: contain; touch-action: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(15, 13, 12, 0.88); }
.lightbox__img {
  position: relative; max-width: min(92vw, 1100px); max-height: 88vh; max-height: 88dvh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  animation: lb-in 0.22s ease;
}
@keyframes lb-in { from { transform: scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.lightbox__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 0; background: rgba(255, 255, 255, 0.12); color: #fff;
  border-radius: 50%; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 0; background: rgba(255, 255, 255, 0.12); color: #fff;
  border-radius: 50%; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
.lightbox__counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: #fff; font-size: 0.82rem; font-variant-numeric: tabular-nums;
  background: rgba(15, 13, 12, 0.55); padding: 5px 12px; border-radius: 999px;
}
/* Kapak üstündeki çoklu görsel sayacı */
.item__thumb-count {
  position: absolute; right: 5px; bottom: 5px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  background: rgba(15, 13, 12, 0.68); color: #fff;
  font-size: 0.68rem; font-weight: 600; display: grid; place-items: center;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
/* Detay modalı galeri şeridi */
.detail__strip { display: flex; gap: 8px; overflow-x: auto; margin: -8px 0 18px; padding-bottom: 4px; scrollbar-width: none; }
.detail__strip::-webkit-scrollbar { display: none; }
.detail__thumb {
  flex: 0 0 auto; width: 62px; height: 62px; padding: 0;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  background: var(--surface-2); cursor: pointer;
}
.detail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail__thumb:hover { border-color: var(--accent); }

/* Masaüstünde detay modalı ortalı kart olsun */
@media (min-width: 640px) {
  .sheet { display: grid; place-items: center; padding: 24px; }
  .sheet__card {
    position: relative; left: auto; right: auto; bottom: auto;
    max-width: 560px; border-radius: var(--radius); border: 1px solid var(--border);
    animation: sheet-pop 0.22s ease;
  }
  @keyframes sheet-pop { from { transform: scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
}
@media (hover: hover) and (pointer: fine) {
  .item__thumb:not(.item__thumb--empty):hover::after { background: rgba(28, 25, 23, 0.12); }
}

/* =========================================================================
   GÜNÜN MENÜSÜ / KAMPANYA BANNER'I
   ========================================================================= */
#campaign { margin-top: clamp(18px, 4vw, 26px); }
.campaign {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
  overflow: hidden; position: relative;
}
.campaign::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent);
}
.campaign__body { padding: 18px 20px 18px 24px; }
.campaign__kicker {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 7px;
}
.campaign__title { font-family: var(--serif); font-size: clamp(1.2rem, 3.4vw, 1.5rem); font-weight: 600; margin: 0 0 6px; }
.campaign__text { margin: 0; color: var(--text-2); font-size: 0.92rem; line-height: 1.55; }
.campaign--img { display: grid; grid-template-columns: 128px 1fr; align-items: stretch; }
.campaign--img .campaign__media { overflow: hidden; }
.campaign--img .campaign__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 460px) {
  .campaign--img { grid-template-columns: 96px 1fr; }
}

/* =========================================================================
   SOSYAL LİNKLER (footer)
   ========================================================================= */
.social { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 16px 0 4px; }
.social__link {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-2); background: var(--surface);
  transition: color 0.18s, border-color 0.18s, transform 0.18s, background 0.18s;
}
.social__link:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); background: var(--accent-soft); transform: translateY(-2px); }

/* =========================================================================
   SERVİS: YÜZEN BUTON (FAB) + SHEET + WİFİ
   ========================================================================= */
.fab {
  position: fixed; z-index: 50;
  right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  border: 0; background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px rgba(28, 25, 23, 0.5), 0 2px 6px rgba(28, 25, 23, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
:root[data-theme="dark"] .fab { color: #12241b; }
.fab:hover { transform: translateY(-2px); }
.fab:active { transform: translateY(0); }

.sheet__card--sm { max-width: 460px; }
.sheet__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin: 0 0 16px; }

.service__table { display: block; margin-bottom: 16px; }
.service__table span { display: block; font-size: 0.82rem; color: var(--text-2); margin-bottom: 6px; }
.service__table input {
  width: 100%; padding: 12px 14px; font-size: 0.95rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface); color: var(--text);
}
.service__table input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.service__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service__btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; min-height: 44px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); color: var(--text);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.16s, background 0.16s, color 0.16s;
}
.service__btn svg { color: var(--accent); }
.service__btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.service__btn:disabled { opacity: 0.5; }

.service__wifi { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.service__wifi-label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.wifi-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.wifi-row span { color: var(--text-3); font-size: 0.85rem; min-width: 56px; }
.wifi-row b { color: var(--text); font-weight: 600; word-break: break-all; flex: 1; }
.wifi-copy {
  border: 1px solid var(--border); background: var(--surface); color: var(--accent);
  font-size: 0.76rem; font-weight: 600; padding: 6px 12px; min-height: 34px;
  border-radius: 8px; white-space: nowrap;
}
.wifi-copy:hover { border-color: var(--accent); background: var(--accent-soft); }

/* Hesap böl & bahşiş hesaplayıcısı */
.billcalc { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.billcalc .info-label { margin-bottom: 12px; }
.billcalc__amount { display: block; margin-bottom: 12px; }
.billcalc__amount > span { display: block; font-size: 0.82rem; color: var(--text-2); margin-bottom: 6px; }
.billcalc__inp {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 11px; background: var(--surface); padding: 0 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.billcalc__inp:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.billcalc__inp input { flex: 1; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 18px; font-weight: 600; padding: 12px 0; min-width: 0; }
.billcalc__inp b { color: var(--text-3); font-weight: 600; }
.billcalc__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }
.billcalc__row > span { color: var(--text-2); font-size: 0.9rem; }
.billcalc__step { display: inline-flex; align-items: center; gap: 4px; }
.billcalc__step button {
  width: 40px; height: 40px; border: 1px solid var(--border); background: var(--surface);
  color: var(--text); border-radius: 10px; font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.billcalc__step button:hover { border-color: var(--accent); color: var(--accent); }
.billcalc__step b { min-width: 30px; text-align: center; font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.billcalc__tips { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.billcalc__tips button {
  min-height: 40px; padding: 0 12px; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-2); border-radius: 999px; font-size: 0.84rem; font-weight: 600; cursor: pointer;
}
.billcalc__tips button.is-on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.billcalc__out { margin-top: 12px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--surface-2); }
.billcalc__line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 3px 0; font-size: 0.9rem; color: var(--text-2); }
.billcalc__line b { color: var(--text); font-variant-numeric: tabular-nums; }
.billcalc__line--big { margin-top: 6px; padding-top: 9px; border-top: 1px solid var(--border); font-size: 1.02rem; }
.billcalc__line--big span { color: var(--text); font-weight: 600; }
.billcalc__line--big b { color: var(--accent); font-weight: 700; font-size: 1.12rem; }

.service__msg { margin: 16px 0 0; font-size: 0.88rem; font-weight: 500; text-align: center; }
.service__msg.is-ok { color: var(--accent); }
.service__msg.is-err { color: #a23b34; }

/* =========================================================================
   MASAÜSTÜ — iki sütun (okuma sütunu ortalanır, dağılmaz)
   ========================================================================= */
@media (min-width: 760px) {
  .menu { max-width: var(--maxw); }
  .cat-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 52px; row-gap: 0;
    align-items: start;
  }
  .cat-section > .cat-cover,
  .cat-section > .cat-title,
  .cat-section > .cat-kicker,
  .cat-section > .cat-rule { grid-column: 1 / -1; }
  .cat-cover { min-height: 200px; }
  /* Izgarada alt çizgi yönetimi: son satırdaki öğelerde çizgiyi kaldır */
  .cat-section .item { border-bottom: 1px solid var(--border); }
  .cat-section .item:last-child,
  .cat-section .item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}

/* Gerçek fare (dokunmatik değil) cihazlarda ince hover efektleri */
@media (hover: hover) and (pointer: fine) {
  .item__name { cursor: default; }
  .cat-section .item:hover .item__name { color: var(--accent); }
  .cat-section .item:hover .item__img { transform: scale(1.03); }
  .item__img { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .cat-chip { cursor: pointer; }
}

/* =========================================================================
   YAZDIR / PDF — temiz, tek renk, sadece içerik
   ========================================================================= */
@media print {
  :root { --bg: #fff; --surface: #fff; --text: #000; --text-2: #333; --border: #d0d0d0; --leader: #bbb; }
  .utility, .subbar, .site-footer .footer__note { display: none !important; }
  .sheet, .lightbox, .fab, .social { display: none !important; }
  .site-header, .subbar { position: static; border: 0; }
  .masthead { padding-block: 0 16px; }
  body { font-size: 12px; }
  /* Etkileşimli/görsel öğeler yerine tam yasal bilgi metni basılır */
  .item__thumb, .badges, .item__meta { display: none !important; }
  .item__print {
    display: block !important;
    font-size: 10.5px; color: #444; margin-top: 4px; line-height: 1.4;
  }
  /* KDV notu ve zorunlu yasal uyarı PDF'de kalır */
  .footer__vat, .footer__legal { display: block !important; color: #333; }
  .cat-section { display: block !important; page-break-inside: avoid; }
  .item { padding: 7px 0; }
  @page { margin: 16mm; }
}

/* =========================================================================
   TIKLAMA (BASILMA) + GİRİŞ ANİMASYONLARI
   ========================================================================= */
/* Dokununca hafif basılma hissi veren öğeler */
.cat-card, .cat-chip, .diet-chip, .item__more, .item__thumb, .cat-cover__back,
.icon-btn, .lang-current, .lang-opt, .fab, .service__btn,
.splash__enter, .splash__social-btn, .promo__close, .sheet__close,
.wifi-copy, .lightbox__nav, .lightbox__close, .search input {
  transition: transform .13s cubic-bezier(.2,.7,.2,1), background-color .15s ease,
              border-color .15s ease, color .15s ease, box-shadow .2s ease, opacity .15s ease;
}
.cat-chip:active, .diet-chip:active, .item__more:active, .icon-btn:active,
.lang-current:active, .lang-opt:active, .service__btn:active, .wifi-copy:active,
.cat-cover__back:active, .lightbox__nav:active, .lightbox__close:active,
.sheet__close:active, .promo__close:active {
  transform: scale(.9);
}
.cat-card:active { transform: scale(.965); }
.item__thumb:not(.item__thumb--empty):active { transform: scale(.95); }
.splash__enter:active { transform: scale(.97); }
.splash__social-btn:active { transform: scale(.88); }
.fab:active { transform: scale(.9); }
.promo__ok:active, .back-bar:active { transform: scale(.97); }
.cat-card, .item__thumb, .item__more, .cat-chip, .diet-chip { -webkit-tap-highlight-color: transparent; }

/* Yumuşak giriş: kartlar ve ürünler belirirken hafif yükselir */
@keyframes qm-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.cat-grid .cat-card { animation: qm-rise .42s cubic-bezier(.2,.7,.2,1) backwards; }
.cat-grid .cat-card:nth-child(2) { animation-delay: .05s; }
.cat-grid .cat-card:nth-child(3) { animation-delay: .10s; }
.cat-grid .cat-card:nth-child(4) { animation-delay: .15s; }
.cat-grid .cat-card:nth-child(5) { animation-delay: .20s; }
.cat-grid .cat-card:nth-child(n+6) { animation-delay: .25s; }
/* Detay görünümünde kapak + ürünler (aramada tetiklenmez) */
.cat-section--enter .cat-cover { animation: qm-rise .4s cubic-bezier(.2,.7,.2,1) backwards; }
.cat-section--enter .item { animation: qm-rise .38s cubic-bezier(.2,.7,.2,1) backwards; }
.cat-section--enter .item:nth-child(2) { animation-delay: .04s; }
.cat-section--enter .item:nth-child(3) { animation-delay: .08s; }
.cat-section--enter .item:nth-child(4) { animation-delay: .12s; }
.cat-section--enter .item:nth-child(n+5) { animation-delay: .16s; }
/* Modal/sheet/pop-up açılış animasyonları zaten kendi keyframe'lerinde */

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  *, html { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  .item__img { transition: none !important; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* =========================================================================
   BAYRAKLI DİL SEÇİCİ (tek buton → açılır menü)
   ========================================================================= */
.flag { width: 20px; height: 14px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.lang-flag { display: inline-flex; }
.lang-select { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 7px 11px; min-height: 40px; border-radius: 9px;
  font-size: .85rem; font-weight: 500; cursor: pointer; transition: border-color .15s, background .15s;
}
.lang-current:hover { border-color: var(--border-strong); background: var(--surface-2); }
.lang-caret { color: var(--text-3); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 40; min-width: 150px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 11px;
  box-shadow: var(--shadow); padding: 5px; overflow: hidden;
}
.lang-opt {
  display: flex; align-items: center; gap: 9px; width: 100%;
  background: transparent; border: 0; color: var(--text); cursor: pointer;
  padding: 10px 11px; min-height: 44px; border-radius: 7px; font-size: .9rem; text-align: left;
}
.lang-opt:hover { background: var(--surface-2); }
.lang-opt.is-active { color: var(--accent); font-weight: 600; background: var(--accent-soft); }
/* Splash üzerindeki açık (light) varyant */
.lang-select--light .lang-current { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.lang-select--light .lang-current:hover { background: rgba(255,255,255,.2); }
.lang-select--light .lang-caret { color: rgba(255,255,255,.75); }

/* =========================================================================
   BAŞLANGIÇ (SPLASH) SAYFASI
   ========================================================================= */
.splash {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: stretch; justify-content: center;
  background: var(--bg);
}
.splash__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--accent) 0%, #12241b 100%);
  background-size: cover; background-position: center;
}
.splash__bg.has-img { background-color: #12241b; }
.splash__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,13,12,.34) 0%, rgba(15,13,12,.72) 100%);
}
.splash__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px;
  display: flex; flex-direction: column;
  padding: calc(22px + env(safe-area-inset-top)) clamp(20px, 6vw, 40px) calc(28px + env(safe-area-inset-bottom));
  /* Kısa / yatay ekranlarda içerik taşarsa kaydırılabilsin ("Menüye Git" hep erişilir) */
  overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
.splash__lang { display: flex; justify-content: flex-end; gap: 6px; }
.splash__lang .lang-btn {
  color: #fff; opacity: .82; font-size: .8rem; font-weight: 500;
  padding: 8px 10px; min-height: 40px; border-radius: 8px; border: 0; background: rgba(255,255,255,.1);
}
.splash__lang .lang-btn.is-active { opacity: 1; background: rgba(255,255,255,.22); font-weight: 600; }
.splash__card {
  margin-top: auto; margin-bottom: auto;
  text-align: center; color: #fff;
  animation: splash-in .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes splash-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.splash__logo {
  width: 92px; height: 92px; margin: 0 auto 20px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.5); box-shadow: 0 8px 30px -10px rgba(0,0,0,.6);
}
/* Logo yoksa splash amblemi (beyaz) */
.splash__emblem { width: 74px; height: 74px; margin: 0 auto 18px; color: #fff; opacity: .95; }
.splash__emblem svg { width: 100%; height: 100%; }
.splash__name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 8vw, 3rem); line-height: 1.08; margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.splash__tagline {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: rgba(255,255,255,.9); font-size: clamp(1rem, 3vw, 1.15rem);
  margin: 12px auto 0; max-width: 42ch; text-wrap: balance;
}
.splash__info { margin: 26px 0 30px; display: grid; gap: 14px; justify-items: center; }
.splash__hours {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .95rem; color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.splash__hours .dot { width: 7px; height: 7px; border-radius: 50%; background: #7fdca0; box-shadow: 0 0 8px #7fdca0; }
.splash .contact { width: 100%; max-width: 340px; }
.splash .contact .info-label { color: rgba(255,255,255,.6); }
.splash .contact-row { color: #fff; }
.splash .contact-row:hover { color: #fff; opacity: .8; }
/* Splash sosyal medya butonları */
.splash__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.splash__social-btn {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  transition: background .15s, transform .15s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.splash__social-btn:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.splash__enter {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 0 40px; margin: 0 auto;
  background: #fff; color: #14241c; border: 0; border-radius: 12px;
  font-family: var(--sans); font-size: 1.02rem; font-weight: 600; letter-spacing: .2px;
  cursor: pointer; box-shadow: 0 10px 30px -12px rgba(0,0,0,.6);
  transition: transform .15s ease, box-shadow .2s ease;
}
.splash__enter:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -12px rgba(0,0,0,.7); }
.splash__enter:active { transform: translateY(0); }

/* Ortak bilgi etiketleri (splash + servis sheet) */
.info-label {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
}
.contact { margin-top: 20px; }
.contact-row {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none; padding: 9px 0;
  border-bottom: 1px solid var(--border); font-size: .92rem; min-height: 44px;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { flex-shrink: 0; color: var(--accent); }
.contact-row:hover { color: var(--accent); }

/* Çalışma saatleri tablosu (servis sheet) */
.hours { margin-top: 22px; }
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; font-size: .9rem; border-bottom: 1px solid var(--border);
}
.hours-row span { color: var(--text-2); }
.hours-row b { font-variant-numeric: tabular-nums; }
.hours-row.is-today { color: var(--accent); }
.hours-row.is-today span, .hours-row.is-today b { color: var(--accent); font-weight: 600; }
.hours-note { margin: 10px 0 0; font-size: .8rem; color: var(--text-3); line-height: 1.5; }

/* =========================================================================
   BİLGİLENDİRME / HAPPY HOURS POP-UP
   ========================================================================= */
.promo { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; }
.promo__backdrop { position: absolute; inset: 0; background: rgba(15,13,12,.6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.promo__card {
  position: relative; width: 100%; max-width: 400px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
  animation: promo-in .28s cubic-bezier(.2,.7,.2,1);
  /* Uzun görsel/metinde küçük & yatay ekranlarda taşmayı önle */
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow-x: hidden; overflow-y: auto;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
@keyframes promo-in { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
.promo__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 14px 0 11px; min-height: 44px;
  background: rgba(255,255,255,.92); color: #1c1917;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.promo__close:hover { background: #fff; }
:root[data-theme="dark"] .promo__close { background: rgba(41,37,36,.92); color: var(--text); }
.promo__img img { display: block; width: 100%; max-height: 240px; object-fit: cover; }
.promo__body { padding: 22px clamp(20px, 5vw, 28px) 24px; text-align: center; }
.promo__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: 0 0 10px; }
.promo__text { color: var(--text-2); font-size: .96rem; line-height: 1.6; margin: 0; }
.promo__ok {
  min-height: 48px; padding: 0 32px; width: 100%;
  background: var(--accent); color: #fff; border: 0; border-radius: 11px;
  font-family: var(--sans); font-size: .98rem; font-weight: 600; cursor: pointer;
}
:root[data-theme="dark"] .promo__ok { color: #12241b; }
.promo__ok:hover { filter: brightness(1.06); }

@media print { .splash, .promo { display: none !important; } }
