/* =========================================================================
   FirmaBul — Konsept 05: "Modern Premium"
   Premium-minimal-kurumsal firma rehberi. Tek font (Figtree), yumuşak kart
   sistemi, lacivert + kurumsal mavi vurgu. Gimmick yok; hairline + bol boşluk.
   Yalnızca özel CSS (Bootstrap CSS bundle kullanılmaz).

   İçindekiler:
   01 Design Tokens
   02 Reset & Base
   03 Typography & Helpers
   04 Layout & Grid
   05 Buttons
   06 Utility Top Bar
   07 Header & Navigation
   08 Mobile Nav Drawer
   09 Hero & Search
   10 Suggestion Panel & Chips
   11 Trust Strip
   12 Category Cards
   13 Business Cards
   14 City Tiles
   15 Steps / Reviews / CTA
   16 FAQ Accordion
   17 Footer
   18 Toast / Modal / Scroll-top
   19 Accessibility & Responsive
   ========================================================================= */

/* ============================ 01 Design Tokens =========================== */
:root {
  /* Ink / text */
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;
  --muted-2: #94A3B8;

  /* Surfaces & lines */
  --surface: #FFFFFF;
  --panel: #F6F8FB;
  --panel-2: #EEF2F8;
  --line: #E6E9EF;
  --line-2: #D7DDE7;

  /* Brand */
  --navy: #12294D;
  --navy-2: #1B3A66;
  --blue: #2456E6;
  --blue-strong: #1B44C4;
  --blue-tint: #EEF3FE;

  /* Semantic */
  --star: #F59E0B;
  --ok: #15803D;
  --ok-tint: #ECFDF3;
  --ok-line: #C6EBD3;
  --warn: #B42318;
  --warn-tint: #FEF3F2;
  --warn-line: #FBD5D0;

  /* Radius */
  --radius: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 999px;

  /* Shadow (yumuşak, kurumsal) */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, .12);

  /* Typography */
  --font: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad-inline: clamp(16px, 5vw, 40px);
  --section-y: clamp(56px, 6vw, 100px);
  --header-h: 68px;
  --topbar-h: 38px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .18s;
}

/* ============================ 02 Reset & Base =========================== */
*,
*::before,
*::after { box-sizing: border-box; }

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;
}

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

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

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

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

:where(input, select, textarea) { font-family: inherit; font-size: 1rem; }

/* Kırık görsel yedeği */
img.is-broken { background: var(--panel-2); object-fit: cover; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* hidden attribute her zaman kazanır (kapalı modal/temizle vb. tıklamayı engellemesin) */
[hidden] { display: none !important; }

/* ============================ 03 Typography & Helpers =================== */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.15rem);
  line-height: 1.08;
}
h2 {
  font-size: clamp(1.5rem, 1.15rem + 1.3vw, 2.15rem);
  letter-spacing: -0.018em;
}
h3 { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); font-weight: 600; }
h4 { font-weight: 600; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}

.section-head { max-width: 660px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { color: var(--muted); margin: 12px 0 0; font-size: 1.02rem; }

/* ============================ 04 Layout & Grid ========================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 4.5vw, 64px); }
.section--panel { background: var(--panel); }

main { display: block; }

/* Kart ızgarası — yumuşak, dengeli */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.section-foot { margin-top: 36px; display: flex; justify-content: center; }

/* ============================ 05 Buttons =============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  background: transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-2); color: #fff; }

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

.btn--secondary { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn--secondary:hover { background: var(--panel); border-color: var(--muted); }

.btn--ghost { color: var(--ink-2); }
.btn--ghost:hover { color: var(--blue); background: var(--panel); }

.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 9px 16px; font-size: .9rem; }
.btn--lg { min-height: 52px; padding: 14px 26px; font-size: 1rem; }
.btn i { font-size: 1.05em; }

/* Kompakt ikon-buton (mobil başlık aksiyonu) */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-size: 1.15rem;
}
.icon-btn:hover { background: var(--navy-2); }

