/* =============================================================
   FirmaBul — Konsept 3: EDİTORYAL SPLIT
   Asimetrik, bol boşluklu, premium-minimal-kurumsal.
   İçindekiler:
   01 Design Tokens
   02 Reset & Base
   03 Typography helpers
   04 Layout / Container
   05 Buttons
   06 Header & Nav
   07 Mobile Nav
   08 Hero (asimetrik split) + Search
   09 Suggestions & Chips
   10 Feature card / Business cards
   11 Categories
   12 Cities
   13 Stats strip
   14 Reviews
   15 How it works / Owner CTA / FAQ / Footer / Modal / Toast / Utilities
   16 Accessibility & Responsive
   ============================================================= */

/* ============ 01 DESIGN TOKENS ============ */
:root {
  /* Renk */
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;
  --surface: #FFFFFF;
  --surface-2: #F5F7FB;
  --line: #E6E9EF;
  --line-strong: #D5DAE3;
  --navy: #0F1E3D;
  --navy-2: #16294f;
  --blue: #2456E6;
  --blue-strong: #1B44BE;
  --blue-tint: #EAF0FF;
  --success: #0F7B4E;
  --success-bg: #E7F4EE;
  --danger: #B42318;
  --danger-bg: #FBEBE9;

  /* Tipografi */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius (kurumsal, orta-keskin) */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Gölge (çok hafif) */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .06);

  /* Ölçü */
  --container: 1200px;
  --pad-inline: clamp(16px, 5vw, 40px);
  --section-y: clamp(56px, 6vw, 104px);
}

/* ============ 02 RESET & BASE ============ */
* { 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); }

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

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

/* Kırık görsel: nötr zemin */
.is-broken {
  background: var(--surface-2);
  object-fit: contain;
  padding: 0;
}
.is-broken::after { content: ""; }

/* ============ 03 TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.hero-title {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-title {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 600;
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 .6rem;
}
.eyebrow--light { color: rgba(255, 255, 255, .7); }

.section-desc {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0;
}

.link-inline { text-decoration: underline; text-underline-offset: 2px; }

.link-btn {
  background: none; border: none; padding: 0;
  color: var(--blue); font: inherit; font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.link-btn:hover { color: var(--blue-strong); }

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

.section { padding-block: var(--section-y); }

.section-head { margin-bottom: clamp(28px, 4vw, 48px); }

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
}
.section-head--split .section-desc { text-align: left; }

/* ============ 05 BUTTONS ============ */
.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}

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

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

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: #eef1f6; color: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  min-height: 40px;
  padding: 0 .75rem;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost--light { color: rgba(255,255,255,.85); }
.btn-ghost--light:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.btn-block { width: 100%; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 1.05rem;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-icon:hover { background: var(--surface-2); color: var(--blue); border-color: var(--muted); }

/* ============ 06a UTILITY ÜST BAR ============ */
/* Yapışkan DEĞİL: normal akışta kalır, kaydırınca kaybolur.
   Ana header (site-header) sticky davranışını korur. */
.utility-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 38px;
  font-size: .8rem;
}
.utility-trust {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.utility-trust .bi { color: var(--blue); font-size: .95rem; }

.utility-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.utility-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  transition: color .15s ease;
}
.utility-link:hover { color: var(--blue); }
.utility-link .bi { font-size: .9rem; }
.utility-link--btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
}
.utility-link--btn:hover { color: var(--blue); }

/* Mobilde (≤768px) üst barı gizle — mobil sade kalsın */
@media (max-width: 768px) {
  .utility-bar { display: none; }
}

/* ============ 06 HEADER & NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(150%) blur(0);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

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

.primary-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav-list a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover { color: var(--ink); border-bottom-color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: 1rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1.4rem;
}
/* Masaüstünde (lg+) hamburger gizli — mobil/tablette görünür */
@media (min-width: 992px) {
  .nav-toggle { display: none; }
}

