/* =========================================
   Dürümcü Memo — Stil Dosyası
   ========================================= */

:root {
  --ink: #141110;
  --ink-soft: #2a2320;
  --red: #a61c1c;
  --red-dark: #861414;
  --gold: #c9a227;
  --cream: #faf6f0;
  --cream-2: #f2e9dd;
  --line: rgba(20, 17, 16, 0.12);
  --text: #2c2521;
  --muted: #7b6b60;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(20, 17, 16, 0.06);
  --shadow: 0 16px 44px rgba(20, 17, 16, 0.12);
  --maxw: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 14px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 22px;
}

/* Ortak parçalar ------------------------------------ */

.ico {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-lg { width: 30px; height: 30px; stroke-width: 1.5; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.eyebrow.light { color: var(--gold); }

.section-head {
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border-color: rgba(250, 246, 240, 0.45); color: var(--cream); }
.btn-ghost:hover { background: rgba(250, 246, 240, 0.12); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* Üst şerit ----------------------------------------- */

.topbar {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar-item .ico { width: 15px; height: 15px; color: var(--gold); }
.topbar-sep { flex: 1; }
.topbar-phone { font-weight: 700; color: var(--cream); }
.topbar-phone:hover { color: var(--gold); }

/* Üst menü ------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 600;
}
.nav a { position: relative; padding-block: 4px; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Giriş bölümü -------------------------------------- */

.hero {
  position: relative;
  background:
    linear-gradient(rgba(20, 17, 16, 0.86), rgba(20, 17, 16, 0.92)),
    radial-gradient(circle at 20% 30%, #5d2a16, transparent 55%),
    radial-gradient(circle at 80% 70%, #7a3410, transparent 55%),
    var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding-block: clamp(64px, 9vw, 110px);
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text {
  color: rgba(250, 246, 240, 0.76);
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.rating-card {
  background: rgba(250, 246, 240, 0.07);
  border: 1px solid rgba(250, 246, 240, 0.16);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(6px);
  text-align: center;
}
.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.rating-stars { color: var(--gold); letter-spacing: 4px; margin-top: 8px; }
.rating-meta {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.84rem;
  margin: 8px 0 0;
}
.rating-card hr {
  border: 0;
  border-top: 1px solid rgba(250, 246, 240, 0.14);
  margin: 20px 0;
}
.rating-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
  text-align: left;
}
.rating-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(250, 246, 240, 0.66);
}
.rating-list strong { color: var(--cream); }

/* Güven bandı --------------------------------------- */

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-block: 46px;
}
.trust-item { text-align: left; }
.trust-item .ico-lg { color: var(--red); margin-bottom: 14px; }
.trust-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.trust-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Hakkımızda ---------------------------------------- */

.about { padding-block: clamp(64px, 8vw, 100px); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 162, 39, 0.28), transparent 55%),
    linear-gradient(150deg, #3a1e14, #7a3410 55%, #a61c1c);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(250, 246, 240, 0.05) 0 3px, transparent 3px 26px);
}
.about-badge {
  position: absolute;
  right: -14px;
  bottom: 34px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.about-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 20px;
}
.about-copy p { color: var(--muted); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 34px;
  justify-content: start;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.about-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--red);
}
.about-stats span { font-size: 0.84rem; color: var(--muted); }

/* Menü ---------------------------------------------- */

.menu {
  background: var(--cream-2);
  padding-block: clamp(64px, 8vw, 100px);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.menu-block { margin-bottom: 54px; }
.menu-block[hidden] { display: none; }
.menu-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.menu-block-head h3 {
  font-size: 1.6rem;
  white-space: nowrap;
}
.menu-block-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.menu-block-note {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.dish {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.dish-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffaf0, #fff);
}
.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.dish-top h4 { font-size: 1.2rem; }
.dish-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--red);
  white-space: nowrap;
}
.dish p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}
.tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--muted);
}
.tag-hot { background: rgba(201, 162, 39, 0.18); color: #8a6b0f; }
.tag-spicy { background: rgba(166, 28, 28, 0.12); color: var(--red); }

.menu-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.menu-note a { color: var(--red); font-weight: 700; }

/* Sipariş ------------------------------------------- */

.order {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(64px, 8vw, 100px);
}
.order .section-head h2 { color: var(--cream); }
.order .section-sub { color: rgba(250, 246, 240, 0.62); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.order-card {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.order-card:hover {
  transform: translateY(-4px);
  background: rgba(250, 246, 240, 0.1);
  border-color: rgba(201, 162, 39, 0.5);
}
.order-card .ico-lg { color: var(--gold); margin-bottom: 16px; }
.order-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 6px; }
.order-card p {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.order-link {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.order-card-primary {
  background: var(--red);
  border-color: var(--red);
}
.order-card-primary:hover { background: var(--red-dark); border-color: var(--gold); }
.order-card-primary .ico-lg,
.order-card-primary .order-link { color: #fff; }
.order-card-primary p { color: rgba(255, 255, 255, 0.85); }

/* Konum --------------------------------------------- */

.location { padding-block: clamp(64px, 8vw, 100px); }
.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.2;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.location-info { display: grid; gap: 26px; }
.info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.info-block p { color: var(--muted); font-size: 0.94rem; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours td { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.hours td:first-child { color: var(--muted); }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.contact-row a { color: var(--red); font-weight: 700; }

/* Instagram şeridi ---------------------------------- */

.insta-band {
  background: linear-gradient(120deg, #7a3410, var(--red));
  color: var(--cream);
  padding-block: 54px;
}
.insta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.insta-band h2 { color: var(--cream); font-size: 1.9rem; margin-bottom: 6px; }
.insta-band p { color: rgba(250, 246, 240, 0.78); margin: 0; }

/* Alt bilgi ----------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.66);
  padding-top: 60px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: var(--cream); }
.footer-brand .brand-text small { color: rgba(250, 246, 240, 0.5); }
.footer-brand p { margin: 0; max-width: 34ch; }
.footer-col h4 {
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.45);
}
.footer-bottom p { margin: 0; }

/* Sabit WhatsApp düğmesi ---------------------------- */

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  z-index: 70;
  transition: transform 0.18s ease;
}
.fab:hover { transform: scale(1.06); }
.fab svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Menü kartındaki ürün bağlantısı ------------------- */

.dish-top h4 a { position: relative; }
.dish-top h4 a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.22;
  transition: opacity 0.18s ease;
}
.dish:hover .dish-top h4 a { color: var(--red); }
.dish:hover .dish-top h4 a::after { opacity: 0.6; }

/* Hizmet bölgeleri ---------------------------------- */

.areas {
  background: #fff;
  padding-block: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--line);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.area-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--cream);
}
.area-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.area-card > p { color: var(--muted); font-size: 0.92rem; }
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.84rem;
  font-weight: 600;
}
.areas-note {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}
.areas-note strong { color: var(--ink); }
.areas-note a { color: var(--red); font-weight: 700; }

/* Sıkça sorulan sorular ----------------------------- */

.faq {
  background: var(--cream-2);
  padding-block: clamp(64px, 8vw, 100px);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 24px;
  transition: border-color 0.18s ease;
}
.faq-item[open] { border-color: rgba(166, 28, 28, 0.35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  padding-bottom: 22px;
  max-width: 68ch;
}
.faq-item a { color: var(--red); font-weight: 700; }

/* Ürün sayfaları ------------------------------------ */

.breadcrumb {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding-block: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}
.breadcrumb li + li::before { content: '›'; margin-right: 8px; opacity: 0.55; }
.breadcrumb a { font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 700; }

.product-hero {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(48px, 6vw, 76px);
}
.product-hero h1 {
  color: var(--cream);
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  margin-bottom: 18px;
}
.product-hero .lead {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1.05rem;
  max-width: 62ch;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.product-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }

.price-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.price-card {
  background: rgba(250, 246, 240, 0.07);
  border: 1px solid rgba(250, 246, 240, 0.18);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  min-width: 150px;
}
.price-card span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
}

.product-body { padding-block: clamp(54px, 7vw, 88px); }
.product-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.product-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 36px 0 14px;
}
.product-content h2:first-child { margin-top: 0; }
.product-content p { color: var(--muted); }
.product-content strong { color: var(--ink); }
.product-content a { color: var(--red); font-weight: 700; }
.product-content ul {
  color: var(--muted);
  padding-left: 20px;
  margin: 0 0 16px;
}
.product-content li { margin-bottom: 8px; }

.product-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}
.aside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: #fff;
}
.aside-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.aside-card .btn { width: 100%; margin-top: 6px; }
.aside-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
}
.aside-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}
.aside-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.aside-list strong { color: var(--ink); }