/* ============================ 06 Utility Top Bar ======================= */
.topbar {
  background: var(--navy);
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--topbar-h);
}
.topbar__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #CBD5E1;
}
.topbar__trust i { color: #7DA2FF; font-size: .95rem; }
.topbar__links { display: flex; align-items: center; gap: 22px; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #CBD5E1;
  border: 0;
  background: transparent;
  padding: 0;
  transition: color var(--dur) var(--ease);
}
.topbar__link i { font-size: .9rem; opacity: .85; }
.topbar__link:hover { color: #fff; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .16); }

/* ============================ 07 Header & Navigation =================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line-2); }

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

/* Logo — sade lacivert kare + tek ikon + wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: var(--navy);
  color: #fff;
  font-size: 1.1rem;
}
.brand__mark i { line-height: 1; }
.brand__name b { color: var(--blue); font-weight: 700; }

.primary-nav { margin-inline-start: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: var(--radius-xs);
  color: var(--ink-2);
  font-size: .93rem;
  font-weight: 500;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.primary-nav a:hover { background: var(--panel); color: var(--ink); }

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1.3rem;
}
.nav-toggle:hover { background: var(--panel); }
.nav-toggle .bi-x-lg { display: none; }
.nav-toggle[aria-expanded="true"] .bi-list { display: none; }
.nav-toggle[aria-expanded="true"] .bi-x-lg { display: inline; }

/* Masaüstü / mobil görünürlük yardımcıları */
.only-mobile { display: none; }

/* ============================ 08 Mobile Nav Drawer ===================== */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 23, 42, .42);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(88vw, 360px);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .26s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.mobile-nav__close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1.2rem;
}
.mobile-nav__close:hover { background: var(--panel-2); }
.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__links a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--radius-xs);
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__links a:hover { background: var(--panel); }
.mobile-nav__cta { margin-top: 18px; display: grid; gap: 10px; }

/* ============================ 09 Hero & Search ========================= */
.hero {
  background: linear-gradient(180deg, var(--panel) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 84px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero h1 { margin-bottom: 18px; }
.hero__lead {
  color: var(--muted);
  font-size: clamp(1.05rem, .98rem + .4vw, 1.2rem);
  margin-bottom: 28px;
  max-width: 560px;
}

/* Arama çubuğu */
.search {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.search__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 4px;
  align-items: stretch;
}
.search__field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  min-width: 0;
  transition: background var(--dur) var(--ease);
}
.search__field + .search__field { border-left: 1px solid var(--line); }
.search__field:hover { background: var(--panel); }
.search__field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--muted);
  margin-bottom: 2px;
}
.search__field input,
.search__field select {
  border: 0;
  background: transparent;
  padding: 3px 0;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  outline: none;
  font-weight: 600;
  font-size: .98rem;
}
.search__field input::placeholder { color: var(--muted-2); font-weight: 400; }
.search__field select { appearance: none; cursor: pointer; padding-right: 20px; text-overflow: ellipsis; }
.search__field--select::after {
  content: "\F229"; /* bi-chevron-down */
  font-family: "bootstrap-icons";
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: .8rem;
  color: var(--muted);
  pointer-events: none;
}
.search__submit {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 26px;
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  transition: background var(--dur) var(--ease);
}
.search__submit:hover { background: var(--blue-strong); }
.search__submit i { font-size: 1.1rem; }

.search__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 14px 8px 4px;
}
.search__meta-label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.search__clear {
  margin-inline-start: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: var(--radius-xs);
}
.search__clear:hover { color: var(--warn); background: var(--warn-tint); }

/* Hero istatistik satırı (sayaç) */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 32px;
}
.stat { min-width: 0; }
.stat__num {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__label { font-size: .88rem; color: var(--muted); margin-top: 2px; }

/* Hero görsel kartı */
.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--panel-2);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__badge i { color: var(--blue); font-size: 1.05rem; }

