/* =====================================================================
   FirmaBul — Konsept 13 · Rehberli Raylar (Yatay Kaydırma Şeritleri)
   Font: Schibsted Grotesk · Vurgu: --brand #6D28D9 (mor / violet)
   ---------------------------------------------------------------------
   İÇİNDEKİLER
   01  Design Tokens (:root)
   02  Reset & Temel
   03  Tipografi
   04  Layout / Container / Section ritmi
   05  Butonlar
   06  Chip & Rozet & Durum
   07  Header & Navigasyon
   08  Mobil Navigasyon
   09  Hero & Arama
   10  Kategori & Şehir ızgaraları + Yatay Raylar
   11  İşletme Kartları
   12  Nasıl Çalışır & Yorumlar & Owner CTA
   13  SSS Accordion
   14  Footer & Bülten
   15  Modal · Toast · Scroll-to-top
   16  Accessibility & Responsive & prefers-reduced-motion
   ===================================================================== */

/* ============ 01 · DESIGN TOKENS ============ */
:root {
  /* Metin */
  --ink: #1B1725;
  --ink-2: #3B3550;
  --muted: #6B6577;

  /* Yüzeyler & çizgi */
  --surface: #FFFFFF;
  --surface-2: #F8F6FB;
  --line: #EBE7F1;
  --line-strong: #DDD5EA;

  /* Marka / etkileşim (mor) */
  --brand: #6D28D9;
  --brand-strong: #5B21B6;
  --brand-soft: #F1ECFC;

  /* Anlam renkleri */
  --green: #15803D;
  --red: #B91C1C;
  --star: #E0A106;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Gölge (çok hafif, mor tonlu) */
  --shadow-sm: 0 1px 2px rgba(27, 23, 37, .06);
  --shadow-md: 0 10px 30px rgba(27, 23, 37, .08);

  /* Ölçüler */
  --container: 1280px;
  --container-narrow: 760px;
  --pad-inline: clamp(16px, 5vw, 40px);
  --section-y: clamp(56px, 6vw, 104px);
  --header-h: 68px;

  --font: 'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --ring: 0 0 0 3px rgba(109, 40, 217, .30);
}

/* ============ 02 · RESET & TEMEL ============ */
*, *::before, *::after { box-sizing: border-box; }

/* hidden attribute her zaman gizlemeli — display kuralları geçmesin
   (kapalı modal, boş alanda temizle butonu, öneri paneli vb.) */
[hidden] { display: none !important; }
.modal-overlay[hidden] { display: none; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* güvence: hiçbir ray body'yi yatay taşırmaz */
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1200;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* Display yardımcı sınıfları (Bootstrap yerine — yalnızca kullanılanlar). */
.d-none { display: none !important; }
@media (min-width: 768px) { .d-md-inline { display: inline !important; } }
@media (min-width: 992px) { .d-lg-inline-flex { display: inline-flex !important; } }

/* ============ 03 · TİPOGRAFİ ============ */
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 700; letter-spacing: -.01em; }

.hero-title {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
}
.section-title {
  font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2.05rem);
  line-height: 1.15;
}
h3 { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); }

.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow-invert { color: rgba(255, 255, 255, .78); }

/* ============ 04 · LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section-alt { background: var(--surface-2); border-block: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: clamp(24px, 3.4vw, 40px); }
.section-head .section-lead {
  margin: 10px 0 0; color: var(--muted); font-size: 1.02rem;
}
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; max-width: none; flex-wrap: wrap;
}

/* ============ 05 · BUTONLAR ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  min-height: 44px; padding: 0 20px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; line-height: 1;
  text-align: center; white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-lg { min-height: 50px; padding: 0 26px; font-size: 1rem; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: .875rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-strong); color: #fff; }

.btn-secondary {
  background: var(--surface); color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-strong); }

.btn-ghost-invert {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35);
}
.btn-ghost-invert:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); }

.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .5); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Nav butonları */
.btn-nav-primary {
  display: inline-flex; align-items: center; min-height: 42px;
  padding: 0 18px; background: var(--brand); color: #fff;
  border: 1px solid var(--brand); border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600;
  transition: background-color .15s ease, border-color .15s ease;
}
.btn-nav-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); color: #fff; }

.btn-nav-ghost {
  align-items: center; min-height: 42px; padding: 0 14px;
  color: var(--ink-2); font-size: .9rem; font-weight: 600;
  border-radius: var(--radius-sm);
}
.btn-nav-ghost:hover { color: var(--brand-strong); background: var(--surface-2); }

/* İkon buton (kart aksiyonları) */
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: 0 0 44px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  color: var(--ink-2); background: var(--surface);
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.btn-icon:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.btn-icon-wa:hover { color: #128C7E; border-color: #128C7E; }

/* ============ 06 · CHIP & ROZET & DURUM ============ */
.chip {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface); color: var(--ink-2);
  font-size: .85rem; font-weight: 500;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.chip:hover { border-color: var(--brand); color: var(--brand-strong); }
.chip-filter.is-active,
.chip.is-active {
  background: var(--brand); border-color: var(--brand); color: #fff;
}

.chip-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.chip-row-label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.chip-list { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, .95); color: var(--brand-strong);
  font-size: .74rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.card-badge .bi { color: var(--brand); }

.tag-soft {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: var(--radius-sm);
  background: var(--brand-soft); border: 1px solid var(--line);
  color: var(--brand-strong); font-size: .78rem; font-weight: 600;
}

.status { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 500; }
.status .bi { font-size: .55rem; }
.status-open { color: var(--green); }
.status-closed { color: var(--red); }

.price-level { font-size: .85rem; font-weight: 700; color: var(--ink-2); letter-spacing: .04em; }

/* ============ 07 · HEADER & NAV ============ */
/* Utility üst bar — yapışkan DEĞİL (normal akış), ana header sticky kalır */
.topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 38px;
}
.topbar-trust {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0; font-size: .8rem; color: var(--muted);
}
.topbar-trust .bi { color: var(--brand); font-size: .9rem; }
.topbar-links { display: flex; align-items: center; gap: 12px; }
.topbar-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; background: transparent; border: none;
  font-size: .8rem; font-weight: 500; font-family: inherit;
  color: var(--muted);
  transition: color .15s ease;
}
.topbar-link:hover { color: var(--brand-strong); }
.topbar-link .bi { font-size: .9rem; }
.topbar-link-btn { line-height: 1; }
.topbar-sep { width: 1px; height: 14px; background: var(--line-strong); flex: 0 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--brand); color: #fff; font-size: 1.05rem;
}
.brand-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.brand-accent { color: var(--brand); }

.primary-nav { margin-left: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 0 12px; border-radius: var(--radius-sm);
  color: var(--ink-2); font-size: .92rem; font-weight: 500;
  transition: color .15s ease, background-color .15s ease;
}
.nav-link:hover { color: var(--brand-strong); background: var(--surface-2); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; }

/* ============ 08 · MOBİL NAV ============ */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(27, 23, 37, .5);
  opacity: 0; transition: opacity .2s ease;
}
.mobile-nav-overlay.is-open { opacity: 1; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1110;
  width: min(320px, 86vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 20px;
  transform: translateX(100%);
  transition: transform .22s ease;
  display: flex; flex-direction: column;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.mobile-nav-title { font-weight: 700; color: var(--ink); }
.mobile-nav-close {
  width: 40px; height: 40px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-nav-list { display: flex; flex-direction: column; padding: 8px 0; }
.mobile-nav-list a {
  display: block; padding: 14px 4px; color: var(--ink);
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--line);
}
.mobile-nav-list a:hover { color: var(--brand); }
.mobile-nav-actions { margin-top: auto; padding-top: 16px; display: grid; gap: 10px; }

/* ============ 09 · HERO & ARAMA ============ */
.hero {
  padding-block: clamp(48px, 7vw, 96px);
  background:
    radial-gradient(120% 120% at 50% -20%, var(--brand-soft) 0%, var(--surface) 58%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { text-align: center; max-width: 880px; margin-inline: auto; }
.hero-lead {
  margin: 16px auto 0; max-width: 640px;
  font-size: clamp(1rem, .96rem + .25vw, 1.15rem); color: var(--muted);
}

/* Arama çubuğu */
.search-bar {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 10px; align-items: end;
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 940px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.search-field { position: relative; min-width: 0; }
.search-label {
  display: block; margin: 0 0 6px 2px;
  font-size: .74rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em;
}
.search-input-wrap, .search-select-wrap { position: relative; }
.search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 1rem; pointer-events: none;
}
.search-input, .search-select {
  width: 100%; min-height: 48px;
  padding: 0 14px 0 38px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-md);
  background: var(--surface); color: var(--ink);
  font-size: .95rem; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.search-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6577' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-left: 14px; padding-right: 34px; cursor: pointer;
  text-overflow: ellipsis;
}
/* Select'lerde sol ikon yok — metin ("Tüm şehirler") tam sığsın */
.search-select-wrap .search-icon { display: none; }
.search-input:focus, .search-select:focus {
  outline: none; border-color: var(--brand); box-shadow: var(--ring);
}
.search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: none; background: transparent;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center;
}
.search-clear:hover { color: var(--ink); }
.search-submit { min-height: 48px; width: 100%; }

/* Öneri paneli */
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 6px; max-height: 300px; overflow-y: auto;
}
.suggestion-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--ink-2); font-size: .92rem; cursor: pointer;
}
.suggestion-item .bi { color: var(--muted); font-size: .9rem; }
.suggestion-item:hover,
.suggestion-item.is-active { background: var(--brand-soft); color: var(--brand-strong); }
.suggestion-item mark { background: transparent; color: var(--brand); font-weight: 700; padding: 0; }
.suggestion-empty { padding: 12px; color: var(--muted); font-size: .9rem; text-align: center; }

