/* ==========================================================================
   Albayrak Pilavcısı — tema
   Palet logodan alındı: turkuaz, krem, gül kurusu
   ========================================================================== */

:root {
  --teal-900: #14514f;
  --teal-700: #1f7a76;
  --teal-500: #4faaa6;
  --teal-100: #dff0ee;
  --mauve: #b99ba0;
  --mauve-soft: #f2e6e7;
  --cream: #fbf6ec;
  --cream-2: #f6eee0;
  --ink: #1d2524;
  --ink-soft: #56635f;
  --line: rgba(20, 81, 79, .12);
  --white: #fff;

  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --shadow-s: 0 4px 16px rgba(20, 81, 79, .07);
  --shadow-m: 0 14px 40px rgba(20, 81, 79, .10);
  --shadow-l: 0 26px 70px rgba(20, 81, 79, .16);

  --wrap: 1160px;
  --header-h: 78px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--teal-900);
}

h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* Ortak parçalar --------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-700); color: var(--white); box-shadow: var(--shadow-m); }
.btn-primary:hover { background: var(--teal-900); }
.btn-ghost { border-color: var(--teal-700); color: var(--teal-900); }
.btn-ghost:hover { background: var(--teal-100); }
.btn-light { background: var(--white); color: var(--teal-900); box-shadow: var(--shadow-s); }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* Başlık / navigasyon ----------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 236, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-s);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--teal-900); }
.brand-sub { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mauve); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5rem .9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { color: var(--teal-900); background: var(--teal-100); }
.nav a.active { color: var(--teal-900); background: var(--teal-100); }

.header-cta { display: inline-flex; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79,170,166,.28), transparent 68%);
  top: -180px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(185,155,160,.30), transparent 68%);
  bottom: -160px; left: -140px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--teal-500); }
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.hero-fact strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-900); }
.hero-fact span { font-size: .85rem; color: var(--ink-soft); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-logo {
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-l);
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-m);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-900);
}
.hero-badge i { font-style: normal; font-size: 1.3rem; }
.hero-badge.one { top: 6%; left: -4%; }

/* Şerit ------------------------------------------------------------------ */
.strip {
  background: var(--teal-900);
  color: var(--cream);
  padding: 1.1rem 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 2.5rem;
  font-size: .92rem;
  font-weight: 600;
}
.strip-inner span { display: inline-flex; align-items: center; gap: .5rem; opacity: .92; }

/* Menü kartları ---------------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.dish {
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.dish-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dish:hover .dish-media img { transform: scale(1.05); }
.dish-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, .93);
  color: var(--teal-900);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.dish-body { padding: 1.5rem 1.6rem 1.8rem; }
.dish-body h3 { margin-bottom: .5rem; }
.dish-body p { color: var(--ink-soft); font-size: .95rem; }

/* Özellikler ------------------------------------------------------------- */
.features { background: var(--cream-2); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.feature {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-s);
}
.feature .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--teal-100);
  border-radius: 16px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* Çağrı bandı ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  box-shadow: var(--shadow-m);
}
.cta-band h2 { color: var(--white); margin-bottom: .5rem; }
.cta-band p { opacity: .85; max-width: 46ch; }

/* İçerik / bilgi kartları ------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
.prose p { margin-bottom: 1rem; color: var(--ink-soft); }
.prose h2 { margin-bottom: 1rem; }
.prose h3 { margin: 2rem 0 .6rem; }
/* Uzun metinlerde (gizlilik, hakkımızda) bölüm başlıkları */
.card.prose h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.card.prose > h2:first-of-type { margin-top: 1.4rem; }
.split .prose h2 ~ h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.prose ul { margin: 0 0 1rem; }
.prose ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .5rem;
  color: var(--ink-soft);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.7rem;
  box-shadow: var(--shadow-s);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.info-card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--mauve-soft);
  font-size: 1.3rem;
  margin-bottom: .9rem;
}
.info-card .icon.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

/* Instagram glyph (satır içi ikon) --------------------------------------- */
.ig-glyph { flex: 0 0 auto; display: inline-block; vertical-align: middle; }
.social-link { display: inline-flex; align-items: center; gap: .45rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: .96rem; }
.info-card a:hover { color: var(--teal-700); }
.info-card .big {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--teal-900);
  font-weight: 600;
}

.map-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .96rem;
}
.hours th { font-weight: 600; color: var(--ink); }
.hours td { color: var(--ink-soft); text-align: right; white-space: nowrap; padding-left: .6rem; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* Sayfa başlığı ---------------------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--teal-100), var(--cream));
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
}
.page-hero .lead { margin-inline: auto; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-top: 1rem; }
.crumbs a:hover { color: var(--teal-700); }

/* Footer ----------------------------------------------------------------- */
.footer {
  background: var(--teal-900);
  color: rgba(251, 246, 236, .78);
  padding: 3.5rem 0 6rem; /* alt boşluk: sabit sipariş butonu metni kapatmasın */
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 246, 236, .16);
}
.footer h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer a:hover { color: var(--white); }
.footer li { margin-bottom: .55rem; font-size: .95rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 1.15rem; }
.footer-note {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
}