/* ============================ 10 Suggestion Panel & Chips ============== */
.suggest {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
}
.suggest.is-open { display: block; }
.suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  border-radius: var(--radius-xs);
  color: var(--ink-2);
  font-size: .92rem;
}
.suggest__item i { color: var(--muted); font-size: .95rem; }
.suggest__item mark { background: var(--blue-tint); color: var(--blue-strong); padding: 0 2px; border-radius: 4px; }
.suggest__item:hover,
.suggest__item.is-active { background: var(--panel); color: var(--ink); }
.suggest__empty { padding: 13px; color: var(--muted); font-size: .9rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  min-height: 38px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  color: var(--ink-2);
  font-size: .86rem;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip:hover { border-color: var(--muted); background: var(--panel); color: var(--ink); }
.chip i { color: var(--muted); font-size: .82rem; }
.chip[aria-pressed="true"],
.chip.is-active { border-color: var(--blue); color: var(--blue-strong); background: var(--blue-tint); }
.chip__remove { border: 0; background: transparent; color: var(--muted); padding: 0; line-height: 1; }
.chip__remove:hover { color: var(--warn); }

/* ============================ 11 Trust Strip =========================== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-strip__item i { color: var(--blue); font-size: 1.15rem; }

/* ============================ 12 Category Cards ======================== */
.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  min-width: 0;
}
.cat-card:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--ink);
}
.cat-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 1.2rem;
}
.cat-card__body { min-width: 0; display: flex; flex-direction: column; }
.cat-card__title { font-weight: 600; font-size: .98rem; line-height: 1.25; }
.cat-card__count { font-size: .82rem; color: var(--muted); margin-top: 2px; }

/* ============================ 13 Business Cards ======================== */
.biz-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.biz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  min-width: 0;
}
.biz-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.biz-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--panel-2);
  overflow: hidden;
}
.biz-card__media img { width: 100%; height: 100%; object-fit: cover; }
.biz-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: .74rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.biz-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.biz-card__fav:hover { color: var(--warn); border-color: var(--warn-line); }
.biz-card__fav[aria-pressed="true"] { color: var(--warn); border-color: var(--warn); }
.biz-card__fav[aria-pressed="true"] .bi-heart { display: none; }
.biz-card__fav .bi-heart-fill { display: none; }
.biz-card__fav[aria-pressed="true"] .bi-heart-fill { display: inline; }

.biz-card__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.biz-card__cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
}
.biz-card__name {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.biz-card__loc { display: flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--muted); }
.biz-card__loc i { font-size: .95rem; }

.rating { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--ink-2); }
.rating__star { color: var(--star); }
.rating__val { font-weight: 700; color: var(--ink); }
.rating__count { color: var(--muted); }

.biz-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--open { color: var(--ok); background: var(--ok-tint); border-color: var(--ok-line); }
.status--closed { color: var(--warn); background: var(--warn-tint); border-color: var(--warn-line); }
.tag {
  font-size: .76rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.biz-card__actions {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.biz-card__actions .act {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.biz-card__actions .act:hover { background: var(--panel); color: var(--blue); border-color: var(--muted); }
.biz-card__actions .act--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.biz-card__actions .act--primary:hover { background: var(--navy-2); color: #fff; border-color: var(--navy-2); }
.biz-card__actions .act i { font-size: 1rem; }

/* ============================ 14 City Tiles ============================ */
.city-tile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  min-width: 0;
}
.city-tile:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--ink); }
.city-tile__name { font-weight: 600; font-size: 1rem; }
.city-tile__count { font-size: .85rem; font-weight: 600; color: var(--blue); white-space: nowrap; }

/* Anasayfa blog kartları (Son yazılar) */
.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.post-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card__cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
}
.post-card__title { font-size: 1.08rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }
.post-card__excerpt {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__date { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); margin-top: auto; }
.post-card__date i { color: var(--blue); font-size: .9rem; }

/* ============================ 15 Steps / Reviews / CTA ================= */
.step {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
}
.step__icon { margin: 16px 0 12px; color: var(--navy); font-size: 1.5rem; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

.quote {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.quote__rating { color: var(--star); font-size: .95rem; letter-spacing: 2px; }
.quote blockquote { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.55; }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
}
.quote__meta strong { display: block; color: var(--ink); font-size: .9rem; font-weight: 600; }
.quote__meta span { font-size: .8rem; color: var(--muted); }

/* CTA — rafine lacivert panel */
.cta {
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.cta .eyebrow { color: #7DA2FF; }
.cta h2 { color: #fff; }
.cta p { color: #CBD5E1; margin: 12px 0 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.cta .btn--secondary { background: transparent; border-color: rgba(255, 255, 255, .28); color: #fff; }
.cta .btn--secondary:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); }

/* ============================ 16 FAQ Accordion ========================= */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  max-width: 820px;
}
.faq__item + .faq__item { border-top: 1px solid var(--line); }
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease);
}
.faq__trigger:hover { background: var(--panel); }
.faq__icon { flex: none; color: var(--muted); font-size: 1rem; transition: transform var(--dur) var(--ease); }
.faq__trigger[aria-expanded="true"] .faq__icon { transform: rotate(180deg); color: var(--blue); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s var(--ease);
}
.faq__panel.is-open { grid-template-rows: 1fr; }
.faq__panel-inner { overflow: hidden; }
.faq__panel p { padding: 0 24px 22px; color: var(--muted); margin: 0; }