/* Son / popüler arama satırları */
.search-meta {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; margin-top: 20px;
}

/* Güven satırı */
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px; margin: 24px 0 0; font-size: .9rem; color: var(--muted);
}
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-item .bi { color: var(--brand); }
.trust-sep { color: var(--line-strong); }

/* ============ 10 · KATEGORİ & ŞEHİR IZGARALARI + YATAY RAYLAR ============ */

/* --- Ray kabuğu: prev + track (overflow-x) + next; body ASLA yatay taşmaz --- */
.rail { position: relative; }

.js-rail-track {
  display: flex; gap: 16px; align-items: stretch;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  padding: 4px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;                 /* Firefox: gizli */
  -ms-overflow-style: none;              /* IE/Edge */
  overscroll-behavior-x: contain;
}
.js-rail-track::-webkit-scrollbar { height: 0; width: 0; display: none; }
.js-rail-track > * { scroll-snap-align: start; }

/* Ok butonları (masaüstü). Kenarlarda dikey ortalı; devre dışıyken görünmez. */
.rail-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--surface);
  color: var(--brand-strong); font-size: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: border-color .15s ease, color .15s ease, background-color .15s ease, opacity .15s ease;
}
.rail-arrow:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.rail-arrow:disabled { opacity: 0; pointer-events: none; }
.js-rail-prev { left: 4px; }
.js-rail-next { right: 4px; }

/* Kategori tile */
.category-tile {
  display: flex; flex-direction: column; gap: 4px;
  height: 100%;
  padding: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.category-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); color: var(--ink); transform: translateY(-2px); }
.category-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft); color: var(--brand); font-size: 1.2rem;
}
.category-name { font-weight: 600; font-size: .98rem; line-height: 1.3; }
.category-count { font-size: .82rem; color: var(--muted); }
.category-tile .category-count { display: block; margin-top: 2px; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--muted); font-size: .82rem; font-weight: 500; line-height: 1.35; }
.category-link .category-count { display: inline-flex; align-items: center; justify-content: center; min-width: 2.1rem; padding: .2rem .55rem; border-radius: 999px; background: var(--blue); color: #fff; font-size: .75rem; font-weight: 600; line-height: 1.25; }

/* Şehir tile */
.city-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  height: 100%;
  padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.city-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); color: var(--ink); transform: translateY(-2px); }
.city-name { font-weight: 600; font-size: 1rem; }
.city-count { font-size: .82rem; color: var(--muted); white-space: nowrap; }

/* Kategori/şehir ray öğe genişliği */
.rail-tiles > li { flex: 0 0 190px; min-width: 0; display: flex; }
.rail-tiles > li > a { width: 100%; }

/* ============ 11 · İŞLETME KARTLARI ============ */
/* .business-grid burada ray track'idir (layout .rail-track / .js-rail-track ile). */
.business-grid > .business-card { flex: 0 0 clamp(272px, 82vw, 300px); }

.business-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.business-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); transform: translateY(-2px); }
.business-card.is-hidden { display: none; }

.card-media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media img.is-broken { visibility: hidden; }

.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .95); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); font-size: 1rem;
  transition: color .15s ease, transform .15s ease;
}
.fav-btn:hover { color: var(--red); }
.fav-btn[aria-pressed="true"] { color: var(--red); }
.fav-btn[aria-pressed="true"] .bi::before { content: "\f417"; } /* bi-heart-fill */

.card-body { display: flex; flex-direction: column; gap: 8px; padding: 16px; flex: 1; }
.card-cat {
  font-size: .76rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .04em;
}
.card-title {
  font-size: 1.08rem; font-weight: 700; line-height: 1.3; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-loc { margin: 0; display: flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--muted); }
.card-loc .bi { font-size: .9rem; }

.card-rating { display: flex; align-items: center; gap: 6px; font-size: .9rem; }
.card-rating .bi-star-fill { color: var(--star); }
.rating-value { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); }

.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap; margin-top: 2px;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.card-actions {
  display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px;
}
.card-actions .btn-secondary { flex: 1; }

/* ============ 12 · NASIL ÇALIŞIR · YORUMLAR · CTA ============ */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.step {
  padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 14px;
  border-radius: 50%; background: var(--brand); color: #fff;
  font-weight: 700; font-size: 1.05rem;
}
.step-title { margin-bottom: 6px; }
.step-text { margin: 0; color: var(--muted); font-size: .95rem; }

/* Yorumlar rayı: figure kartları track içinde yatay */
.review-rail-track > .review-card { flex: 0 0 min(360px, 82vw); }
.review-card {
  margin: 0; padding: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 18px;
}
.review-quote {
  margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--ink-2);
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
  background: var(--brand-soft); border: 1px solid var(--line);
  color: var(--brand-strong); font-weight: 700; font-size: .85rem;
}
.review-name { font-weight: 600; color: var(--ink); font-size: .92rem; }
.review-city { font-weight: 400; color: var(--muted); }

.owner-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
  padding: clamp(32px, 5vw, 56px);
  background: var(--brand); border-radius: var(--radius-lg); color: #fff;
}
.owner-cta-text { max-width: 560px; }
.cta-title { color: #fff; }
.cta-lead { margin: 10px 0 0; color: rgba(255, 255, 255, .82); font-size: 1.05rem; }
.owner-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.owner-cta .btn-primary { background: #fff; border-color: #fff; color: var(--brand-strong); }
.owner-cta .btn-primary:hover { background: var(--brand-soft); color: var(--brand-strong); }

/* ============ 13 · SSS ACCORDION ============ */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-heading { margin: 0; }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 4px; background: transparent; border: none;
  text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.accordion-trigger:hover { color: var(--brand-strong); }
.accordion-icon { color: var(--muted); font-size: 1rem; flex: 0 0 auto; transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--brand); }
.accordion-panel { padding: 0 4px 20px; }
.accordion-panel p { margin: 0; color: var(--muted); }

/* ============ 14 · FOOTER & BÜLTEN ============ */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); }
.footer-inner {
  display: grid; gap: 32px 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  padding-block: clamp(40px, 5vw, 64px);
}
.brand-footer { margin-bottom: 14px; }
.footer-desc { margin: 0 0 18px; color: var(--muted); font-size: .92rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); color: var(--ink-2); background: var(--surface);
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}
.footer-social a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }

.footer-col-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--brand-strong); }

.footer-news-text { margin: 0 0 12px; color: var(--muted); font-size: .9rem; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; min-width: 0; min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-size: .9rem; font-family: inherit;
}
.newsletter-input:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.newsletter-input.is-invalid { border-color: var(--red); }
.newsletter-btn { flex: 0 0 auto; }
.newsletter-error { margin: 8px 0 0; color: var(--red); font-size: .82rem; }

.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding-block: 18px;
}
.footer-copy, .footer-note { margin: 0; font-size: .82rem; color: var(--muted); }

/* ============ 15 · MODAL · TOAST · SCROLL-TOP ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(27, 23, 37, .55);
  opacity: 0; transition: opacity .2s ease;
}
/* hidden iken display:flex'i geç — kapalı modal görünmez şekilde tıklamaları engellemesin */
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }
.modal-dialog {
  width: 100%; max-width: 520px; max-height: calc(100dvh - 40px); overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: translateY(12px); transition: transform .2s ease;
}
.modal-overlay.is-open .modal-dialog { transform: translateY(0); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.modal-title { font-size: 1.25rem; }
.modal-close {
  width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--surface-2); }