/* Sabit sipariş butonu (sağ alt) ----------------------------------------- */
.order-dock {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
  /* Eski iOS Safari'de position:fixed'in kendi GPU katmanına alınmasını zorlar */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.dock-links { display: flex; gap: .55rem; }
.dock-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
  box-shadow: var(--shadow-m);
  transition: transform .18s ease, box-shadow .18s ease;
}
.dock-link:hover { transform: translateY(-3px); }
.dock-link.ys { background: #ff0000; }
.dock-link.getir { background: #5d3ebc; color: #ffd300; }
.dock-link.trendyol { background: #f27a1a; }
.dock-link.migros { background: #ff6b00; }

.order-fab {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20, 81, 79, .38);
  transition: transform .18s ease, background .18s ease;
}
.order-fab:hover { background: var(--teal-900); transform: translateY(-2px); }
.order-fab .ring {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.order-fab small { display: block; font-weight: 500; font-size: .74rem; opacity: .85; }
.order-fab .fab-text-short { display: none; }

/* Sipariş platformları ---------------------------------------------------- */
.order-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.order-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .95rem .5rem .5rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(251, 246, 236, .18);
  color: rgba(251, 246, 236, .9);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.order-link:hover { background: rgba(255, 255, 255, .16); color: var(--white); transform: translateY(-2px); }
.order-link .mark {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
}
.order-link.ys .mark { background: #ff0000; }
.order-link.getir .mark { background: #5d3ebc; color: #ffd300; }
.order-link.trendyol .mark { background: #f27a1a; }
.order-link.migros .mark { background: #ff6b00; }

/* Açık zeminde (iletişim sayfası kartı) */
.order-links.on-light .order-link {
  background: var(--cream-2);
  border-color: var(--line);
  color: var(--ink);
}
.order-links.on-light .order-link:hover { background: var(--teal-100); color: var(--teal-900); }

/* SSS -------------------------------------------------------------------- */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-s);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal-500); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: .7rem; color: var(--ink-soft); font-size: .96rem; }

/* Müşteri yorumları -------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.4rem;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.review-card-head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.review-card-head strong { color: var(--teal-900); }
.review-stars { color: #e0a800; letter-spacing: 1px; font-size: .95rem; }
.review-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.55; }
.review-card time { font-size: .78rem; color: var(--ink-soft); opacity: .8; }
.review-photo { width: 100%; max-height: 220px; object-fit: cover; border-radius: 14px; }
.reviews-empty, .reviews-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px dashed var(--line);
}

.review-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--teal-100);
  border-radius: var(--radius-l);
}
.review-cta p { margin: 0; font-weight: 600; color: var(--teal-900); font-size: 1.05rem; }

/* Yorum formu -------------------------------------------------------------- */
.review-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-m);
  max-width: 640px;
  margin-inline: auto;
}
.review-form-card h3 { margin-bottom: .3rem; font-size: 1.35rem; }
#review-form { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.4rem; }
.form-row { display: flex; flex-direction: column; gap: .5rem; }
.form-row label, .form-label {
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  color: var(--teal-900);
}
.form-hint { font-weight: 500; color: var(--ink-soft); font-size: .8rem; letter-spacing: 0; }
.form-row input[type="text"],
.form-row textarea {
  font: inherit;
  font-size: .98rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--ink);
  resize: vertical;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.form-row input[type="text"]::placeholder,
.form-row textarea::placeholder { color: var(--ink-soft); opacity: .7; }
.form-row input[type="text"]:hover,
.form-row textarea:hover { border-color: var(--teal-500); }
.form-row input[type="text"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--teal-100);
}

/* Dosya seçme alanı: tarayıcının çıplak "Dosya Seç" düğmesini site temasına uydur */
.form-row input[type="file"] {
  font: inherit;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: .5rem 0;
}
.form-row input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: 700;
  font-size: .86rem;
  color: var(--teal-900);
  background: var(--teal-100);
  border: none;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  margin-right: .8rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.form-row input[type="file"]::file-selector-button:hover {
  background: var(--teal-700);
  color: var(--white);
}

.form-feedback { margin: 0; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.form-feedback.ok { color: var(--teal-700); }
.form-feedback.err { color: #c0392b; }

/* Botlara karşı gizli alan (kullanıcılar görmez) */
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Yıldız puanlama girişi (radyo tabanlı, JS gerektirmez) */
.star-input {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: .15rem;
  font-size: 1.8rem;
}
.star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-input label {
  cursor: pointer;
  color: var(--line);
  transition: color .15s ease;
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
  color: #e0a800;
}

/* Yan lezzetler şeridi ---------------------------------------------------- */
.sides {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}
.sides span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal-900);
  box-shadow: var(--shadow-s);
}

/* Animasyon -------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Duyarlı ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-logo { width: min(100%, 320px); }
  .hero-badge.one { left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: .8rem 1.25rem 1.2rem;
    box-shadow: var(--shadow-m);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 1rem; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  body { padding-bottom: 7.5rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }

  /* Mobilde de masaüstüyle birebir aynı görünüm: ikon rozetleri + hap buton, sağ altta */
  .order-dock { right: .8rem; bottom: calc(.8rem + env(safe-area-inset-bottom, 0px)); }

  .hero-facts { gap: 1.2rem; }
  .cta-band { text-align: left; }
}