/* ============ 07 MOBILE NAV ============ */
.mobile-nav {
  position: fixed;
  inset: 72px 0 0;
  z-index: 45;
  background: #fff;
  padding: 1.5rem var(--pad-inline) 2rem;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
/* Genel güvence: hidden attribute display kurallarını her zaman geçmeli */
[hidden] { display: none !important; }
.mobile-nav-eyebrow {
  margin: 0 0 .25rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.mobile-nav-list { margin: 0 0 1.5rem; }
.mobile-nav-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav-list a::after {
  content: "\F285"; /* bi-chevron-right */
  font-family: "bootstrap-icons"; font-size: .85rem; color: var(--muted);
}
.mobile-nav-list a:hover { color: var(--blue); }
.mobile-nav-list a:hover::after { color: var(--blue); }
.mobile-nav-actions { display: grid; gap: .6rem; }
.mobile-nav-actions .btn-block { width: 100%; }
/* Mobilde üst bardaki İşletme ekle CTA'sını gizle — başlık sade kalsın (menüde mevcut) */
@media (max-width: 991px) {
  .header-actions .btn-primary { display: none; }
}

/* ============ 08 HERO ============ */
.hero {
  padding-block: clamp(40px, 5vw, 88px);
  background:
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-main { min-width: 0; }
.hero-lead {
  font-size: clamp(1.02rem, .98rem + .4vw, 1.18rem);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 1rem 0 1.75rem;
}

/* SEARCH PANEL */
.search-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 2vw, 20px);
  box-shadow: var(--shadow-md);
}

.search-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: .75rem;
  align-items: end;
}

.search-field { min-width: 0; display: flex; flex-direction: column; gap: .35rem; }
.search-field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}

.search-input-wrap { position: relative; }
.search-input-wrap .bi-search {
  position: absolute;
  left: .8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.search-field input[type="text"] { padding-left: 2.3rem; }

.search-field input,
.search-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  appearance: none;
}
.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2rem;
}
.search-field input::placeholder { color: var(--muted); }
.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

.search-submit { display: flex; }
.btn-search { min-height: 46px; padding-inline: 1.4rem; }

.search-hint {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted);
  margin: .85rem 0 0;
}
.search-hint .link-btn { margin-left: auto; }

.search-meta { margin-top: .85rem; display: flex; flex-direction: column; gap: .6rem; }