.modal-form { padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.form-control-custom {
  width: 100%; min-height: 46px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-size: .95rem; font-family: inherit;
}
select.form-control-custom { cursor: pointer; }
.form-control-custom:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.form-control-custom.is-invalid { border-color: var(--red); }
.field-error { margin: 6px 0 0; color: var(--red); font-size: .8rem; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

.toast-container {
  position: fixed; z-index: 1300; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 10px; max-width: min(360px, calc(100vw - 40px));
}
.toast {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--ink); color: #fff; box-shadow: var(--shadow-md);
  font-size: .9rem; line-height: 1.45;
  transform: translateY(8px); opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast .bi { flex: 0 0 auto; font-size: 1.05rem; margin-top: 1px; }
.toast-success .bi { color: #86EFAC; }
.toast-info .bi { color: #C4B5FD; }
.toast-error { background: var(--red); }

.scroll-top {
  position: fixed; z-index: 900; right: 20px; bottom: 20px;
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%;
  background: var(--surface); color: var(--brand-strong);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-size: 1.1rem;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ============ 16 · RESPONSIVE & A11Y ============ */

@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }
  .footer-news-col { grid-column: 1 / -1; max-width: 420px; }
}

/* Tablet (601–1023) */
@media (max-width: 1023px) {
  :root { --header-h: 62px; }

  .primary-nav { display: none; }
  .btn-nav-ghost { display: none !important; }
  .nav-toggle { display: inline-flex; }

  .header-inner { justify-content: space-between; gap: 12px; }
  .header-actions { gap: 10px; margin-left: auto; }
  .btn-nav-primary { min-height: 44px; }

  .search-bar {
    grid-template-columns: 1fr 1fr;
    max-width: 660px;
  }
  .search-field-keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }

  .steps { grid-template-columns: 1fr; }

  .section-head-row { flex-direction: column; align-items: flex-start; }
}

/* Ok butonları yalnızca masaüstünde; küçük ekranda swipe/scroll-snap */
@media (max-width: 768px) {
  .topbar { display: none; }
  .rail-arrow { display: none; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-news-col { grid-column: 1 / -1; }
}

/* Mobil (≤600): kategori/şehir 2'li statik blok, iş kartları tek sütun */
@media (max-width: 600px) {
  body { font-size: 15px; }

  .section-head { margin-bottom: 22px; }

  .search-bar {
    grid-template-columns: 1fr 1fr;
    padding: 12px; gap: 10px;
    border-radius: var(--radius-md);
  }
  .search-field-keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }
  .search-meta { align-items: stretch; }
  .chip-row { justify-content: flex-start; }

  /* Kategori & şehir rayları -> statik 2'li blok (kaydırma kapanır) */
  .rail-tiles {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    overflow: visible; scroll-snap-type: none; padding: 0;
  }
  .rail-tiles > li { flex: initial; }
  .category-tile { padding: 16px; }

  /* İş kartları -> tek sütun (kaydırma kapanır) */
  .business-grid {
    display: grid; grid-template-columns: 1fr; gap: 14px;
    overflow: visible; scroll-snap-type: none; padding: 0;
  }
  .business-grid > .business-card { flex: initial; width: auto; }

  /* Yorum rayı mobilde swipe olarak kalır (kompakt) */
  .review-rail-track > .review-card { flex: 0 0 86vw; }

  .owner-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .owner-cta-actions { width: 100%; }
  .owner-cta-actions .btn { flex: 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-news-col { grid-column: 1 / -1; }
  .newsletter-row { flex-direction: column; }
  .newsletter-btn { width: 100%; }

  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .toast-container { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .scroll-top { right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 1.1rem; }
  .card-actions { flex-wrap: wrap; }
  .card-actions .btn-secondary { flex: 1 1 100%; }

  /* 360px'de taşma olmasın: kompakt İşletme Ekle, dokunma hedefi ≥44px korunur */
  .header-inner { gap: 8px; }
  .header-actions { gap: 8px; }
  .btn-nav-primary { padding: 0 12px; font-size: .85rem; }
}

/* Scroll kilidi (JS toggle) */
body.no-scroll { overflow: hidden; }

/* Hareket azaltma */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   17 · FİRMA LİSTELEME SAYFASI (firmalar.html)
   Breadcrumb · Sayfa başlığı · Filtre paneli · Sonuç ızgarası · Sayfalama
   Anasayfaya özgü yatay raylar burada YOK: listeleme sabit ızgara kullanır.
   Mevcut token/sınıfları yeniden kullanır (.business-card, .chip, .form-control-custom).
   ===================================================================== */

/* Aktif nav durumu (Firmalar) */
.nav-link.is-active { color: var(--brand-strong); font-weight: 600; background: var(--surface-2); }

/* ---- Breadcrumb + Sayfa başlığı ---- */
.listing-head {
  padding-block: clamp(24px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: radial-gradient(120% 120% at 50% -40%, var(--brand-soft) 0%, var(--surface) 55%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb { margin-bottom: 16px; }
.breadcrumb-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
}
.breadcrumb-item { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "\F285"; /* bi-chevron-right */
  font-family: "bootstrap-icons"; font-size: .7rem; color: var(--line-strong);
  margin-right: 6px;
}
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--brand-strong); }
.breadcrumb-item[aria-current="page"] { color: var(--ink); font-weight: 600; }

.page-title { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); line-height: 1.1; letter-spacing: -.02em; }
.page-lead { margin: 12px 0 0; max-width: 620px; color: var(--muted); font-size: 1.02rem; }
.page-count { margin: 14px 0 0; font-size: .92rem; color: var(--ink-2); }
.page-count-num { font-weight: 700; color: var(--brand-strong); }

/* ---- Listeleme yerleşimi: sidebar + sonuçlar ---- */
.listing-section { padding-block: clamp(32px, 4vw, 56px); }
.listing-layout {
  display: grid; grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px); align-items: start;
}

/* Mobil filtre aç/kapa butonu — masaüstünde gizli */
.filter-toggle { display: none; width: 100%; margin-bottom: 16px; }

/* ---- Filtre paneli ---- */
.listing-sidebar { position: sticky; top: calc(var(--header-h) + 16px); }
.filter-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.filter-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.filter-title { font-size: 1.05rem; }
.filter-close { display: none; } /* yalnızca mobil drawer'da görünür */

.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-label {
  font-size: .8rem; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
}
.filter-chips-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chips-group .chip { min-height: 38px; }
.js-status-chip[aria-pressed="true"] {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.filter-actions { display: flex; flex-direction: column; gap: 10px; }

/* ---- Sonuç araç çubuğu ---- */
.listing-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.listing-results-title { font-size: 1.15rem; color: var(--ink); }
.listing-toolbar-sort { display: flex; align-items: center; gap: 10px; }
.listing-sort-label { font-size: .85rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.listing-sort-select { min-height: 42px; min-width: 180px; }

/* ---- Sonuç ızgarası: rayı geçersiz kılıp sabit grid'e çevir ---- */
.business-grid.listing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow: visible; scroll-snap-type: none; padding: 0;
}
.business-grid.listing-grid > .business-card { flex: initial; width: auto; min-width: 0; }

/* Sponsorlu rozet varyantı — beyaz "Doğrulanmış" rozetinden ayrışsın */
.card-badge-sponsor { background: var(--brand); color: #fff; }
.card-badge-sponsor .bi { color: #fff; }

/* ---- Sayfalama ---- */
.pagination {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px; margin-top: clamp(32px, 4vw, 48px);
}
.pagination-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--surface); color: var(--ink-2);
  font-size: .92rem; font-weight: 600;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.pagination-link:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--surface-2); }
.pagination-link.is-active {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.pagination-link[aria-disabled="true"] {
  color: var(--line-strong); pointer-events: none; background: var(--surface-2);
}
.pagination-gap {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 44px; color: var(--muted);
}

/* Filtre drawer overlay (mobil) */
.filter-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(27, 23, 37, .45);
  opacity: 0; transition: opacity .2s ease;
}
.filter-overlay.is-open { opacity: 1; }

/* ---- Listeleme responsive ---- */
@media (max-width: 1023px) {
  /* Sidebar mobil drawer'a dönüşür */
  .filter-toggle { display: inline-flex; }

  .listing-layout { grid-template-columns: 1fr; }

  .listing-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 1110;
    width: min(360px, 90vw);
    background: var(--surface); border-left: 1px solid var(--line);
    padding: 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform .22s ease;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .listing-sidebar.is-open { transform: translateX(0); }
  .filter-panel { border: none; padding: 0; border-radius: 0; }
  .filter-close {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
  }
}

@media (max-width: 600px) {
  /* Sonuç kartları tek sütun (okunur) */
  .business-grid.listing-grid { grid-template-columns: 1fr; gap: 14px; }
  .listing-toolbar { gap: 10px; }
  .listing-toolbar-sort { width: 100%; }
  .listing-sort-select { flex: 1; min-width: 0; }
}

@media (max-width: 380px) {
  .pagination { gap: 4px; }
  .pagination-link { min-width: 40px; padding: 0 8px; }
}

/* =====================================================================
   18 · FİRMA DETAY SAYFASI (firma-detay.html)
   İşletme başlığı · Galeri · Hakkında/Hizmetler/Saatler/Yorumlar ·
   Sticky iletişim kartı · Benzer işletmeler.
   Mor token'lara uyarlandı. Temalı bileşenleri (breadcrumb, status,
   price-level, business-card, btn, no-scroll) yeniden tanımlamaz.
   ===================================================================== */

/* ---- Breadcrumb + işletme başlığı ---- */
.detail-head {
  padding-block: clamp(24px, 4vw, 44px) clamp(24px, 3vw, 36px);
  background: radial-gradient(120% 120% at 50% -40%, var(--brand-soft) 0%, var(--surface) 58%);
  border-bottom: 1px solid var(--line);
}
.detail-header { max-width: 820px; }
.detail-cat {
  margin: 0 0 8px;
  font-size: .8rem; font-weight: 600; color: var(--brand-strong);
  text-transform: uppercase; letter-spacing: .05em;
}
.detail-title {
  font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); line-height: 1.12;
  letter-spacing: -.02em;
}
.detail-badges {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 14px;
}
.detail-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
}
.detail-badge-verified {
  background: var(--brand-soft); color: var(--brand-strong);
  border: 1px solid var(--line-strong);
}
.detail-badge-verified .bi { color: var(--brand); }
.detail-rating { display: inline-flex; align-items: center; gap: 7px; font-size: .92rem; }
.detail-stars { display: inline-flex; gap: 1px; color: var(--star); font-size: .95rem; }
.detail-rating-value { font-weight: 700; color: var(--ink); }
.detail-rating-count { color: var(--muted); }

