/* =========================================================
   Çiğ Köfteci Emir Usta — QR Menü
   ========================================================= */

/* Sitede kullanılan fontlar (Türkçe karakterler ve ₺ dahil):
   Montserrat 400/600/700 — başlıklar ve metinler
   Montserrat italik 600/700 — slogan ve kategori başlıkları
   Alex Brush — şekilli yazılar */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/montserrat.woff2) format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600 700;
  font-display: swap;
  src: url(fonts/montserrat-italic.woff2) format("woff2");
}
@font-face {
  font-family: "Alex Brush";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/alex-brush.woff2) format("woff2");
}

:root {
  --hero: #233320;
  --ink: #1E281D;
  --forest: #2C4A2E;
  --forest-2: #365C38;
  --red: #A83238;
  --red-deep: #8C262C;
  --red-tint: #FBEEEE;
  --slate: #34463F;
  --leaf: #9DC26B;
  --gold: #A8823A;
  --gold-deep: #8A6A2C;
  --gold-tint: #FBF4E4;
  --bg: #FAFAF7;
  --card: #FFFFFF;
  --line: #E8EAE4;
  --chip: #F0F2EC;
  --muted: #626C5F;

  --f-head: "Montserrat", sans-serif;
  --f-body: "Montserrat", sans-serif;
  --f-script: "Alex Brush", cursive;

  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow: 0 1px 2px rgba(30, 40, 29, .05), 0 8px 24px -12px rgba(30, 40, 29, .22);
  --shadow-lg: 0 24px 60px -20px rgba(20, 28, 19, .45);
  --bar-h: 64px;
  --pad: 16px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; }
svg { width: 1em; height: 1em; flex: none; }
body.locked { overflow: hidden; }
.sprite { position: absolute; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--leaf); outline-offset: 2px; border-radius: 8px; }

/* ---------- Ortak parçalar ---------- */
.price {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px;
  padding: 4px 16px 3px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: .2px;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%, 8px 50%);
  font-variant-numeric: tabular-nums;
}
.price.lg { font-size: 19px; padding: 6px 20px 5px; min-width: 88px; }
.price.sm { font-size: 13px; padding: 3px 13px 2px; min-width: 52px; clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%, 6px 50%); }
.price.gold { background: var(--gold-deep); }
.price.red { background: var(--red); }

.brush { display: inline-flex; flex-direction: column; gap: 3px; flex: none; }
.brush i { display: block; width: 30px; height: 7px; border-radius: 7px 3px 7px 3px; transform: skewX(-14deg); }
.brush i:nth-child(1) { background: var(--red); }
.brush i:nth-child(2) { background: var(--slate); width: 27px; }
.brush i:nth-child(3) { background: var(--forest); }

.pin {
  display: inline-flex; align-items: center; gap: 5px;
  max-width: 100%;
  padding: 4px 22px 4px 6px;
  background: var(--red);
  color: #fff;
  border-radius: 999px 0 0 999px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.pin svg { width: 17px; height: 17px; color: #fff; }
.route { width: 76px; height: 19px; color: var(--slate); opacity: .75; display: block; margin: 0 0 2px 4px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero);
  color: #fff;
  padding: calc(env(safe-area-inset-top) + 28px) var(--pad) 30px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .18));
  pointer-events: none;
}
.hero-stripes { position: absolute; top: 0; bottom: 0; left: 14px; display: flex; }
.hero-stripes i { width: 11px; height: 100%; }
.hero-stripes i:nth-child(1) { background: var(--red); }
.hero-stripes i:nth-child(2) { background: var(--slate); }
.hero-stripes i:nth-child(3) { background: var(--forest); }
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 12px;
  text-align: center;
}
.hero-mascot {
  width: 132px; height: auto;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
  animation: bob 5s ease-in-out infinite;
}
.hero-wordmark { width: min(250px, 68vw); height: auto; margin: 0 auto; }
.hero-slogan {
  margin-top: 6px;
  font-weight: 600; font-style: italic; font-size: 14px; letter-spacing: .2px;
  color: #E3E9DD;
}
.hero-script {
  font-family: var(--f-script); font-weight: 400;
  font-size: 58px; line-height: 1; color: var(--leaf);
  margin-top: 6px;
}
.hero-script::after {
  content: ""; display: block; width: 120px; height: 2px; margin: 10px auto 0;
  background: rgba(255, 255, 255, .55); border-radius: 2px;
}
@keyframes bob { 50% { transform: translateY(-6px) rotate(-1.5deg); } }