/* ============ 09 SUGGESTIONS & CHIPS ============ */
.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .35rem;
  max-height: 300px;
  overflow-y: auto;
}
.search-suggestions[hidden] { display: none; }
.search-suggestions li {
  padding: .6rem .75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .95rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.search-suggestions li .bi { color: var(--muted); font-size: .9rem; }
.search-suggestions li:hover,
.search-suggestions li.is-active {
  background: var(--blue-tint);
  color: var(--ink);
}
.search-suggestions li mark {
  background: transparent;
  color: var(--blue);
  font-weight: 700;
}

.search-chips { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.search-chips[hidden] { display: none; }
.chips-label { font-size: .82rem; color: var(--muted); font-weight: 600; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 34px;
  padding: 0 .8rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.chip .chip-remove { color: var(--muted); font-size: .8rem; }

/* ============ 10 CARDS ============ */
.card-category {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.card-title {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-location {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.card-location .bi { color: var(--muted); }

.card-meta {
  display: flex;
  align-items: center;
  gap: .75rem 1rem;
  flex-wrap: wrap;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .92rem;
  color: var(--ink-2);
}
.rating .bi-star-fill { color: #E8A33D; }
.rating strong { color: var(--ink); font-weight: 700; }
.rating-count { color: var(--muted); }

.status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: var(--radius-sm);
}
.status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  flex: none;
}
.status--open { color: var(--success); background: var(--success-bg); }
.status--closed { color: var(--danger); background: var(--danger-bg); }

/* Öne çıkan kart (hero aside) */
.hero-aside { min-width: 0; }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card-media { position: relative; aspect-ratio: 3 / 2; background: var(--surface-2); }
.feature-card-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(15, 30, 61, .92);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}
.feature-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.feature-card-body .btn-secondary { margin-top: .4rem; }

/* Business cards (editörün seçtikleri) */
.editors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.biz-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.biz-media { position: relative; aspect-ratio: 3 / 2; background: var(--surface-2); }
.biz-media img { width: 100%; height: 100%; object-fit: cover; }

.fav-btn {
  position: absolute;
  top: .7rem; right: .7rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: color .15s ease, background-color .15s ease;
}
.fav-btn:hover { color: var(--danger); }
.fav-btn[aria-pressed="true"] { color: var(--danger); }
.fav-btn[aria-pressed="true"] .bi::before { content: "\f417"; } /* bi-heart-fill */

.biz-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.biz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.biz-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding-top: .35rem;
}
.biz-actions .btn-secondary { flex: 1; }

/* ============ 11 CATEGORIES ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.category-tag {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  min-height: 58px;
  padding: 0 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-align: left;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.category-tag .bi {
  color: var(--blue);
  font-size: 1.15rem;
  flex: none;
}
.category-tag:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
}

/* ============ 12 CITIES ============ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.city-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.15rem 1.25rem;
  min-height: 104px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.city-block:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.city-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.city-count { font-size: .88rem; color: var(--muted); }
.city-count .count-value { color: var(--ink-2); font-weight: 600; }
.city-arrow {
  position: absolute;
  right: 1.1rem; bottom: 1.1rem;
  color: var(--muted);
  font-size: 1rem;
  transition: transform .15s ease, color .15s ease;
}
.city-block:hover .city-arrow { color: var(--blue); transform: translateX(3px); }

.district-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

/* ============ 13 STATS STRIP ============ */
.stats-strip {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-value {
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { font-size: .9rem; color: var(--muted); }
.stats-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: clamp(24px, 3vw, 36px) 0 0;
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
}
.stats-note .bi { color: var(--success); font-size: 1.05rem; }

/* ============ 14 REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.review-quote { margin: 1.5rem 0 0; }
.review-quote blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.review-quote figcaption {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
}
.review-author { font-weight: 700; color: var(--ink); }
.review-loc { font-size: .88rem; color: var(--muted); }

.review-list { display: flex; flex-direction: column; gap: 1rem; }
.review-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.review-text { margin: 0 0 .6rem; color: var(--ink-2); font-size: .98rem; }
.review-by { margin: 0; font-size: .85rem; color: var(--muted); }
.review-by .review-author { font-size: .9rem; }

/* ============ 15 HOW / OWNER CTA / FAQ / FOOTER / MODAL / TOAST ============ */
/* How it works */
.how { background: var(--surface-2); border-block: 1px solid var(--line); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}
.how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.65rem;
}
.how-num {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.how-step-title { font-size: 1.15rem; margin-bottom: .5rem; }
.how-step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Owner CTA */
.owner-cta { padding-block: 0; }
.owner-cta-inner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  margin-block: var(--section-y);
}
.section-title--light { color: #fff; }
.owner-cta-desc { color: rgba(255, 255, 255, .78); max-width: 46ch; margin: 1rem 0 0; }
.owner-cta-action {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.faq-head .section-desc { margin-top: .75rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem .25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-icon {
  color: var(--muted);
  font-size: 1.3rem;
  flex: none;
  transition: transform .2s ease, color .2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer { padding: 0 .25rem 1.15rem; }
.faq-answer[hidden] { display: none; }
.faq-answer p { margin: 0; color: var(--muted); font-size: .96rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .72);
  padding-top: clamp(48px, 6vw, 80px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr) 1.6fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.brand--footer { color: #fff; margin-bottom: 1rem; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand-mark { background: var(--blue); }
.footer-about { font-size: .92rem; max-width: 34ch; margin: 0 0 1.1rem; }
.footer-social { display: flex; gap: .5rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}
.social-link:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }

.footer-title {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: rgba(255, 255, 255, .72); font-size: .92rem; }
.footer-col a:hover { color: #fff; }

.footer-newsletter-desc { font-size: .92rem; margin: 0 0 1rem; }
.newsletter-input {
  display: flex;
  gap: .5rem;
}
.newsletter-input input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 .85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: .92rem;
}
.newsletter-input input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter-input input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 86, 230, .3);
}
.newsletter-input .btn-primary {
  background: var(--blue);
  min-width: 46px;
  padding: 0 .9rem;
}
.newsletter-input .btn-primary:hover { background: var(--blue-strong); }
.newsletter-msg { font-size: .82rem; margin: .5rem 0 0; min-height: 1em; }
.newsletter-msg.is-error { color: #FCA5A5; }
.newsletter-msg.is-success { color: #86EFAC; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255, 255, 255, .72); }
.footer-legal a:hover { color: #fff; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.modal-title { font-size: 1.25rem; }
.modal-close {
  width: 40px; height: 40px;
  border: none; background: none;
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--surface-2); color: var(--ink); }
.modal-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.form-field input,
.form-field select {
  min-height: 46px;
  padding: 0 .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.form-field.is-invalid input,
.form-field.is-invalid select { border-color: var(--danger); }
.form-error { font-size: .8rem; color: var(--danger); margin: 0; }
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .5rem;
}
.btn-primary.is-loading { opacity: .75; pointer-events: none; }

/* Toast */
.toast-container {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: min(360px, calc(100vw - 2rem));
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: var(--ink);
  color: #fff;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: .92rem;
  animation: toast-in .2s ease;
}
.toast .bi { font-size: 1.1rem; flex: none; margin-top: .1rem; }
.toast--success .bi { color: #86EFAC; }
.toast--info .bi { color: #93C5FD; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scroll-top[hidden] { display: none; }
.scroll-top:hover { color: var(--blue); border-color: var(--blue); }

/* ============ 16 ACCESSIBILITY & RESPONSIVE ============ */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: .5rem; color: #fff; }

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

/* Görünür focus */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}
.category-tag:focus-visible,
.city-block:focus-visible,
.chip:focus-visible { outline-offset: 3px; }

body.no-scroll { overflow: hidden; }

/* --- LAPTOP altı: 1024px --- */
@media (max-width: 1023px) {
  .header-inner { min-height: 64px; }
  .mobile-nav { inset-block-start: 64px; }

  .hero-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  .hero-aside { max-width: 460px; }

  .search-row { grid-template-columns: 1fr 1fr; }
  .search-field--keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }
  .btn-search { width: 100%; }

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

  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
}

/* --- TABLET: 768–1023 nav gizle --- */
@media (max-width: 991px) {
  .primary-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  /* primary-nav (margin-left:auto taşıyıcı) gizlenince aksiyonlar sola yığılıyordu:
     logo solda, aksiyon kümesi + hamburger sağda dursun */
  .header-actions { margin-left: auto; }
}

/* --- TABLET orta --- */
@media (max-width: 767px) {
  .editors-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: .85rem; }
  .stats-inline { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* --- MOBİL: ≤600 — AŞIRI SADE, İKİLİ BLOKLAR --- */
@media (max-width: 600px) {
  body { font-size: 15.5px; }

  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: 0; width: 44px; }

  .hero { padding-block: 32px 40px; }
  .hero-aside { max-width: none; }

  .search-panel { padding: 14px; }
  .search-row { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .search-field--keyword { grid-column: 1 / -1; }
  .search-submit { grid-column: 1 / -1; }
  .search-hint .link-btn { margin-left: 0; }

  /* Kategori & şehir 2'li bloklar */
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .category-tag { min-height: 52px; padding: 0 .8rem; font-size: .88rem; gap: .5rem; }
  .category-tag .bi { font-size: 1.05rem; }

  .city-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .city-block { min-height: 92px; padding: 1rem; }
  .city-name { font-size: 1.05rem; }

  .stats-inline { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }

  .owner-cta-inner { padding: 28px 22px; }
  .owner-cta-action { width: 100%; }
  .owner-cta-action .btn-light,
  .owner-cta-action .btn-ghost { width: 100%; }

  .biz-actions { flex-wrap: wrap; }
  .biz-actions .btn-secondary { flex: 1 1 100%; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .toast-container { left: 1rem; right: 1rem; max-width: none; }
}

/* --- Çok dar: 360 taşma güvenliği --- */
@media (max-width: 380px) {
  .brand-name { font-size: 1.1rem; }
  .card-title, .hero-title, .section-title { overflow-wrap: anywhere; }
}

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

/* =============================================================
   17 FİRMA LİSTELEME SAYFASI (firmalar.html)
   Breadcrumb · Sayfa başlığı · Filtre paneli · Sonuçlar · Sayfalama
   Not: mevcut token, buton, biz-card, chip, status sınıfları yeniden kullanılır.
   ============================================================= */

/* --- Breadcrumb --- */
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.breadcrumb-list li + li::before {
  content: "\F285"; /* bi-chevron-right */
  font-family: "bootstrap-icons";
  font-size: .7rem;
  color: var(--line-strong);
}
.breadcrumb-list a { color: var(--muted); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--blue); }
.breadcrumb-list li[aria-current="page"] { color: var(--ink-2); font-weight: 600; }

/* --- Sayfa başlığı --- */
.listing-hero {
  padding-block: clamp(24px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}
.listing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
.listing-head-text { min-width: 0; }
.listing-title {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: .4rem;
}
.listing-count {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 .75rem;
}
.listing-count strong { color: var(--ink); font-weight: 700; }
.listing-hero .section-desc { max-width: 60ch; }

.listing-filter-toggle { display: none; }

/* --- Listeleme yerleşimi (yan panel + sonuçlar) --- */
.listing-section { padding-block: clamp(28px, 4vw, 52px); }
.listing-layout {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

/* --- Filtre paneli --- */
.listing-filters {
  position: sticky;
  top: 88px;
  align-self: start;
}
.filters-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.filters-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.filters-title { font-size: 1.1rem; font-weight: 700; }
.filter-field { display: flex; flex-direction: column; gap: .35rem; }
.filter-field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 2rem 0 .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
}
.filter-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

.filter-chipset { border: 0; padding: 0; margin: 0; }
.filter-chipset legend {
  padding: 0;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  margin-bottom: .55rem;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip--toggle { cursor: pointer; }
.chip--toggle[aria-pressed="true"] {
  border-color: var(--blue);
  background: var(--navy);
  color: #fff;
}
.chip--toggle[aria-pressed="true"]:hover {
  background: var(--navy-2);
  color: #fff;
}

/* --- Sonuç araç çubuğu --- */
.listing-results { min-width: 0; }
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.results-summary { margin: 0; font-size: .95rem; color: var(--muted); }
.results-summary strong { color: var(--ink); font-weight: 700; }
.results-sort {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.results-sort label { font-size: .85rem; color: var(--muted); font-weight: 600; }
.results-sort select {
  min-height: 40px;
  padding: 0 2rem 0 .75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
}
.results-sort select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

/* --- Sonuç ızgarası (3 sütun) --- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

/* --- Kart rozeti (doğrulanmış / sponsorlu) --- */
.biz-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem .55rem;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  z-index: 2;
}
.biz-badge .bi { font-size: .8rem; }
.biz-badge--verified { background: rgba(15, 30, 61, .92); color: #fff; }
.biz-badge--sponsor { background: rgba(232, 163, 61, .95); color: #3d2a06; }

/* --- Sayfalama --- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: clamp(28px, 4vw, 44px);
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 .5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-2);
  font-weight: 600;
  font-size: .92rem;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.page-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.page-link[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.page-link--nav { color: var(--ink); font-size: 1rem; }
.page-link.is-disabled {
  opacity: .45;
  pointer-events: none;
}
.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 44px;
  color: var(--muted);
}

/* --- Listeleme responsive --- */
@media (max-width: 1023px) {
  .listing-layout { grid-template-columns: 1fr; }
  .listing-filters { position: static; }
  .listing-filter-toggle { display: inline-flex; }

  /* Mobil/tablet: filtreler collapse (JS aç/kapa; kapalıyken gizli) */
  .listing-filters[hidden] { display: none; }
  .filters-form { box-shadow: none; }

  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .listing-head { align-items: flex-start; }
  .listing-grid { grid-template-columns: 1fr; }
  .results-toolbar { align-items: flex-start; }
  .page-link { min-width: 42px; height: 42px; }
}

/* =============================================================
   18 FİRMA DETAY SAYFASI (firma-detay.html)
   Breadcrumb · Başlık · Galeri · İçerik + sticky iletişim kartı ·
   Hizmetler · Saatler (masaüstü satır / mobil kart) · Yorumlar ·
   Benzer işletmeler.
   Not: token, buton, biz-card, chip, status, rating, breadcrumb
   sınıfları yeniden kullanılır.
   ============================================================= */

/* --- Detay başlığı --- */
.detail-hero {
  padding-block: clamp(20px, 3.5vw, 40px) clamp(16px, 2.5vw, 28px);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}
.detail-head .card-category { display: inline-block; margin-bottom: .5rem; }
.detail-title-row {
  display: flex;
  align-items: center;
  gap: .75rem 1rem;
  flex-wrap: wrap;
}
.detail-title {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.detail-verified {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .6rem;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue-strong);
  font-size: .8rem;
  font-weight: 600;
}
.detail-verified .bi { font-size: .9rem; }

.detail-meta {
  display: flex;
  align-items: center;
  gap: .5rem .75rem;
  flex-wrap: wrap;
  margin-top: .85rem;
}
.detail-meta-sep { color: var(--line-strong); }
.detail-price { font-weight: 600; color: var(--ink-2); }

.detail-address {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.detail-address .bi { color: var(--muted); margin-top: .15rem; flex: none; }

/* --- Galeri --- */
.detail-gallery-section { padding-block: clamp(20px, 3vw, 32px); }
.detail-gallery { display: flex; flex-direction: column; gap: .75rem; }
.gallery-main {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
}
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 3 / 2;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { border-color: var(--line-strong); }
.gallery-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

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

.detail-section { padding-block: clamp(20px, 2.5vw, 30px); }
.detail-section + .detail-section { border-top: 1px solid var(--line); }
.detail-section:first-child { padding-top: 0; }
.detail-section-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.detail-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.detail-section-head .detail-section-title { margin-bottom: 0; }
.detail-text { margin: 0; color: var(--ink-2); font-size: 1rem; max-width: 68ch; }

/* --- Hizmetler --- */
.service-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.service-tags li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}
.service-tags .bi { color: var(--success); font-size: 1rem; flex: none; }

/* --- Çalışma saatleri --- */
.hours-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .7rem .9rem;
  border-radius: var(--radius-md);
  background: var(--success-bg);
  color: var(--success);
  font-size: .92rem;
  font-weight: 500;
}
.hours-note strong { font-weight: 700; }
.hours-note .bi { font-size: 1rem; flex: none; }

.hours-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 480px;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  font-size: .95rem;
}
.hours-row + .hours-row { border-top: 1px solid var(--line); }
.hours-day { color: var(--ink-2); font-weight: 500; }
.hours-time { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-row--today { background: var(--blue-tint); }
.hours-row--today .hours-day,
.hours-row--today .hours-time { color: var(--navy); }
.hours-today-tag {
  display: inline-block;
  margin-left: .5rem;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  vertical-align: middle;
}

/* --- Yorumlar --- */
.detail-reviews { display: flex; flex-direction: column; gap: 1rem; }
.detail-review {
  display: flex;
  gap: .85rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.review-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.detail-review-body { min-width: 0; flex: 1; }
.detail-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.rating--sm { font-size: .85rem; }
.rating--sm strong { font-size: .9rem; }
.detail-review-date { margin: .1rem 0 .55rem; font-size: .8rem; color: var(--muted); }
.detail-review-text { margin: 0; color: var(--ink-2); font-size: .96rem; }

/* --- Yan iletişim kartı --- */
.detail-aside { min-width: 0; }
.contact-card {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.contact-card-title { margin: 0; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.contact-card-actions { display: flex; gap: .5rem; }
.fav-btn--inline {
  position: static;
  width: 40px;
  height: 40px;
  background: var(--surface);
}
.fav-btn--inline[data-share]:hover { color: var(--blue); }
.contact-cta { min-height: 48px; }

.contact-links { display: flex; flex-direction: column; gap: .5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 56px;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  transition: border-color .15s ease, background-color .15s ease;
}
.contact-link:hover { border-color: var(--line-strong); background: var(--surface-2); color: var(--ink); }
.contact-link-ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.contact-link-ic--wa { background: #E7F6EC; color: #1B8f4d; }
.contact-link-txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.contact-link-label { font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.contact-link-value { font-size: .95rem; font-weight: 600; color: var(--ink); }
.contact-link-arrow { color: var(--line-strong); font-size: .85rem; flex: none; }

.contact-address {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contact-address-text {
  font-style: normal;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.5;
}
.contact-directions { margin-top: .25rem; }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
}
.contact-note .bi { margin-top: .1rem; flex: none; color: var(--blue); }

/* --- Benzer işletmeler --- */
.similar-section { background: var(--surface-2); border-top: 1px solid var(--line); }
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

/* --- Detay responsive --- */
@media (max-width: 1023px) {
  .detail-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  /* Yan kart mobilde içeriğin üstüne iner */
  .detail-aside { order: -1; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .gallery-thumbs {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: .25rem;
  }
  .gallery-thumbs li { flex: 0 0 30%; scroll-snap-align: start; }
  .gallery-main { aspect-ratio: 4 / 3; }
}

@media (max-width: 600px) {
  .service-tags { grid-template-columns: 1fr; }
  .similar-grid { grid-template-columns: 1fr; }

  /* Saatler mobilde: satır kart görünümü (gerçek table yok) */
  .hours-list { max-width: none; }
  .hours-row { padding: .75rem .9rem; }

  .detail-review { flex-direction: row; }
  .gallery-thumbs li { flex: 0 0 42%; }
}

@media (max-width: 380px) {
  .detail-title { overflow-wrap: anywhere; }
  .contact-link-value { overflow-wrap: anywhere; }
}

/* =============================================================
   19 SABİT SAYFALAR (hakkimizda · iletisim · gizlilik-politikasi ·
   kvkk · kullanim-kosullari · cerez-politikasi)
   Başlık bandı · uzun metin (.prose) · değer kartları · iletişim
   (form + bilgi) · çerez kartları · yasal etiketli liste.
   Not: token, buton, breadcrumb, eyebrow, section, stats, how-step
   sınıfları yeniden KULLANILIR — yeniden tanımlanmaz.
   ============================================================= */

/* --- Sayfa başlık bandı --- */
.page-hero {
  padding-block: clamp(24px, 4vw, 48px) clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 760px; min-width: 0; }
.page-hero .eyebrow { margin-bottom: .5rem; }
.page-hero h1 {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: .6rem;
  overflow-wrap: anywhere;
}
.page-hero-lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0;
}

/* --- Genel sayfa bölümü --- */
.page-section { padding-block: clamp(40px, 5vw, 72px); }
.page-section--alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.page-section-title { margin-bottom: clamp(20px, 3vw, 32px); }

/* --- Uzun metin okunurluğu --- */
.prose { max-width: 72ch; min-width: 0; color: var(--ink-2); }
.prose > * + * { margin-top: 1rem; }
.prose h2 {
  font-size: clamp(1.3rem, 1.05rem + .9vw, 1.7rem);
  margin-top: 2.2rem;
  margin-bottom: .3rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.12rem;
  margin-top: 1.6rem;
  margin-bottom: .2rem;
}
.prose p { margin: 0; line-height: 1.7; }
.prose ul,
.prose ol { margin: .35rem 0 0; padding-left: 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5rem; line-height: 1.65; }
.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-meta {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* --- Değer kartları (hakkımızda) --- */
.value-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.value-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.value-card-icon {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.value-card p { margin: 0; font-size: .94rem; color: var(--muted); line-height: 1.6; }

/* --- İletişim düzeni (form + bilgi) --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.contact-form-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-title { font-size: 1.35rem; margin-bottom: .5rem; }
.contact-form-intro { color: var(--muted); max-width: 52ch; margin: 0 0 1.5rem; font-size: .98rem; }
.contact-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.contact-field label { font-size: .88rem; font-weight: 600; color: var(--ink-2); }

/* Sabit sayfa form alanları (index modal formundan bağımsız) */
.form-control-custom {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: #fff;
}
.form-control-custom::placeholder { color: var(--muted); }
.form-control-custom:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.form-control-custom.is-invalid { border-color: var(--danger); background: var(--danger-bg); }
textarea.form-control-custom { min-height: 140px; resize: vertical; line-height: 1.6; }

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

/* Başarı / durum mesajı */
.form-status {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--success-bg);
  border: 1px solid rgba(15, 123, 78, .28);
  color: var(--success);
  font-size: .92rem;
  font-weight: 500;
}

/* --- İletişim bilgileri --- */
.contact-info { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.contact-info-icon {
  flex: none;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 1.15rem;
}
.contact-info-body { min-width: 0; }
.contact-info-label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 .15rem;
}
.contact-info-value { margin: 0; color: var(--ink); font-weight: 500; font-style: normal; line-height: 1.55; overflow-wrap: anywhere; }
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--blue); }
.contact-info-note { margin: .3rem 0 0; font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* --- Çerez / bilgi kartları --- */
.cookie-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
.cookie-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.cookie-card-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: .8rem;
}
.cookie-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.cookie-card p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* --- Yasal etiketli liste (dl, gerçek table değil) --- */
.legal-list { margin: 1rem 0 0; }
.legal-list > div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.legal-list > div:first-child { border-top: 0; padding-top: 0; }
.legal-list dt { font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.legal-list dd { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }

/* --- Kapanış CTA bandı --- */
.page-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  color: #fff;
}
.page-cta h2 { color: #fff; margin-bottom: .6rem; }
.page-cta p { color: rgba(255, 255, 255, .8); max-width: 54ch; margin: 0 auto 1.5rem; }

/* --- Sabit sayfa responsive --- */
@media (max-width: 1023px) {
  .value-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .cookie-cards { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .value-cards { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 360px) {
  .prose { overflow-wrap: anywhere; }
  .contact-info-value { overflow-wrap: anywhere; }
}
/* 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: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: .9rem;
  background: var(--surface);
  color: var(--ink);
}

.comment-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

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

/* footer-bg-fix: kopyalanan .site-footer{background:surface-2} acik override temanin KOYU footer metnini (beyaz) gorunmez yapiyordu; koyu zemini geri al */
.site-footer{background:var(--navy);border-top:0}