.detail-meta {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px; font-size: .92rem; color: var(--ink-2);
}
.detail-meta-item { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.detail-meta-item > .bi { color: var(--muted); font-size: 1rem; }
.detail-meta-muted { color: var(--muted); }
.detail-meta .price-level { color: var(--ink-2); }

/* ---- İçerik yerleşimi: ana + sticky kart ---- */
.detail-section-wrap { padding-block: clamp(32px, 4vw, 56px); }
.detail-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 3vw, 40px); align-items: start;
}
.detail-main { min-width: 0; }

/* ---- Benzer işletmeler: rayı geçersiz kılıp sabit responsive grid'e çevir ---- */
.business-grid.similar-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow: visible; scroll-snap-type: none; padding: 0;
}
.business-grid.similar-grid > .business-card { flex: initial; width: auto; min-width: 0; }

/* ---- Galeri ---- */
.detail-gallery { margin-bottom: clamp(28px, 4vw, 40px); }
.gallery-main {
  margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface-2); aspect-ratio: 16 / 10;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main img.is-broken { visibility: hidden; }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 10px;
}
.gallery-thumb {
  display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; background: var(--surface-2);
  aspect-ratio: 4 / 3; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb img.is-broken { visibility: hidden; }
.gallery-thumb:hover { border-color: var(--line-strong); }
.gallery-thumb.is-active { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(109, 40, 217, .28); }

/* ---- Ortak bölüm ---- */
.detail-section { padding-top: clamp(24px, 3vw, 32px); }
.detail-section + .detail-section { border-top: 1px solid var(--line); }
.detail-section-title { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); margin-bottom: 16px; }
.detail-about { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.7; max-width: 68ch; }

/* ---- Hizmet etiketleri ---- */
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-2); font-size: .9rem; font-weight: 500;
}
.service-tag .bi { color: var(--brand); font-size: .95rem; }

/* ---- Çalışma saatleri (satır listesi; mobilde de satır/özet — table YOK) ---- */
.hours-list {
  border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  max-width: 460px;
}
.hours-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--ink-2); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.hours-time { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.hours-row.is-today { background: rgba(109, 40, 217, .06); }
.hours-row.is-today .hours-day,
.hours-row.is-today .hours-time { color: var(--brand-strong); font-weight: 700; }
.hours-today-tag {
  padding: 2px 8px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .02em;
}

/* ---- Yorumlar ---- */
.detail-reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.detail-reviews-head .detail-section-title { margin-bottom: 0; }
.detail-reviews-count { color: var(--muted); font-weight: 500; }
.detail-reviews { display: flex; flex-direction: column; gap: 16px; }
.detail-review {
  padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.detail-review .review-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.detail-review .review-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.review-avatar-a { background: #6D28D9; }
.review-avatar-b { background: #15803D; }
.review-avatar-c { background: #B45309; }
.review-avatar-d { background: #0E7490; }
.review-head-text { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.detail-review .review-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-rating { display: inline-flex; gap: 1px; color: var(--star); font-size: .82rem; }
.review-date { font-size: .82rem; color: var(--muted); white-space: nowrap; }
.review-text { margin: 0; color: var(--ink-2); font-size: .96rem; line-height: 1.6; }

/* ---- Sticky iletişim / aksiyon kartı ---- */
.detail-aside { position: sticky; top: calc(var(--header-h) + 16px); }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card-title { font-size: 1.15rem; margin-bottom: 16px; }
.contact-cta { margin-bottom: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 8px; border-radius: var(--radius-sm);
  color: var(--ink); min-height: 44px;
  transition: background-color .15s ease;
}
a.contact-item:hover { background: var(--surface-2); color: var(--ink); }
.contact-item-static { cursor: default; }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--brand-strong); font-size: 1.05rem;
}
.contact-icon-wa { color: #128C7E; }
.contact-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-value { font-size: .92rem; font-weight: 500; color: var(--ink); word-break: break-word; }
.contact-directions { margin-bottom: 14px; }
.contact-secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-secondary-actions .btn { min-height: 44px; }
.contact-fav[aria-pressed="true"] { color: var(--red); border-color: var(--red); }
.contact-fav[aria-pressed="true"] .bi::before { content: "\f417"; } /* bi-heart-fill */

/* ---- Detay responsive ---- */
@media (max-width: 1023px) {
  /* Tek sütun: sticky kart içeriğe iner (static) */
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .contact-card { max-width: 520px; }
}

@media (max-width: 600px) {
  /* Galeri tek büyük görsel + kaydırılabilir thumb şeridi (body taşmaz) */
  .gallery-thumbs {
    display: flex; gap: 8px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 4px;
  }
  .gallery-thumb {
    flex: 0 0 96px; scroll-snap-align: start; aspect-ratio: 4 / 3;
  }
  .contact-card { max-width: none; }
  .detail-review .review-head { flex-wrap: wrap; }
  .review-date { width: 100%; padding-left: 54px; }
  /* Benzer işletme kartları tek sütun (kompakt) */
  .business-grid.similar-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 380px) {
  .hours-row { padding: 12px 12px; }
  .contact-secondary-actions { grid-template-columns: 1fr; }
}

/* =====================================================================
   19 · SABİT SAYFALAR (hakkimizda · iletisim · yasal metinler)
   page-hero · prose · value/stat/cookie kartları · contact-layout.
   Mor token'lara uyarlandı; ortak sınıfları (.steps, .owner-cta, .btn,
   .form-*, .eyebrow, .section-title, .breadcrumb*, .container) YENİDEN
   TANIMLAMAZ — yalnızca kullanır.
   ===================================================================== */

/* ---- Başlık bandı (firma-detay .detail-head ritmini taklit eder) ---- */
.page-hero {
  padding-block: clamp(24px, 4vw, 44px) clamp(26px, 3.4vw, 40px);
  background: radial-gradient(120% 120% at 50% -40%, var(--brand-soft) 0%, var(--surface) 58%);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb { margin-bottom: 16px; }
.page-hero-inner { max-width: 820px; }
.page-hero h1 {
  font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem);
  line-height: 1.12; letter-spacing: -.02em;
}
.page-hero-lead {
  margin: 14px 0 0; max-width: 68ch;
  color: var(--muted); font-size: clamp(1rem, .96rem + .25vw, 1.12rem);
}

/* ---- Sabit sayfa bölümleri (anasayfa .section ritmiyle uyumlu) ---- */
.page-section { padding-block: var(--section-y); }
.page-section-alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.page-section-head { max-width: 640px; margin-bottom: clamp(24px, 3.4vw, 40px); }
.page-section-head p { margin: 10px 0 0; color: var(--muted); font-size: 1.02rem; }

/* ---- Yasal metin tipografisi ---- */
.prose { max-width: 72ch; }
.prose h2 {
  margin: clamp(30px, 4vw, 44px) 0 12px;
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--line);
  font-size: clamp(1.15rem, 1.02rem + .5vw, 1.4rem); color: var(--ink);
}
.prose > h2:first-child,
.prose > .prose-updated + h2 { margin-top: 0; padding-top: 0; border-top: none; }
.prose p { margin: 0 0 16px; line-height: 1.7; color: var(--ink-2); }
.prose ul { margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 24px; line-height: 1.7; color: var(--ink-2); }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: .68em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
}
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brand-strong); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose .prose-updated {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 8px; padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface-2); color: var(--muted);
  font-size: .85rem; font-weight: 500; line-height: 1.3;
}
.prose .prose-updated .bi { color: var(--brand); }

/* ---- Değer kartları (hakkimizda) ---- */
.value-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.value-card {
  padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.value-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.value-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft); color: var(--brand); font-size: 1.35rem;
}
.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ---- İstatistik kartları (hakkimizda) ---- */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 22px); }
.stat-card {
  padding: clamp(20px, 3vw, 28px) 20px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.stat-num {
  display: block; font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.stat-label { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }

/* ---- Çerez türü kartları (cerez-politikasi) ---- */
.cookie-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.cookie-card {
  display: flex; flex-direction: column;
  padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.cookie-card-tag {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 12px; padding: 5px 12px; border-radius: 999px;
  background: var(--brand-soft); border: 1px solid var(--line-strong);
  color: var(--brand-strong); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.cookie-card-tag .bi { color: var(--brand); font-size: .85rem; }
.cookie-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.cookie-card > p { margin: 0 0 16px; color: var(--muted); font-size: .93rem; line-height: 1.6; }
.cookie-card dl {
  margin: auto 0 0; padding-top: 14px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: .86rem;
}
.cookie-card dt { color: var(--muted); font-weight: 600; }
.cookie-card dd { margin: 0; color: var(--ink-2); }

/* ---- İletişim yerleşimi (iletisim) ---- */
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px); align-items: start;
}
.contact-form-card {
  padding: clamp(22px, 3vw, 32px); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form-card > h2 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card > p { margin: 0 0 20px; color: var(--muted); font-size: .95rem; }
.contact-info {
  padding: clamp(22px, 3vw, 32px); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.contact-info > h2 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-info > p { margin: 0 0 20px; color: var(--muted); font-size: .95rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 6px; border-radius: var(--radius-sm); color: var(--ink);
  transition: background-color .15s ease;
}
a.contact-info-item:hover { background: var(--surface); color: var(--ink); }
.contact-info-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: var(--radius-sm);
  background: var(--brand-soft); border: 1px solid var(--line);
  color: var(--brand-strong); font-size: 1.1rem;
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-info-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.contact-info-value { font-size: .95rem; font-weight: 500; color: var(--ink); word-break: break-word; }

/* ---- Form: textarea + durum notu (modal .form-* sınıflarını genişletir) ---- */
textarea.form-control-custom { min-height: 132px; padding: 12px 14px; line-height: 1.6; resize: vertical; }
.form-status {
  margin: 16px 0 0; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(21, 128, 61, .10); border: 1px solid rgba(21, 128, 61, .28);
  color: var(--green); font-size: .9rem;
}

/* ---- Sabit sayfa responsive (360px'te taşma yok) ---- */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-section-head p { font-size: .98rem; }
}
@media (max-width: 380px) {
  .value-card, .cookie-card, .stat-card { padding: 18px; }
  .contact-form-card, .contact-info { padding: 18px; }
}
  background-repeat: no-repeat; background-position: right 14px center;
  padding-left: 14px; padding-right: 34px; cursor: pointer;
  text-overflow: ellipsis;
}
/* Select'lerde sol ikon yok — metin ("Tüm şehirler") tam sığsın */
.search-select-wrap .search-icon { display: none; }
.search-input:focus, .search-select:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--ring);
}
.search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: none; background: transparent;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center;
}
.search-clear:hover { color: var(--ink); }
.search-submit { min-height: 48px; width: 100%; }