/* ============================ 17 Footer ================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--panel); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-block: clamp(48px, 5vw, 72px);
}
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 320px; margin: 16px 0 18px; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--ink-2); font-size: .92rem; }
.footer-col a:hover { color: var(--blue); }

.newsletter p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.newsletter__form { display: flex; gap: 8px; }
.newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
.newsletter__msg { font-size: .82rem; margin-top: 10px; min-height: 1em; }
.newsletter__msg.is-ok { color: var(--ok); }
.newsletter__msg.is-err { color: var(--warn); }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  background: var(--surface);
}
.footer-social a:hover { color: var(--blue); border-color: var(--line-2); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { color: var(--muted); font-size: .85rem; }
.footer-bottom a:hover { color: var(--ink); }

/* ============================ 18 Toast / Modal / Scroll-top ============ */
.toast-region {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  width: min(92vw, 380px);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  pointer-events: auto;
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.1rem; flex: none; margin-top: 1px; }
.toast--ok i { color: #4ADE80; }
.toast--info i { color: #7DA2FF; }
.toast--warn i { color: #FBBF24; }
.toast__msg { flex: 1; }
.toast__close { margin-inline-start: auto; background: transparent; border: 0; color: #94A3B8; font-size: 1rem; padding: 0; }
.toast__close:hover { color: #fff; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__scrim { position: absolute; inset: 0; background: rgba(15, 23, 42, .52); }
.modal__dialog {
  position: relative;
  width: min(100%, 540px);
  max-height: 90dvh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 4vw, 34px);
}
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.modal__head p { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.modal__close {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1.15rem;
}
.modal__close:hover { background: var(--panel-2); }

.form-field { margin-top: 16px; }
.form-field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field__err { display: none; color: var(--warn); font-size: .8rem; margin-top: 5px; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--warn); }
.form-field.has-error .form-field__err { display: block; }
.modal__foot { margin-top: 26px; display: flex; gap: 10px; justify-content: flex-end; }

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease), background var(--dur) var(--ease);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-2); }

/* ============================ 20 Listing (firmalar.html) =============== */
/* Sayfa başlığı + breadcrumb */
.page-head {
  background: linear-gradient(180deg, var(--panel) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(24px, 3.6vw, 44px);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
}
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb__sep { color: var(--muted-2); font-size: .7rem; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

.page-head__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 16px;
}
.page-head__count { color: var(--muted); font-size: 1rem; }
.page-head__count strong { color: var(--ink); font-weight: 700; }
.page-head__lead { color: var(--muted); margin: 12px 0 0; max-width: 640px; font-size: 1.02rem; }

/* Filtre alanı */
.filters {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  margin-bottom: 28px;
}
.filters__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.filters__heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters__heading i { color: var(--blue); font-size: 1rem; }
.filters__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
}
.filters__toggle:hover { background: var(--panel); border-color: var(--muted); }
.filters__toggle i { color: var(--blue); }

.filters__body { display: grid; gap: 18px; margin-top: 16px; }
.filters__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.filters__field { position: relative; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filters__field label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters__field select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 34px 10px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  appearance: none;
  cursor: pointer;
  text-overflow: ellipsis;
}
.filters__field select:hover { border-color: var(--muted); }
.filters__field.is-select::after {
  content: "\F229"; /* bi-chevron-down */
  font-family: "bootstrap-icons";
  position: absolute;
  right: 13px;
  bottom: 13px;
  font-size: .8rem;
  color: var(--muted);
  pointer-events: none;
}

.filters__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.filters__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filters__actions { display: flex; gap: 10px; margin-inline-start: auto; }

/* Sayfalama */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: clamp(32px, 4vw, 48px);
}
.pagination__item {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink-2);
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.pagination__item:hover { background: var(--panel); border-color: var(--muted); color: var(--blue); }
.pagination__item[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.pagination__item[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}
.pagination__ellipsis {
  min-width: 34px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

/* Listeleme kartında aksiyonları iki satıra yay (Profili İncele tam genişlik) */
.biz-card__actions--stack { flex-wrap: wrap; }
.biz-card__actions--stack .act--primary { flex: 1 1 100%; }

/* Sponsorlu rozeti */
.biz-card__badge--sponsor { color: var(--navy); }
.biz-card__badge--sponsor i { color: var(--star); }

/* Aktif nav durumu */
.primary-nav a[aria-current="page"] {
  color: var(--blue-strong);
  background: var(--blue-tint);
  font-weight: 600;
}
.mobile-nav__links a[aria-current="page"] { color: var(--blue-strong); background: var(--blue-tint); }

/* ============================ 19 Accessibility & Responsive ============ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.search__field input:focus-visible,
.search__field select:focus-visible { outline-offset: 4px; }

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

body.no-scroll { overflow: hidden; }

/* -------- Laptop (≤1080px) -------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Tablet (≤900px): mobil başlık düzeni + drawer -------- */
@media (max-width: 900px) {
  .primary-nav,
  .header-actions .btn { display: none; }
  .header-actions { margin-inline-start: auto; }
  .header-actions .only-mobile { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .cta { grid-template-columns: 1fr; gap: 24px; }
  .cta__actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* -------- Utility topbar sadece geniş ekranlarda -------- */
@media (max-width: 768px) {
  .topbar { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { order: -1; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .search__row { grid-template-columns: 1fr 1fr; }
  .search__field--kw { grid-column: 1 / -1; }
  .search__field--kw + .search__field { border-left: 0; }
  .search__submit { grid-column: 1 / -1; padding-block: 14px; }

  /* Listeleme: filtreler açılır panele dönüşür */
  .filters__toggle { display: inline-flex; }
  .filters.is-collapsed .filters__body { display: none; }
  .filters__row { grid-template-columns: 1fr 1fr; }
  .filters__actions { margin-inline-start: 0; width: 100%; }
  .filters__actions .btn { flex: 1; }
}

/* -------- Mobil (≤600px): ikili bloklar -------- */
@media (max-width: 600px) {
  body { font-size: 15.5px; }
  :root { --header-h: 62px; }

  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .biz-grid { grid-template-columns: 1fr; }

  .search__row { grid-template-columns: 1fr; }
  .search__field { border-left: 0 !important; }
  .search__field + .search__field { border-top: 1px solid var(--line); }
  .search__field--kw,
  .search__submit { grid-column: auto; }

  .hero__stats { gap: 18px 26px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .newsletter { grid-column: 1 / -1; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cat-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
  .step, .quote { padding: 22px 20px; }

  .toast-region { left: 16px; right: 16px; width: auto; }
  .scroll-top { bottom: 14px; right: 14px; }

  /* Listeleme mobil: tek sütun kartlar + tek sütun filtre alanları */
  .filters { padding: 14px; }
  .filters__row { grid-template-columns: 1fr; }
  .page-head__title { gap: 4px 12px; }
}

/* -------- Çok küçük (≤380px) -------- */
@media (max-width: 380px) {
  .header-inner { gap: 10px; }
  .brand { font-size: 1.05rem; }
  .city-tile { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px; }
  .biz-card__actions .act span { display: none; }
}

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

/* ============================ 22 Firma Detay (firma-detay.html) ========= */
.detail-hero { padding-bottom: 0; }

/* İşletme başlığı bloğu */
.biz-head { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.biz-head__cat {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.biz-head h1 { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); }
.biz-head__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }

.detail-rating { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; }
.detail-rating__stars { color: var(--star); font-size: 1rem; line-height: 1; display: inline-flex; gap: 1px; }
.detail-rating__val { font-weight: 700; color: var(--ink); }
.detail-rating__count { color: var(--muted); }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-tint);
  color: var(--blue-strong);
  border: 1px solid #D6E2FD;
  font-size: .82rem;
  font-weight: 600;
}
.verified-badge i { font-size: .95rem; }

.biz-head__addr { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .95rem; margin: 0; }
.biz-head__addr i { color: var(--blue); font-size: 1.05rem; flex: none; }

/* Galeri */
.gallery { display: grid; gap: 12px; margin: clamp(20px, 3vw, 32px) 0 clamp(28px, 4vw, 44px); }
.gallery__main {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
  background: var(--panel-2);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery__thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel-2);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumb:hover { border-color: var(--line-2); transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue-tint); }

/* İçerik + aksiyon ızgarası */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.detail-main { display: flex; flex-direction: column; gap: clamp(18px, 2.4vw, 28px); min-width: 0; }

.detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 30px);
}
.detail-card h2 { font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem); margin-bottom: 14px; }
.detail-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.detail-card__head h2 { margin-bottom: 0; }

/* Hizmetler */
.svc-list { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: var(--panel);
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 500;
}
.svc-item i { color: var(--blue); font-size: 1rem; }

/* Çalışma saatleri */
.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ok);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.hours-note i { font-size: 1.05rem; }
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  font-size: .95rem;
}
.hours-row + .hours-row { border-top: 1px solid var(--line); }
.hours-row__day { color: var(--ink-2); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.hours-row__time { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-row__today {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.hours-row--today {
  background: var(--blue-tint);
  border-top-color: transparent !important;
}
.hours-row--today .hours-row__day,
.hours-row--today .hours-row__time { color: var(--blue-strong); }

/* Yorumlar */
.reviews { display: flex; flex-direction: column; gap: 18px; }
.review { display: flex; gap: 14px; }
.review + .review { border-top: 1px solid var(--line); padding-top: 18px; }
.review__avatar {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.review__body { min-width: 0; }
.review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin-bottom: 6px; }
.review__name { color: var(--ink); font-size: .95rem; font-weight: 600; }
.review__stars { color: var(--star); font-size: .82rem; letter-spacing: 1px; line-height: 1; }
.review__date { color: var(--muted); font-size: .82rem; }
.review__body p { color: var(--ink-2); font-size: .95rem; margin: 0; }

/* İletişim / aksiyon kartı */
.detail-aside { min-width: 0; }
.contact-card {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px;
}
.contact-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.contact-card__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.contact-card__price { font-size: .9rem; font-weight: 700; color: var(--blue); }

.contact-card__list { display: flex; flex-direction: column; margin-top: 16px; }
.contact-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  min-height: 44px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
}
.contact-card__row--static { cursor: default; }
.contact-card__ic {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 1.05rem;
}
a.contact-card__row:hover .contact-card__ic { background: var(--blue-tint); border-color: #D6E2FD; }
.contact-card__text { display: flex; flex-direction: column; min-width: 0; }
.contact-card__label { font-size: .74rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); }
.contact-card__value { font-size: .92rem; font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
a.contact-card__row:hover .contact-card__value { color: var(--blue-strong); }

.cc-actions { display: flex; gap: 10px; margin-top: 16px; }
.cc-btn {
  flex: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cc-btn:hover { background: var(--panel); border-color: var(--muted); color: var(--blue); }
.cc-btn .bi-heart-fill { display: none; }
.cc-btn[aria-pressed="true"] .bi-heart { display: none; }
.cc-btn[aria-pressed="true"] .bi-heart-fill { display: inline; }
.cc-btn[aria-pressed="true"] { color: var(--warn); border-color: var(--warn-line); background: var(--warn-tint); }
.cc-btn[aria-pressed="true"]:hover { color: var(--warn); }

.contact-card__note {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.contact-card__note i { color: var(--ok); font-size: 1rem; flex: none; margin-top: 1px; }

/* -------- Detay: aside içeriğe iner -------- */
@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

/* -------- Detay: galeri küçük görselleri mobilde -------- */
@media (max-width: 600px) {
  .gallery__main { aspect-ratio: 4 / 3; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery__thumbs .js-gallery-thumb:nth-child(5) { display: none; }
  .contact-card__value { font-size: .9rem; }
}

@media (max-width: 380px) {
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cc-actions { flex-direction: column; }
}

/* ============================ 23 Sabit Sayfalar (hakkımızda / iletişim / yasal) ===
   NOT: .form-control-custom, .field-error, .is-invalid ve .is-loading bu temada yalnızca
   sabit sayfalarda kullanılıyor ve daha önce tanımlı değildi; burada tanımlanır. */

/* -------- Form kontrolleri (iletişim formu; app.js hook'larıyla uyumlu) -------- */
.form-control-custom {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  color: var(--ink);
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-control-custom::placeholder { color: var(--muted-2); }
.form-control-custom:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.form-control-custom.is-invalid { border-color: var(--warn); background: var(--warn-tint); }
textarea.form-control-custom { min-height: 140px; resize: vertical; }

.field-error { margin: 6px 0 0; color: var(--warn); font-size: .82rem; font-weight: 500; }

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

/* -------- Sayfa başlık bandı -------- */
.page-hero {
  background: linear-gradient(180deg, var(--panel) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(24px, 3.6vw, 44px);
}
.page-hero-inner { max-width: 760px; margin-top: 16px; }
.page-hero-inner h1 { margin: 8px 0 0; }
.page-hero__lead { color: var(--muted); margin: 14px 0 0; font-size: 1.05rem; max-width: 68ch; }

/* -------- Sabit sayfa bölümü -------- */
.page-section { padding-block: clamp(40px, 5vw, 72px); }
.page-section + .page-section { padding-top: 0; }
.page-section__head { max-width: 660px; margin-bottom: clamp(24px, 3vw, 40px); }
.page-section__head p { color: var(--muted); margin: 10px 0 0; }

/* -------- Uzun metin okunurluğu -------- */
.prose { max-width: 72ch; color: var(--ink-2); }
.prose h2 { margin: 2.4rem 0 .2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.6rem 0 .2rem; color: var(--ink); }
.prose p { margin: 1rem 0 0; }
.prose ul, .prose ol { margin: .6rem 0 0; padding-left: 1.35rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .45rem; padding-left: .2rem; }
.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); }
.prose__updated {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 6px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
}

/* -------- Değer kartları (hakkımızda) -------- */
.value-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.value-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.value-card h3 { margin: 0 0 6px; }
.value-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* -------- İstatistik şeridi -------- */
.page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.page-stats .stat {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

/* -------- İletişim düzeni -------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  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);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 32px);
}
.contact-info { background: var(--panel); }
.contact-form-card h2,
.contact-info h2 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); }
.contact-form-card > p,
.contact-info > p { color: var(--muted); margin: 8px 0 20px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  margin-bottom: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-info-list { margin: 0; }
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-info-item:first-child { border-top: 0; padding-top: 0; }
.contact-info-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 1.15rem;
}
.contact-info-body { min-width: 0; }
.contact-info-body dt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-body dd {
  margin: 3px 0 0;
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact-info-body dd a { color: var(--ink); }
.contact-info-body dd a:hover { color: var(--blue); }
.contact-info-body dd.contact-info-note { font-weight: 400; font-size: .9rem; color: var(--muted); }

/* -------- Başarı durum mesajı -------- */
.form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--ok-tint);
  border: 1px solid var(--ok-line);
  color: var(--ok);
  font-size: .92rem;
  font-weight: 600;
}

/* -------- Çerez türü kartları (tablo yerine) -------- */
.cookie-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.cookie-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.cookie-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--blue-tint);
  color: var(--blue-strong);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.cookie-card h3 { margin: 0 0 8px; }
.cookie-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.cookie-card dl { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: .9rem; }
.cookie-card dt { font-weight: 600; color: var(--ink-2); }
.cookie-card dd { margin: 2px 0 8px; color: var(--muted); }
.cookie-card dd:last-child { margin-bottom: 0; }

/* -------- Etiketli yasal liste (tablo yerine) -------- */
.legal-list { display: grid; gap: 14px; margin: 8px 0 0; padding: 0; }
.legal-list > div {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.legal-list dt { font-weight: 700; color: var(--ink); }
.legal-list dd { margin: 4px 0 0; color: var(--muted); font-size: .95rem; }

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .value-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .value-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .value-card { padding: 18px; }
  .page-stats { gap: 14px; }
}
@media (max-width: 380px) {
  .value-cards { grid-template-columns: minmax(0, 1fr); }
  .page-stats { grid-template-columns: minmax(0, 1fr); }
}
/* 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); }
.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; }

.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-card .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-card .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-form-row { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.comment-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--surface);
  color: var(--ink);
}
.comment-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 18%, transparent);
}

.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;
}

.blog-search-form .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}

/* token-alias-fix: kopyalanan blog/yorum/statik bloklarda kullanilan ama :root'ta tanimsiz kalan token'lar bu temanin markasina hizalandi */
:root{--green:#15803D;--red:#B91C1C;--ring:0 0 0 3px color-mix(in srgb,var(--blue) 20%,transparent);--radius-lg:var(--radius);--surface-2:var(--panel)}