/* ---------- Kategori barı ---------- */
.catbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.catbar.stuck { box-shadow: 0 8px 20px -14px rgba(0, 0, 0, .35); }
.catbar-inner {
  max-width: 1120px; margin: 0 auto;
  height: var(--bar-h);
  display: flex; align-items: center; gap: 10px;
  padding: 0 0 0 var(--pad);
}
.search-btn {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--hero); color: #fff;
  transition: transform .15s var(--ease);
}
.search-btn svg { width: 19px; height: 19px; }
.search-btn:active { transform: scale(.92); }
.chips {
  flex: 1; min-width: 0;
  display: flex; gap: 8px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 10px var(--pad) 10px 2px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 28px), transparent);
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  height: 40px; padding: 0 16px;
  border-radius: 999px;
  background: var(--chip);
  font-weight: 600; font-size: 14px; white-space: nowrap;
  color: var(--ink);
  transition: background .25s, color .25s, transform .15s var(--ease);
}
.chip:active { transform: scale(.95); }
.chip[aria-current="true"] { background: var(--red); color: #fff; box-shadow: 0 6px 14px -8px var(--red); }

/* ---------- Menü bölümleri ---------- */
/* Menü JS ile çizilene kadar yer ayır: alt bilgi yukarıda görünüp sonra kaymasın */
.menu:empty { min-height: 150vh; }
.menu {
  background:
    radial-gradient(60% 30% at 0% 12%, rgba(40, 50, 40, .035), transparent 70%),
    radial-gradient(50% 25% at 100% 38%, rgba(40, 50, 40, .035), transparent 70%),
    radial-gradient(60% 30% at 0% 66%, rgba(40, 50, 40, .03), transparent 70%),
    radial-gradient(50% 25% at 100% 90%, rgba(40, 50, 40, .03), transparent 70%);
}
.section {
  max-width: 1120px; margin: 0 auto;
  padding: 30px var(--pad) 18px;
  scroll-margin-top: calc(var(--bar-h) + 4px);
}
.sec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.sec-head h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: 21px; line-height: 1.2;
  color: var(--red);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .2px;
}
.sec-sub { color: var(--muted); font-size: 14px; margin: 0 0 4px 42px; }
.sec-body { margin-top: 16px; }
.grid { display: grid; gap: 12px; }

.card {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .03);
}
.tap { text-align: left; width: 100%; transition: transform .18s var(--ease), box-shadow .18s; }
.tap:active { transform: scale(.985); }
@media (hover: hover) {
  .tap:hover { box-shadow: 0 1px 2px rgba(30, 40, 29, .05), 0 16px 34px -16px rgba(30, 40, 29, .35); transform: translateY(-2px); }
}