/* Öneri paneli */
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 6px; max-height: 300px; overflow-y: auto;
}
.suggestion-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--ink-2); font-size: .92rem; cursor: pointer;
}
.suggestion-item .bi { color: var(--muted); font-size: .9rem; }
.suggestion-item:hover,
.suggestion-item.is-active { background: var(--surface-2); color: var(--navy); }
.suggestion-item mark { background: transparent; color: var(--blue); font-weight: 700; padding: 0; }
.suggestion-empty { padding: 12px; color: var(--muted); font-size: .9rem; text-align: center; }

/* Son / popüler arama satırları */
.search-meta {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; margin-top: 20px;
}

/* Güven satırı */
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px; margin: 24px 0 0; font-size: .9rem; color: var(--muted);
}
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-item .bi { color: var(--blue); }
.trust-sep { color: var(--line); }

/* ============ 10 · KATEGORİ & ŞEHİR IZGARALARI ============ */
.category-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.category-tile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.category-tile:hover { border-color: #cbd2dd; box-shadow: var(--shadow-sm); color: var(--ink); }
.category-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--navy); font-size: 1.2rem;
}
.category-name { font-weight: 600; font-size: .98rem; line-height: 1.3; }
.category-count { font-size: .82rem; color: var(--muted); }

.city-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.city-tile {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.city-tile:hover { border-color: #cbd2dd; box-shadow: var(--shadow-sm); color: var(--ink); }
.city-name { font-weight: 600; font-size: 1rem; }
.city-count { font-size: .82rem; color: var(--muted); white-space: nowrap; }

/* ============ 11 · İŞLETME KARTLARI ============ */
.business-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.business-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.business-card:hover { box-shadow: var(--shadow-md); border-color: #dbe0e8; }
.business-card.is-hidden { display: none; }

.card-media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media img.is-broken { visibility: hidden; }

.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .95); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); font-size: 1rem;
  transition: color .15s ease, transform .15s ease;
}
.fav-btn:hover { color: var(--red); }
.fav-btn[aria-pressed="true"] { color: var(--red); }
.fav-btn[aria-pressed="true"] .bi::before { content: "\f417"; } /* bi-heart-fill */

.card-body { display: flex; flex-direction: column; gap: 8px; padding: 16px; flex: 1; }
.card-cat {
  font-size: .76rem; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: .04em;
}
.card-title {
  font-size: 1.08rem; font-weight: 600; line-height: 1.3; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-loc { margin: 0; display: flex; align-items: center; gap: 6px; font-size: .88rem; color: var(--muted); }
.card-loc .bi { font-size: .9rem; }

.card-rating { display: flex; align-items: center; gap: 6px; font-size: .9rem; }
.card-rating .bi-star-fill { color: #E0A106; }
.rating-value { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--muted); }

.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap; margin-top: 2px;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.card-actions {
  display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px;
}
.card-actions .btn-secondary { flex: 1; }

/* ============ 12 · NASIL ÇALIŞIR · YORUMLAR · CTA ============ */
.steps { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); counter-reset: step; }
.step {
  padding: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 14px;
  border-radius: 50%; background: var(--navy); color: #fff;
  font-weight: 700; font-size: 1.05rem;
}
.step-title { margin-bottom: 6px; }
.step-text { margin: 0; color: var(--muted); font-size: .95rem; }

.review-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.review-card {
  margin: 0; padding: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 18px;
}
.review-quote {
  margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--ink-2);
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--navy); font-weight: 700; font-size: .85rem;
}
.review-name { font-weight: 600; color: var(--ink); font-size: .92rem; }
.review-city { font-weight: 400; color: var(--muted); }

.owner-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
  padding: clamp(32px, 5vw, 56px);
  background: var(--navy); border-radius: var(--radius-lg); color: #fff;
}
.owner-cta-text { max-width: 560px; }
.cta-title { color: #fff; }
.cta-lead { margin: 10px 0 0; color: rgba(255, 255, 255, .78); font-size: 1.05rem; }
.owner-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.owner-cta .btn-primary { background: var(--blue); border-color: var(--blue); }
.owner-cta .btn-primary:hover { background: var(--blue-strong); }

/* ============ 13 · SSS ACCORDION ============ */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-heading { margin: 0; }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 4px; background: transparent; border: none;
  text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.accordion-trigger:hover { color: var(--navy); }
.accordion-icon { color: var(--muted); font-size: 1rem; flex: 0 0 auto; transition: transform .2s ease; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--blue); }
.accordion-panel { padding: 0 4px 20px; }
.accordion-panel p { margin: 0; color: var(--muted); }

/* ============ 14 · FOOTER & BÜLTEN ============ */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); }
.footer-inner {
  display: grid; gap: 32px 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  padding-block: clamp(40px, 5vw, 64px);
}
.brand-footer { margin-bottom: 14px; }
.footer-desc { margin: 0 0 18px; color: var(--muted); font-size: .92rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink-2); background: var(--surface);
  transition: color .15s ease, border-color .15s ease;
}
.footer-social a:hover { color: var(--navy); border-color: #cbd2dd; }

.footer-col-title { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--navy); }