.related { background: var(--cream-2); padding-block: clamp(54px, 7vw, 82px); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--red); }
.related-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--ink); }
.related-card span { font-size: 0.85rem; color: var(--muted); }

.cta-band {
  background: linear-gradient(120deg, #7a3410, var(--red));
  color: var(--cream);
  padding-block: 54px;
  text-align: center;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 10px; }
.cta-band p { color: rgba(250, 246, 240, 0.82); margin-bottom: 22px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Ürün listesi (hub) -------------------------------- */

.hub { padding-block: clamp(54px, 7vw, 88px); }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.hub-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.hub-card h2 { font-size: 1.25rem; margin-bottom: 8px; }
.hub-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.hub-prices { display: flex; gap: 10px; flex-wrap: wrap; }
.hub-prices span {
  background: var(--cream-2);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
}

/* Görünüre girince yumuşak geçiş -------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .dish:hover, .order-card:hover, .fab:hover { transform: none; }
}

/* Duyarlı düzen ------------------------------------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .rating-card { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-height: 320px; aspect-ratio: 16 / 9; }
  .about-badge { right: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 22px 18px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding-block: 13px; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .topbar-item:not(.topbar-phone) { display: none; }
  .topbar-inner { justify-content: center; }
  .menu-block-note { display: none; }
  .menu-block-head { gap: 12px; }
  .about-stats { gap: 20px; }
  .insta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .site-header .brand-text { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .header-actions .btn { width: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 980px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-aside { position: static; }
}

/* =========================================
   Sipariş formu (modal)
   ========================================= */

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal[hidden] { display: none !important; }

.of-perde {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 16, 0.62);
  backdrop-filter: blur(3px);
}

.of-kutu {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: min(90vh, 820px);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: ofAc 0.22s ease;
}
@keyframes ofAc {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.of-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px 18px;
  background: var(--ink);
  color: var(--cream);
}
.of-head h2 { color: var(--cream); font-size: 1.5rem; margin-bottom: 4px; }
.of-head p { color: rgba(250, 246, 240, 0.62); font-size: 0.86rem; margin: 0; }
.of-kapat {
  background: rgba(250, 246, 240, 0.12);
  border: 0;
  color: var(--cream);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex: none;
}
.of-kapat:hover { background: var(--red); }

.of-govde {
  overflow-y: auto;
  padding: 22px 26px 8px;
  flex: 1;
}

.of-bolum { margin-bottom: 26px; }
.of-bolum-baslik {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.of-bolum-baslik span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.of-grup { margin-bottom: 18px; }
.of-grup h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.of-urun-liste { list-style: none; margin: 0; padding: 0; }

.of-urun {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.of-urun.is-secili {
  background: #fff;
  border-color: rgba(166, 28, 28, 0.35);
}
.of-urun-bilgi { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.of-urun-ad { font-weight: 600; font-size: 0.95rem; }
.of-urun-fiyat { font-size: 0.84rem; color: var(--muted); font-weight: 600; }

.of-adet {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 3px;
  flex: none;
}
.of-urun.is-secili .of-adet { background: var(--cream-2); }
.of-adet-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.of-adet-btn:hover { background: var(--red); color: #fff; }
.of-adet-sayi {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.of-secim { display: flex; gap: 10px; flex-wrap: wrap; }
.of-secim-kutu {
  flex: 1;
  min-width: 150px;
  position: relative;
  cursor: pointer;
}
.of-secim-kutu input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.of-secim-kutu span {
  display: block;
  text-align: center;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.15s ease;
}
.of-secim-kutu input:checked + span {
  border-color: var(--red);
  background: rgba(166, 28, 28, 0.06);
  color: var(--red);
}
.of-secim-kutu input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }

.of-alan { margin-bottom: 16px; }
.of-alan label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.of-alan label b { color: var(--red); }
.of-alan input,
.of-alan textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  resize: vertical;
}
.of-alan input:focus,
.of-alan textarea:focus {
  outline: none;
  border-color: var(--red);
}
.of-alan input::placeholder,
.of-alan textarea::placeholder { color: #b6a99e; }

.of-hata {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 8px 0 0;
}

.of-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.of-toplam { display: flex; flex-direction: column; line-height: 1.2; }
.of-toplam span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.of-toplam strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
}
.of-toplam small { font-size: 0.76rem; color: var(--muted); }
.of-gonder { background: #25d366; flex: none; }
.of-gonder:hover { background: #1eb658; }

/* Menü kartındaki sipariş butonu */
.dish-order {
  margin-top: 16px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.dish-order:hover { background: var(--red); border-color: var(--red); color: #fff; }

@media (max-width: 560px) {
  .order-modal { padding: 0; }
  .of-kutu { max-width: none; max-height: 100vh; height: 100%; border-radius: 0; }
  .of-alt { flex-direction: column; align-items: stretch; gap: 12px; }
  .of-toplam { flex-direction: row; align-items: baseline; gap: 10px; }
  .of-gonder { width: 100%; }
}

/* İçecekler: yerinde / gel al ve paket fiyatları */
.drinks-block { margin-top: 40px; }
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}
.drink-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.drink-card h4 { font-size: 1.2rem; }
.drink-description { color: var(--muted); margin: 6px 0 18px; }
.drink-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.drink-prices dt { color: var(--muted); font-size: .85rem; }
.drink-prices dd { margin: 4px 0 0; color: var(--red); font-size: 1.2rem; font-weight: 800; }

.delivery-price { display: block; font-family: Manrope, sans-serif; font-size: .78rem; font-weight: 600; line-height: 1.5; margin-top: 5px; }

.order-status { padding: 12px 20px; background: var(--red-dark); color: #fff; text-align: center; font-size: .9rem; font-weight: 700; }
.order-closed { opacity: .55; cursor: not-allowed; }

.google-reviews { padding: 64px 0; background: var(--cream-2); }
.google-reviews-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.google-reviews-inner > div { max-width: 680px; }
.google-reviews h2 { margin-bottom: 14px; }
.google-reviews .btn { flex-shrink: 0; }
@media (max-width: 800px) {
  .google-reviews-inner { flex-direction: column; align-items: flex-start; }
}

.page-links { padding: 36px 0; background: var(--cream-2); }
.page-links h2 { font-size: 1.3rem; margin-bottom: 16px; }
.page-links-list { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.page-links-list a { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.nav a[aria-current="page"] { color: var(--red); text-decoration: underline; text-underline-offset: 6px; }

.hub-card.hub-card-photo { padding: 0; overflow: hidden; }
.hub-product-image { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.hub-card-content { padding: 24px; }