/* Görsel kutusu: dekupe tabak görselleri beyaz zeminde "contain", fotoğraflar "cover" */
.media { background: #fff; overflow: hidden; position: relative; }
.media img { width: 100%; height: 100%; object-fit: contain; }
.media.photo img { object-fit: cover; }

/* ---------- Porsiyon (boy seçici) ---------- */
.portion { padding: 14px; overflow: hidden; }
.seg {
  display: flex; padding: 4px; gap: 4px;
  background: var(--chip); border-radius: 999px;
  margin-bottom: 12px;
}
.seg button {
  flex: 1; height: 42px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: background .25s, color .25s;
}
.seg button[aria-pressed="true"] { background: var(--hero); color: #fff; }
.portion-title { font-family: var(--f-head); font-weight: 600; font-size: 20px; color: var(--red); line-height: 1.2; }
.portion .media { aspect-ratio: 2.1 / 1; border-radius: var(--r-md); margin: 6px 0 12px; }
.portion .media img { transition: opacity .3s; }
.sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.sizes.two { grid-template-columns: repeat(2, 1fr); }
.size {
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: 8px 2px 7px; text-align: center; line-height: 1.2;
  background: #fff;
  transition: border-color .2s, background .2s, transform .15s var(--ease);
}
.size:active { transform: scale(.96); }
.size b { display: block; font-size: clamp(11.5px, 3.4vw, 13px); font-weight: 700; white-space: nowrap; }
.size small { font-size: 11.5px; color: var(--muted); }
.size[aria-pressed="true"] { border-color: var(--red); background: var(--red-tint); }
.size[aria-pressed="true"] b { color: var(--red); }
.portion-desc { color: var(--muted); font-size: 13.5px; margin: 12px 2px; min-height: 4.2em; }
.portion-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--chip); border-radius: 16px; padding: 10px 10px 10px 14px;
}
.portion-foot span { font-weight: 600; font-size: 14px; }
.portion-foot small { color: var(--muted); font-weight: 500; }
.price.bump { animation: bump .35s var(--ease); }
@keyframes bump { 40% { transform: scale(1.08); } }