.footer-news-text { margin: 0 0 12px; color: var(--muted); font-size: .9rem; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; min-width: 0; min-height: 44px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-size: .9rem; font-family: inherit;
}
.newsletter-input:focus { outline: none; border-color: var(--blue); box-shadow: var(--ring); }
.newsletter-input.is-invalid { border-color: var(--red); }
.newsletter-btn { flex: 0 0 auto; }
.newsletter-error { margin: 8px 0 0; color: var(--red); font-size: .82rem; }

.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding-block: 18px;
}
.footer-copy, .footer-note { margin: 0; font-size: .82rem; color: var(--muted); }

/* ============ 15 · MODAL · TOAST · SCROLL-TOP ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, .5);
  opacity: 0; transition: opacity .2s ease;
}
/* hidden iken display:flex'i geç — kapalı modal görünmez şekilde tüm tıklamaları engellemesin */
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }
.modal-dialog {
  width: 100%; max-width: 520px; max-height: calc(100dvh - 40px); overflow-y: auto;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: translateY(12px); transition: transform .2s ease;
}
.modal-overlay.is-open .modal-dialog { transform: translateY(0); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.modal-title { font-size: 1.25rem; }
.modal-close {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--surface-2); }
.modal-form { padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.form-control-custom {
  width: 100%; min-height: 46px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-size: .95rem; font-family: inherit;
}
select.form-control-custom { cursor: pointer; }
.form-control-custom:focus { outline: none; border-color: var(--blue); box-shadow: var(--ring); }
.form-control-custom.is-invalid { border-color: var(--red); }
.field-error { margin: 6px 0 0; color: var(--red); font-size: .8rem; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

.toast-container {
  position: fixed; z-index: 1300; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 10px; max-width: min(360px, calc(100vw - 40px));
}
.toast {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--navy); color: #fff; box-shadow: var(--shadow-md);
  font-size: .9rem; line-height: 1.45;
  transform: translateY(8px); opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast .bi { flex: 0 0 auto; font-size: 1.05rem; margin-top: 1px; }
.toast-success .bi { color: #86EFAC; }
.toast-info .bi { color: #93C5FD; }
.toast-error { background: var(--red); }

.scroll-top {
  position: fixed; z-index: 900; right: 20px; bottom: 20px;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-size: 1.1rem;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ============ 16 · RESPONSIVE & A11Y ============ */

/* Laptop (1024–1439): kategori 4, iş kartı 3 — varsayılan grid uygun. */
@media (max-width: 1200px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }
  .footer-news-col { grid-column: 1 / -1; max-width: 420px; }
}

/* Tablet (601–1023) */
@media (max-width: 1023px) {
  :root { --header-h: 62px; }

  .primary-nav { display: none; }
  .btn-nav-ghost { display: none !important; }
  .nav-toggle { display: inline-flex; }

  /* Mobil başlık: logo solda, aksiyon kümesi sağda; hamburger en sağda.
     Denge için kompakt "İşletme Ekle" pill hamburgerin solunda kalır. */
  .header-inner { justify-content: space-between; gap: 12px; }
  .header-actions { gap: 10px; margin-left: auto; }
  .btn-nav-primary { min-height: 44px; }

  .search-bar {
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
  }
  .search-field-keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }

  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }

  .section-head-row { flex-direction: column; align-items: flex-start; }
}

/* Utility üst bar yalnızca masaüstü/geniş tablette görünür — mobilde sade kalsın */
@media (max-width: 768px) {
  .topbar { display: none; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-news-col { grid-column: 1 / -1; }
}

/* Mobil (≤600): 2'li bloklar, tek sütun kart */
@media (max-width: 600px) {
  body { font-size: 15px; }

  .section-head { margin-bottom: 24px; }

  .search-bar {
    grid-template-columns: 1fr 1fr;
    padding: 12px; gap: 10px;
    border-radius: var(--radius-md);
  }
  .search-field-keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }
  .search-meta { align-items: stretch; }
  .chip-row { justify-content: flex-start; }

  /* İkili bloklar */
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-tile { padding: 16px; }
  .city-tile { flex-direction: column; align-items: flex-start; gap: 2px; }

  /* İş kartları tek sütun, kompakt */
  .business-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-grid { grid-template-columns: 1fr; }

  .owner-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .owner-cta-actions { width: 100%; }
  .owner-cta-actions .btn { flex: 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-news-col { grid-column: 1 / -1; }
  .newsletter-row { flex-direction: column; }
  .newsletter-btn { width: 100%; }

  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .toast-container { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .scroll-top { right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 1.1rem; }
  .card-actions { flex-wrap: wrap; }
  .card-actions .btn-secondary { flex: 1 1 100%; }

  /* 360px'de taşma olmasın: kompakt İşletme Ekle, dokunma hedefi ≥44px korunur */
  .header-inner { gap: 8px; }
  .header-actions { gap: 8px; }
  .btn-nav-primary { padding: 0 12px; font-size: .85rem; }
}

/* =====================================================================
   17 · FİRMA LİSTELEME SAYFASI (firmalar.html)
   Breadcrumb · Sayfa başlığı · Filtre paneli · Sonuç ızgarası · Sayfalama
   Mevcut token/sınıfları yeniden kullanır (.business-card, .chip, .form-control-custom).
   ===================================================================== */

/* Aktif nav durumu (Firmalar) */
.nav-link.is-active { color: var(--navy); font-weight: 600; background: var(--surface-2); }

/* ---- Breadcrumb + Sayfa başlığı ---- */
.listing-head {
  padding-block: clamp(24px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: radial-gradient(120% 120% at 50% -40%, #fbfcfe 0%, var(--surface) 60%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb { margin-bottom: 16px; }
.breadcrumb-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
}
.breadcrumb-item { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "\F285"; /* bi-chevron-right */
  font-family: "bootstrap-icons"; font-size: .7rem; color: var(--line);
  margin-right: 6px;
}
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--navy); }
.breadcrumb-item[aria-current="page"] { color: var(--ink); font-weight: 600; }

.page-title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); line-height: 1.12; }
.page-lead { margin: 12px 0 0; max-width: 620px; color: var(--muted); font-size: 1.02rem; }
.page-count { margin: 14px 0 0; font-size: .92rem; color: var(--ink-2); }
.page-count-num { font-weight: 700; color: var(--navy); }

/* ---- Listeleme yerleşimi: sidebar + sonuçlar ---- */
.listing-section { padding-block: clamp(32px, 4vw, 56px); }
.listing-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: clamp(20px, 3vw, 32px); align-items: start;
}

/* Mobil filtre aç/kapa butonu — masaüstünde gizli */
.filter-toggle { display: none; width: 100%; margin-bottom: 16px; }

/* ---- Filtre paneli ---- */
.listing-sidebar { position: sticky; top: calc(var(--header-h) + 16px); }
.filter-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.filter-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.filter-title { font-size: 1.05rem; }
.filter-close { display: none; } /* yalnızca mobil drawer'da görünür */

.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-label {
  font-size: .8rem; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
}
.filter-chips-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chips-group .chip { min-height: 38px; }
.js-status-chip[aria-pressed="true"] {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.filter-actions { display: flex; flex-direction: column; gap: 10px; }

/* ---- Sonuç araç çubuğu ---- */
.listing-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.listing-results-title { font-size: 1.15rem; color: var(--ink); }
.listing-toolbar-sort { display: flex; align-items: center; gap: 10px; }
.listing-sort-label { font-size: .85rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.listing-sort-select { min-height: 42px; min-width: 180px; }

/* ---- Sonuç ızgarası: sidebar yanında daralan alan için otomatik sütun ---- */
.listing-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Sponsorlu rozet varyantı */
.card-badge-sponsor { color: var(--blue); }
.card-badge-sponsor .bi { color: var(--blue); }

/* ---- Sayfalama ---- */
.pagination {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px; margin-top: clamp(32px, 4vw, 48px);
}
.pagination-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink-2);
  font-size: .92rem; font-weight: 600;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.pagination-link:hover { border-color: #cbd2dd; color: var(--navy); background: #fbfcfe; }
.pagination-link.is-active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.pagination-link[aria-disabled="true"] {
  color: var(--line); pointer-events: none; background: var(--surface-2);
}
.pagination-gap {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 44px; color: var(--muted);
}

/* Filtre drawer overlay (mobil) */
.filter-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(15, 23, 42, .45);
  opacity: 0; transition: opacity .2s ease;
}
.filter-overlay.is-open { opacity: 1; }

/* ---- Listeleme responsive ---- */
@media (max-width: 1023px) {
  /* Sidebar mobil drawer'a dönüşür */
  .filter-toggle { display: inline-flex; }

  .listing-layout { grid-template-columns: 1fr; }

  .listing-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 1110;
    width: min(360px, 90vw);
    background: var(--surface); border-left: 1px solid var(--line);
    padding: 20px; overflow-y: auto;
    transform: translateX(100%); transition: transform .22s ease;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .listing-sidebar.is-open { transform: translateX(0); }
  .filter-panel { border: none; padding: 0; border-radius: 0; }
  .filter-close {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
  }
}

@media (max-width: 600px) {
  /* Sonuç kartları tek sütun (okunur) */
  .listing-grid { grid-template-columns: 1fr; gap: 14px; }
  .listing-toolbar { gap: 10px; }
  .listing-toolbar-sort { width: 100%; }
  .listing-sort-select { flex: 1; min-width: 0; }
}

@media (max-width: 380px) {
  .pagination { gap: 4px; }
  .pagination-link { min-width: 40px; padding: 0 8px; }
}

/* =====================================================================
   18 · FİRMA DETAY SAYFASI (firma-detay.html)
   İşletme başlığı · Galeri · Hakkında/Hizmetler/Saatler/Yorumlar ·
   Sticky iletişim kartı · Benzer işletmeler.
   Mevcut token/sınıfları yeniden kullanır (.business-card, .btn, .status).
   ===================================================================== */

/* ---- Breadcrumb + işletme başlığı ---- */
.detail-head {
  padding-block: clamp(24px, 4vw, 44px) clamp(24px, 3vw, 36px);
  background: radial-gradient(120% 120% at 50% -40%, #fbfcfe 0%, var(--surface) 60%);
  border-bottom: 1px solid var(--line);
}
.detail-header { max-width: 820px; }
.detail-cat {
  margin: 0 0 8px;
  font-size: .8rem; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: .05em;
}
.detail-title {
  font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); line-height: 1.12;
}
.detail-badges {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 14px;
}
.detail-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
}
.detail-badge-verified {
  background: rgba(30, 64, 175, .08); color: var(--navy);
  border: 1px solid rgba(30, 64, 175, .18);
}
.detail-badge-verified .bi { color: var(--blue); }
.detail-rating { display: inline-flex; align-items: center; gap: 7px; font-size: .92rem; }
.detail-stars { display: inline-flex; gap: 1px; color: #E0A106; font-size: .95rem; }
.detail-rating-value { font-weight: 700; color: var(--ink); }
.detail-rating-count { color: var(--muted); }

.detail-meta {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px; font-size: .92rem; color: var(--ink-2);
}
.detail-meta-item { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.detail-meta-item > .bi { color: var(--muted); font-size: 1rem; }
.detail-meta-muted { color: var(--muted); }
.detail-meta .price-level { color: var(--ink-2); }

/* ---- İçerik yerleşimi: ana + sticky kart ---- */
.detail-section-wrap { padding-block: clamp(32px, 4vw, 56px); }
.detail-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: clamp(24px, 3vw, 40px); align-items: start;
}
.detail-main { min-width: 0; }

/* ---- Galeri ---- */
.detail-gallery { margin-bottom: clamp(28px, 4vw, 40px); }
.gallery-main {
  margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface-2); aspect-ratio: 16 / 10;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main img.is-broken { visibility: hidden; }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 10px;
}
.gallery-thumb {
  display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; background: var(--surface-2);
  aspect-ratio: 4 / 3; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb img.is-broken { visibility: hidden; }
.gallery-thumb:hover { border-color: #cbd2dd; }
.gallery-thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(30, 64, 175, .25); }

/* ---- Ortak bölüm ---- */
.detail-section { padding-top: clamp(24px, 3vw, 32px); }
.detail-section + .detail-section { border-top: 1px solid var(--line); }
.detail-section-title { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); margin-bottom: 16px; }
.detail-about { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.7; max-width: 68ch; }

/* ---- Hizmet etiketleri ---- */
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-2); font-size: .9rem; font-weight: 500;
}
.service-tag .bi { color: var(--blue); font-size: .95rem; }