.special {
  background: linear-gradient(140deg, #FFFBF1 0%, #F7EBCD 100%);
  border: 1px solid #EAD8AC;
}
.special .portion-title { color: var(--gold-deep); }
.special .eyebrow { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); }
.special .size[aria-pressed="true"] { border-color: var(--gold); background: #FFF6E2; }
.special .size[aria-pressed="true"] b { color: var(--gold-deep); }
.special .portion-foot { background: rgba(255, 255, 255, .65); }
.special .portion-desc { color: #6D5C3A; }
.special-top { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.special-top .media { width: 92px; height: 92px; flex: none; border-radius: 18px; margin: 0; aspect-ratio: auto; }
.special-top p { font-size: 13px; color: #6D5C3A; margin-top: 2px; }

/* ---------- Liste kartı (roll, yan ürün) ---------- */
.row-card { display: flex; gap: 12px; padding: 10px; align-items: stretch; }
.row-card .media { width: 42%; max-width: 170px; flex: none; border-radius: 16px; aspect-ratio: 4 / 3; align-self: center; }
.row-card .body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 2px 2px 2px 0; }
.row-card .tagline { font-size: 13px; color: var(--muted); line-height: 1.4; }
.row-card .price { align-self: flex-start; margin-top: 6px; }
.row-card h3.name { font-family: var(--f-head); font-weight: 600; font-size: 16.5px; color: var(--red); line-height: 1.15; }
.row-card .desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.row-card.round .media { width: 96px; height: 96px; aspect-ratio: 1; border-radius: 50%; background: transparent; }
.row-card.round .media img { object-fit: cover; }
.pin-wrap { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.pin h3 { font: inherit; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Tepsiler ---------- */
.tray { overflow: hidden; display: flex; flex-direction: column; }
.tray .media { aspect-ratio: 16 / 11; background: #fff; }
.tray .media img { padding: 22px; }
.tray-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tray-name { display: flex; align-items: baseline; flex-wrap: wrap; column-gap: 8px; line-height: 1.05; }
.tray-name b { font-family: var(--f-head); font-weight: 600; font-size: 19px; text-transform: uppercase; color: var(--ink); }
.tray-name em { font-family: var(--f-script); font-style: normal; font-weight: 400; font-size: 38px; color: var(--red); }
.tray.gold .tray-name em { color: var(--gold); }
.tray.green .tray-name em { color: var(--forest-2); }
.tray.red .tray-name b { color: var(--red); }
.tray-desc { color: var(--muted); font-size: 13.5px; }
.contents { display: flex; flex-wrap: wrap; gap: 6px; }
.contents span { font-size: 12px; font-weight: 500; background: var(--chip); border-radius: 999px; padding: 4px 10px; }
.tray-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 6px; }
.tray-foot small { color: var(--muted); font-weight: 500; font-size: 13px; }

/* ---------- Dürümler ---------- */
.wrap-card { position: relative; overflow: hidden; display: flex; flex-direction: column-reverse; justify-content: flex-end; }
.wrap-card .body { position: relative; z-index: 1; padding: 4px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wrap-card .media { width: 90%; margin: 14px 0 6px auto; aspect-ratio: 2.1 / 1; background: transparent; }
.wrap-card .media img { object-fit: contain; object-position: right center; }
.wrap-card h3.name { font-family: var(--f-head); font-weight: 600; font-size: 18px; color: var(--red); line-height: 1.15; }
.wrap-card .desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.wrap-card .opts { padding-top: 8px; }
.badge-script {
  position: absolute; z-index: 2; right: 12px; top: 8px;
  font-family: var(--f-script); font-weight: 400; font-size: 30px; color: var(--slate);
  background: rgba(255, 255, 255, .88); border-radius: 999px; padding: 0 12px 2px;
  transform: rotate(-6deg);
}
.opts { display: flex; gap: 14px; margin-top: auto; padding-top: 4px; }
.opt { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.opt small { font-size: 11.5px; color: var(--muted); font-weight: 500; padding-left: 4px; }

/* ---------- Soslar ---------- */
.sauces { grid-template-columns: repeat(2, 1fr); }
.sauce { padding: 16px 10px 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
.sauce .media { width: 104px; height: 104px; border-radius: 50%; margin-bottom: 8px; background: transparent; }
.sauce .media img { object-fit: cover; transform: scale(1.02); }
.sauce h3 { font-family: var(--f-head); font-weight: 600; font-size: 15.5px; color: var(--red); line-height: 1.15; }
.sauce p { color: var(--muted); font-size: 13px; margin-bottom: 8px; }

/* ---------- Öne çıkan (tatlı) ---------- */
.feature { overflow: hidden; display: grid; }
.feature .media { aspect-ratio: 2 / 1; }
.feature .media img { padding: 10px 14px 0; }
.feature-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.feature h3 { font-family: var(--f-head); font-weight: 600; font-size: 20px; color: var(--red); line-height: 1.15; }
.feature .desc { color: var(--muted); font-size: 13.5px; }
.feature .note { font-size: 13px; font-weight: 500; }

/* ---------- İçecekler ---------- */
.drinks { padding: 8px 16px; }
.drink {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.drink:last-child { border-bottom: 0; }
.drink span { font-weight: 500; font-size: 15px; }
.drink i { flex: 1; height: 1px; }
.drink .price { flex: none; }

/* ---------- Hikâye ---------- */
.story { background: var(--hero); color: #E6ECDF; position: relative; overflow: hidden; margin-top: 30px; }
.story-inner { max-width: 1120px; margin: 0 auto; padding: 44px calc(var(--pad) + 30px) 46px var(--pad); position: relative; z-index: 1; }
.story-stripes { position: absolute; top: 0; bottom: 0; right: 0; display: flex; opacity: .9; }
.story-stripes i { width: 7px; }
.story-stripes i:nth-child(1) { background: var(--red); }
.story-stripes i:nth-child(2) { background: var(--slate); }
.story-stripes i:nth-child(3) { background: var(--forest); }
.story-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.story-head img { width: 96px; height: auto; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35)); }
.story h2 { font-family: var(--f-head); font-weight: 700; font-size: 30px; color: #fff; line-height: 1; }
.story h2 em { display: block; font-family: var(--f-script); font-style: normal; font-weight: 400; color: var(--leaf); font-size: 52px; margin-top: 4px; }
.story p { font-size: 14.5px; line-height: 1.7; margin-bottom: 14px; max-width: 680px; }
.story details summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: #fff;
  padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .3);
  margin-top: 4px;
}
.story details summary::-webkit-details-marker { display: none; }
.story details[open] summary { display: none; }

/* ---------- Alt bilgi ---------- */
.foot { text-align: center; padding: 34px var(--pad) calc(env(safe-area-inset-bottom) + 40px); background: #fff; border-top: 1px solid var(--line); }
.foot-script { font-family: var(--f-head); font-weight: 700; font-size: 20px; color: var(--forest-2); line-height: 1.3; }
.foot-slogan { font-weight: 600; font-style: italic; color: var(--slate); margin-top: 2px; }
.foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.foot-links a {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px; border-radius: 999px;
  background: var(--chip); text-decoration: none; font-weight: 600; font-size: 14px;
}
.foot-links a svg { width: 18px; height: 18px; }
.foot-notes { color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.foot-bar { display: flex; justify-content: center; gap: 0; margin: 22px auto 0; width: 60px; height: 6px; border-radius: 6px; overflow: hidden; }
.foot-bar i { flex: 1; }
.foot-bar i:nth-child(1) { background: var(--red); }
.foot-bar i:nth-child(2) { background: var(--slate); }
.foot-bar i:nth-child(3) { background: var(--forest); }

/* ---------- Başa dön ---------- */
.to-top {
  position: fixed; z-index: 25;
  right: 16px; bottom: calc(env(safe-area-inset-bottom) + 16px);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--hero); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .45);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Arama ---------- */
.search {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  display: flex; flex-direction: column;
  animation: fade .2s ease;
}
.search[hidden] { display: none; }
.search-head {
  display: flex; align-items: center; gap: 10px;
  padding: calc(env(safe-area-inset-top) + 12px) var(--pad) 12px;
  background: #fff; border-bottom: 1px solid var(--line);
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 14px; border-radius: 14px; background: var(--chip);
}
.search-field svg { width: 19px; height: 19px; color: var(--muted); }
.search-field input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 16px; color: var(--ink);
}
.search-field input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-close { font-weight: 600; color: var(--red); padding: 10px 4px; }
.search-results { flex: 1; overflow-y: auto; padding: 12px var(--pad) 40px; -webkit-overflow-scrolling: touch; }
.s-group { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin: 14px 4px 8px; }
.s-item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 8px; margin-bottom: 8px; text-align: left;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
}
.s-item .thumb { width: 54px; height: 54px; border-radius: 12px; flex: none; overflow: hidden; background: var(--chip); display: grid; place-items: center; }
.s-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.s-item .thumb .brush { transform: scale(.7); }
.s-item .t { flex: 1; min-width: 0; }
.s-item b { display: block; font-weight: 600; font-size: 15px; line-height: 1.3; }
.s-item b mark { background: #FDE9A8; color: inherit; border-radius: 3px; padding: 0 1px; }
.s-item small { color: var(--muted); font-size: 12.5px; }
.s-empty { text-align: center; color: var(--muted); padding: 50px 20px; }
.s-empty b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 4px; }
.s-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.s-suggest.center { justify-content: center; margin-top: 14px; }
.s-suggest button { height: 38px; padding: 0 14px; border-radius: 999px; background: #fff; box-shadow: var(--shadow); font-weight: 500; font-size: 14px; }

/* ---------- Ürün detayı (alt sayfa) ---------- */
.sheet-wrap { position: fixed; inset: 0; z-index: 70; }
.sheet-wrap[hidden] { display: none; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(16, 22, 15, .5); opacity: 0; transition: opacity .3s; }
.sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-height: 92dvh; max-height: 92vh;
  background: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .38s var(--ease);
  will-change: transform;
}
@supports (height: 1dvh) { .sheet { max-height: 92dvh; } }
.sheet-wrap.open .sheet-backdrop { opacity: 1; }
.sheet-wrap.open .sheet { transform: translateY(0); }
.sheet.dragging { transition: none; }
.sheet-grab { width: 40px; height: 5px; border-radius: 5px; background: #D6DAD2; margin: 9px auto 0; flex: none; }
.sheet-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  display: grid; place-items: center;
}
.sheet-close svg { width: 18px; height: 18px; }
.sheet-body { overflow-y: auto; padding: 10px 18px calc(env(safe-area-inset-bottom) + 22px); overscroll-behavior: contain; }
.sheet .media { aspect-ratio: 16 / 10; border-radius: 20px; margin-bottom: 14px; background: #fff; }
.sheet .media.round { aspect-ratio: 1; width: 62%; margin: 4px auto 14px; border-radius: 50%; }
.sheet .media.round img { object-fit: cover; }
.sheet-cat { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.sheet h2 { font-family: var(--f-head); font-weight: 600; font-size: 24px; color: var(--red); line-height: 1.15; margin: 2px 0 8px; }
.sheet h2 em { font-family: var(--f-script); font-style: normal; font-weight: 400; font-size: 38px; color: var(--gold); margin-left: 4px; }
.sheet .pin { font-size: 20px; margin: 4px 0 10px; }
.sheet .pin svg { width: 19px; height: 19px; }
.sheet-desc { color: #4C5649; font-size: 14.5px; line-height: 1.65; }
.sheet .contents { margin-top: 14px; }
.sheet-note { font-size: 13.5px; font-weight: 500; margin-top: 10px; }
.sheet-prices { margin-top: 18px; border-top: 1px solid var(--line); }
.sheet-prices div { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sheet-prices div span { font-weight: 600; }

@keyframes fade { from { opacity: 0; } }

/* ---------- Görünürken belirme ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

.noscript { padding: 40px 20px; text-align: center; }

/* =========================================================
   Geniş ekranlar
   ========================================================= */
@media (max-width: 380px) {
  .sec-head h2 { font-size: 19px; }
}

@media (min-width: 420px) {
  .row-card .media { width: 40%; }
}

@media (min-width: 700px) {
  :root { --pad: 28px; }
  .grid.cols { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sauces { grid-template-columns: repeat(3, 1fr); }
  .drinks { column-count: 2; column-gap: 40px; padding: 10px 24px; }
  .drink { break-inside: avoid; }
  .drink:last-child { border-bottom: 1px dashed var(--line); }
  .portion-grid { grid-template-columns: 1.25fr 1fr; align-items: start; }
  .sec-head h2 { font-size: 26px; }
  .story-head img { width: 130px; }
  .sheet-wrap { display: grid; place-items: center; padding: 24px; }
  .sheet-wrap[hidden] { display: none; }
  .sheet {
    position: relative; width: min(560px, 100%);
    border-radius: 28px; max-height: 88vh;
    transform: translateY(24px) scale(.97); opacity: 0;
    transition: transform .3s var(--ease), opacity .25s;
  }
  .sheet-wrap.open .sheet { transform: none; opacity: 1; }
  .sheet-grab { display: none; }
  .sheet-body { padding-top: 18px; }
}

@media (min-width: 900px) {
  .hero { padding: 40px var(--pad) 44px; }
  .hero-stripes { left: 7%; }
  .hero-stripes i { width: 22px; }
  .hero-inner { flex-direction: row; justify-content: center; gap: 70px; }
  .hero-mascot { width: 230px; }
  .hero-wordmark { width: 330px; }
  .hero-slogan { font-size: 17px; }
  .hero-script { font-size: 58px; }
  .chips { justify-content: safe center; gap: 6px; padding-right: 4px; }
  .chip { padding: 0 13px; font-size: 13.5px; }
  .catbar-inner { padding-right: var(--pad); }
  .section { padding-top: 44px; }
  .tray-grid { grid-template-columns: repeat(3, 1fr); }
  .story-inner { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; padding-right: var(--pad); }
  .story-head { flex-direction: column; align-items: flex-start; }
  .story-head img { width: 200px; }
  .story-stripes { right: 7%; }
  .story-stripes i { width: 18px; }
}

@media (min-width: 1024px) {
  .grid.cols.three { grid-template-columns: repeat(3, 1fr); }
  .sauces { grid-template-columns: repeat(6, 1fr); }
  .feature { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .feature .media { aspect-ratio: 16 / 10; }
  .feature-body { padding: 28px; }
}

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