/* ---- Çalışma saatleri (satır listesi; mobilde de satır/özet — table YOK) ---- */
.hours-list {
  border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  max-width: 460px;
}
.hours-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--ink-2); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.hours-time { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.hours-row.is-today { background: rgba(30, 64, 175, .05); }
.hours-row.is-today .hours-day,
.hours-row.is-today .hours-time { color: var(--navy); font-weight: 700; }
.hours-today-tag {
  padding: 2px 8px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .02em;
}

/* ---- Yorumlar ---- */
.detail-reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.detail-reviews-head .detail-section-title { margin-bottom: 0; }
.detail-reviews-count { color: var(--muted); font-weight: 500; }
.detail-reviews { display: flex; flex-direction: column; gap: 16px; }
.detail-review {
  padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.detail-review .review-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.detail-review .review-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.review-avatar-a { background: #1E40AF; }
.review-avatar-b { background: #15803D; }
.review-avatar-c { background: #B45309; }
.review-avatar-d { background: #7C3AED; }
.review-head-text { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.detail-review .review-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-rating { display: inline-flex; gap: 1px; color: #E0A106; font-size: .82rem; }
.review-date { font-size: .82rem; color: var(--muted); white-space: nowrap; }
.review-text { margin: 0; color: var(--ink-2); font-size: .96rem; line-height: 1.6; }

/* ---- Sticky iletişim / aksiyon kartı ---- */
.detail-aside { position: sticky; top: calc(var(--header-h) + 16px); }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card-title { font-size: 1.15rem; margin-bottom: 16px; }
.contact-cta { margin-bottom: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 8px; border-radius: var(--radius-sm);
  color: var(--ink); min-height: 44px;
  transition: background-color .15s ease;
}
a.contact-item:hover { background: var(--surface-2); color: var(--ink); }
.contact-item-static { cursor: default; }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--navy); font-size: 1.05rem;
}
.contact-icon-wa { color: #128C7E; }
.contact-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-value { font-size: .92rem; font-weight: 500; color: var(--ink); word-break: break-word; }
.contact-directions { margin-bottom: 14px; }
.contact-secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-secondary-actions .btn { min-height: 44px; }
.contact-fav[aria-pressed="true"] { color: var(--red); border-color: var(--red); }
.contact-fav[aria-pressed="true"] .bi::before { content: "\f417"; } /* bi-heart-fill */

/* ---- Detay responsive ---- */
@media (max-width: 1023px) {
  .detail-layout { grid-template-columns: 1fr; }
  /* Sticky kart içeriğe iner (üstte iletişim önce görünsün istenirse order ile değişebilir) */
  .detail-aside { position: static; }
  .contact-card { max-width: 520px; }
}

@media (max-width: 600px) {
  /* Galeri tek büyük görsel + kaydırılabilir thumb şeridi */
  .gallery-thumbs {
    display: flex; gap: 8px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 4px;
  }
  .gallery-thumb {
    flex: 0 0 96px; scroll-snap-align: start; aspect-ratio: 4 / 3;
  }
  .contact-card { max-width: none; }
  .detail-review .review-head { flex-wrap: wrap; }
  .review-date { width: 100%; padding-left: 54px; }
}

@media (max-width: 380px) {
  .hours-row { padding: 12px 12px; }
  .contact-secondary-actions { grid-template-columns: 1fr; }
}

/* Scroll kilidi (JS toggle) */
body.no-scroll { overflow: hidden; }

/* Hareket azaltma */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =====================================================================
   19 · SABİT SAYFALAR
   (hakkimizda · iletisim · gizlilik-politikasi · kvkk ·
    kullanim-kosullari · cerez-politikasi)
   Başlık bandı · uzun metin (.prose) · değer & istatistik kartları ·
   iletişim yerleşimi · form durumu · çerez/yasal kartlar.
   Mevcut token/sınıfları yeniden kullanır (.container, .section,
   .breadcrumb, .btn, .form-control-custom, .field-error, .eyebrow, .steps).
   ===================================================================== */

/* ---- Sayfa başlık bandı ---- */
.page-hero {
  padding-block: clamp(24px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: radial-gradient(120% 120% at 50% -40%, #fbfcfe 0%, var(--surface) 60%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 760px; min-width: 0; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); line-height: 1.12; }
.page-hero-lead { margin: 14px 0 0; max-width: 640px; color: var(--muted); font-size: 1.05rem; }

/* ---- Genel içerik bölümü ---- */
.page-section { padding-block: clamp(36px, 4vw, 64px); }
.page-section + .page-section { border-top: 1px solid var(--line); }
.page-section-alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.page-section-head { max-width: 640px; margin-bottom: clamp(20px, 3vw, 32px); }
.page-section-head .eyebrow { margin-bottom: 10px; }
.page-section-head p { margin: 10px 0 0; color: var(--muted); font-size: 1.02rem; }

/* ---- Uzun metin okunurluğu ---- */
.prose { max-width: 72ch; min-width: 0; color: var(--ink-2); }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose p { margin: 0 0 16px; line-height: 1.75; }
.prose h2 { margin: 36px 0 12px; font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); line-height: 1.2; }
.prose h3 { margin: 24px 0 8px; font-size: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0 0 8px; line-height: 1.7; }
.prose li::marker { color: var(--blue); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--blue-strong); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose dl { margin: 0 0 16px; }
.prose dt { margin-top: 14px; font-weight: 600; color: var(--ink); }
.prose dd { margin: 4px 0 0; }
.prose-updated {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 24px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: .85rem; color: var(--muted);
}
.prose-updated .bi { color: var(--blue); }

/* ---- Değer kartları (hakkimizda) ---- */
.value-cards { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value-card {
  min-width: 0; padding: 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.value-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 14px; border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--navy); font-size: 1.25rem;
}
.value-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ---- Güven istatistikleri (hakkimizda) ---- */
.stat-cards { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
  min-width: 0; padding: 24px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.stat-num {
  display: block; font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--navy);
}
.stat-label { display: block; margin-top: 8px; font-size: .9rem; color: var(--muted); }

/* ---- İletişim yerleşimi (form + bilgi) ---- */
.contact-layout {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 40px); align-items: start;
}
.contact-form-card, .contact-info {
  min-width: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px);
}
.contact-form-card h2, .contact-info h2 { margin-bottom: 6px; font-size: 1.2rem; }
.contact-form-card > p, .contact-info > p { margin: 0 0 20px; color: var(--muted); font-size: .95rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 8px; border-radius: var(--radius-sm);
  color: var(--ink); min-height: 44px;
  transition: background-color .15s ease;
}
a.contact-info-item:hover { background: var(--surface-2); color: var(--ink); }
.contact-info-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--navy); font-size: 1.05rem;
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-info-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-info-value { font-size: .95rem; font-weight: 500; color: var(--ink); word-break: break-word; }

/* textarea yüksekliği (.form-control-custom mevcut, yeniden tanımlanmaz) */
textarea.form-control-custom {
  min-height: 140px; padding-top: 12px; padding-bottom: 12px;
  resize: vertical; line-height: 1.6;
}

/* Form başarı / durum mesajı (yumuşak success zemin) */
.form-status {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 16px 0 0; padding: 12px 16px; border-radius: var(--radius-md);
  background: rgba(21, 128, 61, .08);
  border: 1px solid rgba(21, 128, 61, .28);
  color: var(--green); font-size: .92rem; line-height: 1.5;
}

/* ---- Çerez kartları (gerçek <table> YOK) ---- */
.cookie-cards { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cookie-card {
  display: flex; flex-direction: column; gap: 8px; min-width: 0; padding: 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.cookie-card-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(30, 64, 175, .08); color: var(--navy);
  border: 1px solid rgba(30, 64, 175, .18);
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
}
.cookie-card h3 { font-size: 1.05rem; }
.cookie-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.cookie-card dl { margin: 4px 0 0; font-size: .85rem; }
.cookie-card dt { font-weight: 600; color: var(--ink-2); }
.cookie-card dd { margin: 0 0 8px; color: var(--muted); }

/* ---- Etiketli yasal liste (dl/kart alternatifi) ---- */
.legal-list { display: flex; flex-direction: column; gap: 12px; max-width: 72ch; }
.legal-list-item {
  padding: 16px 18px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.legal-list-item h3 { margin-bottom: 4px; font-size: 1rem; }
.legal-list-item p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ---- Sabit sayfa responsive ---- */
@media (max-width: 1023px) {
  .value-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .value-cards { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 380px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* ============ 17 · BLOG SISTEMI ============ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(20, 33, 61, 0.1);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--surface-2);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: background 0.3s ease;
}

.blog-category:hover {
  background: var(--blue-strong);
}

.blog-card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--blue);
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 0.75rem;
}

/* Blog Detail */
.post-header {
  background: var(--surface-2);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 1rem 0;
}

.post-meta {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tag-badge {
  display: inline-block;
  background: var(--surface-2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.3s ease;
}

.tag-badge:hover {
  background: var(--line);
}

.post-featured {
  margin-bottom: 2rem;
}

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.post-article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.post-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.post-body blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem;
  background: var(--surface-2);
  margin: 2rem 0;
  font-style: italic;
  color: var(--ink-2);
}

.post-body code {
  background: var(--surface-2);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.post-body pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Table of Contents */
.toc {
  background: var(--surface-2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  position: sticky;
  top: 20px;
}

.toc h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
}

.toc-link:hover {
  color: var(--blue-strong);
}

/* Author Info */
.post-author {
  background: var(--surface-2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--muted);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Share Buttons */
.post-share {
  background: var(--surface-2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: var(--ink);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--ink);
  color: white;
}

.share-btn.facebook:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  color: white;
  border-color: #1DA1F2;
}

.share-btn.linkedin:hover {
  background: #0077B5;
  color: white;
  border-color: #0077B5;
}

/* Comments */
.post-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--line);
}

.comments-title {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 2rem;
}

.comment-form {
  background: var(--surface-2);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.comment-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  margin-bottom: 1rem;
}

.comment-login-cta {
  background: var(--surface-2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 2rem;
}

.comment-login-cta a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.comment-login-cta a:hover {
  text-decoration: underline;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  background: var(--surface-2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
}

.comment-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.comment-author {
  color: var(--ink);
  font-size: 0.95rem;
}

.comment-date {
  color: var(--muted);
  font-size: 0.85rem;
}

.comment-body {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.no-comments {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
}

/* Related Posts */
.related-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-posts li {
  padding: 0.75rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
}

.related-posts a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.related-posts a:hover {
  color: var(--blue-strong);
}

/* Sidebar */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 600;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.category-link:hover {
  background: var(--surface-2);
}

.category-count {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tags-cloud {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-link {
  display: inline-block;
  background: var(--surface-2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: var(--blue);
  color: white;
}

.newsletter-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  color: white;
  border: none;
}

.newsletter-cta .widget-title {
  color: white;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.newsletter-button {
  padding: 0.75rem;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.02);
}

/* Blog Search */
.blog-search-form {
  display: flex;
  gap: 0.5rem;
}

.search-field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-button {
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: var(--blue-strong);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
}

.empty-state i {
  font-size: 3rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.empty-state h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .post-title {
    font-size: 1.75rem;
  }

  .post-article {
    padding: 1.5rem;
  }

  .post-author {
    flex-direction: column;
    text-align: center;
  }

  .post-meta {
    gap: 1rem;
  }

  .toc {
    position: static;
  }

  .related-posts {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .related-posts li {
    flex: 1;
    min-width: 150px;
  }
}

/* AEO/GEO article blocks: all themes share readable answer, source and HowTo treatment. */
.post-answer,.post-howto,.post-sources{margin:1.5rem 0;padding:1.25rem 1.35rem;border:1px solid rgba(37,99,235,.18);border-radius:14px;background:linear-gradient(135deg,rgba(239,246,255,.9),rgba(255,255,255,.96));}.post-answer{border-left:4px solid #2563eb;}.post-answer h2,.post-howto h2,.post-sources h2{font-size:1.08rem;margin:0 0 .55rem;}.post-answer p,.post-sources p{margin:0;line-height:1.7;}.post-howto ol,.post-sources ul{margin:.65rem 0 0;padding-left:1.25rem;}.post-howto li,.post-sources li{margin:.35rem 0;}.post-sources{font-size:.94rem;border-color:rgba(20,58,104,.16);}


/* --- Görünür SSS akordeonu (FAQPage/speakable görünür karşılığı) --- */
.fb-faq{max-width:900px;margin:2.5rem auto;padding:0 1rem}
.fb-faq__title{font-size:1.4rem;margin:0 0 1rem}
.fb-faq__list{display:flex;flex-direction:column;gap:.6rem}
.fb-faq__item{border:1px solid rgba(128,128,128,.28);border-radius:10px;padding:.15rem .95rem;background:rgba(128,128,128,.04)}
.fb-faq__q{cursor:pointer;font-weight:600;padding:.85rem 0;list-style:none;position:relative}
.fb-faq__q::-webkit-details-marker{display:none}
.fb-faq__q::after{content:"+";position:absolute;right:.1rem;top:.75rem;font-weight:400;opacity:.6}
.fb-faq__item[open] .fb-faq__q::after{content:"\2013"}
.fb-faq__a{padding:0 0 .95rem;line-height:1.6;opacity:.9}
.fb-listing-intro{max-width:900px;margin:1.2rem auto;line-height:1.7;opacity:.92}
