/* =============================================================
   FirmaBul · Konsept 02 — Dizin / Arama Odaklı (Utility Directory)
   Manrope · kurumsal mavi · list-first
   İÇİNDEKİLER
   01 Design Tokens
   02 Reset & Base
   03 Typography & Helpers
   04 Buttons & Icon Buttons
   05 Chips, Tags, Rating, Status
   06 Header & Navigation
   07 Mobile Nav
   08 Hero & Search
   09 Categories
   10 Discover (two-column) & Listings
   11 Sidebar
   12 How / Featured / Reviews / CTA
   13 FAQ Accordion
   14 Footer & Newsletter
   15 Modal, Toast, Scroll-top
   16 Accessibility & Reduced Motion
   ============================================================= */

/* ============================================================
   01 · DESIGN TOKENS
   ============================================================ */
:root {
  /* Renk — nötr + kurumsal mavi */
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;

  --surface: #FFFFFF;
  --surface-2: #F8FAFC;
  --surface-3: #F1F5F9;
  --line: #E6E9EF;
  --line-strong: #D5DAE3;

  --navy: #14213D;
  --blue: #1D4ED8;
  --blue-strong: #1E3A8A;
  --blue-soft: #EEF3FF;

  --ok: #15803D;
  --ok-bg: #E7F6EC;
  --danger: #B91C1C;
  --danger-bg: #FCECEC;

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

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

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

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

  /* Etkileşim */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --header-h: 68px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  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; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

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

/* ============================================================
   03 · TYPOGRAPHY & HELPERS
   ============================================================ */
h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 700; }

h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h3 {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  line-height: 1.3;
  font-weight: 600;
}

p { margin: 0; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: .5rem;
}
.eyebrow--light { color: rgba(255, 255, 255, .72); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.section-head--center {
  justify-content: center;
  text-align: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  color: var(--blue);
}
.link-arrow i { transition: transform .2s var(--ease); }
.link-arrow:hover i { transform: translateX(3px); }

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

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.is-broken {
  background: var(--surface-3) !important;
  object-fit: cover;
}
.is-broken::after { content: ""; }

/* ============================================================
   04 · BUTTONS & ICON BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  text-align: center;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn-sm { min-height: 38px; padding: .5rem .9rem; font-size: .9rem; }

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

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--surface-2); }

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

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

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

.btn-icon--light {
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
}
.btn-icon--light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .4); }

/* ============================================================
   05 · CHIPS, TAGS, RATING, STATUS
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 500;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.chip:hover { background: var(--blue-soft); border-color: var(--blue); color: var(--blue-strong); }

.chip-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.chip-row__label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}
.chip-row__items { display: flex; flex-wrap: wrap; gap: .5rem; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 600;
}

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

.rating {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  white-space: nowrap;
}
.rating i { color: #E0A400; font-size: .85em; }
.rating__count { color: var(--muted); font-weight: 500; }
.rating--sm { font-size: .85rem; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
}
.status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex: none;
}
.status--open { color: var(--ok); }
.status--open .status__dot { background: var(--ok); }
.status--closed { color: var(--danger); }
.status--closed .status__dot { background: var(--danger); }

/* ============================================================
   06 · UTILITY ÜST BAR (header üstü; yapışkan değil, mobilde gizli)
   ============================================================ */
.utility-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 38px;
}
.utility-bar__trust {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
}
.utility-bar__trust i { color: var(--blue); font-size: .95rem; }
.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility-bar__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .8rem;
  font-weight: 500;
  transition: color .16s var(--ease);
}
.utility-bar__link:hover { color: var(--blue); }
.utility-bar__link i { font-size: .95rem; }
.utility-bar__login { font-weight: 600; color: var(--ink-2); }

/* ============================================================
   06b · HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex: none;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 32px; height: 32px;
  padding: 8px 7px;
  border-radius: 7px;
  background: var(--blue);
}
.brand-mark span {
  display: block;
  height: 2.6px;
  border-radius: 2px;
  background: #fff;
}
.brand-mark span:nth-child(1) { width: 100%; }
.brand-mark span:nth-child(2) { width: 100%; }
.brand-mark span:nth-child(3) { width: 62%; }

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-name strong { color: var(--blue); font-weight: 800; }
.brand-name--light { color: #fff; }
.brand-name--light strong { color: #93B4FF; }

/* Yapışkan mini arama (scroll'da görünür) */
.header-search {
  flex: 1;
  max-width: 460px;
  margin-inline: auto;
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .3rem .3rem .3rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
}
.site-header.is-scrolled .header-search { display: flex; }
.header-search > i { color: var(--muted); flex: none; }
.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  padding: .35rem 0;
}
.header-search input:focus { outline: none; }
.header-search .btn { flex: none; border-radius: var(--radius-pill); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-list a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: .95rem;
  padding: .4rem 0;
  position: relative;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .2s var(--ease);
}
.nav-list a:hover::after { width: 100%; }

/* Scroll'da mini arama alanı için nav'ı gizle (yer aç) */
.site-header.is-scrolled .nav-list { display: none; }

/* Sağdaki aksiyon kümesi (mobil): kompakt CTA + hamburger */
.header-actions {
  display: none;
  align-items: center;
  gap: .6rem;
}
/* Kompakt birincil aksiyon — yalnızca mobil/tablet-dar görünür */
.header-cta { display: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}
.nav-toggle__bars span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================================
   07 · MOBILE NAV
   ============================================================ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 23, 42, .45);
}
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  z-index: 160;
  width: min(88vw, 340px);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s var(--ease);
}
.mobile-nav:not([hidden]) { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-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);
  font-size: 1.05rem;
}
.nav-close:hover { background: var(--surface-2); }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list a {
  display: block;
  padding: .85rem .25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
}
.mobile-nav__list a:hover { color: var(--blue); }
.mobile-nav__cta { margin-top: auto; }

/* ============================================================
   08 · HERO & SEARCH
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 120% at 50% -20%, var(--blue-soft) 0%, rgba(238, 243, 255, 0) 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  padding-block: clamp(48px, 7vw, 96px);
  text-align: center;
  max-width: 860px;
}
.hero h1 { margin-bottom: 1rem; }
.hero-lead {
  font-size: clamp(1rem, .95rem + .35vw, 1.15rem);
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* Arama paneli */
.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: .5rem;
  padding: .5rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.search-field__icon {
  position: absolute;
  left: .85rem;
  color: var(--muted);
  pointer-events: none;
  font-size: 1rem;
}
.search-input,
.search-select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--surface);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: .5rem .9rem .5rem 2.5rem;
}
.search-field--select { border-left: 1px solid var(--line); }
.search-input::placeholder { color: var(--muted); }
.search-input:focus,
.search-select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
}
.search-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%2364748B' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-left: .9rem;
  padding-right: 2.25rem;
  text-overflow: ellipsis;
}
/* Select'lerde sol ikon yok — "Tüm şehirler / Tüm ilçeler" tam sığsın */
.search-field--select .search-field__icon { display: none; }
.search-clear {
  position: absolute;
  right: .6rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.05rem;
  display: inline-flex;
  padding: .25rem;
}
.search-clear:hover { color: var(--ink); }
.search-submit { min-height: 52px; padding-inline: 1.5rem; }

/* Öneri paneli */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 40;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .35rem;
  max-height: 320px;
  overflow-y: auto;
}
.search-suggestions li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: .95rem;
  cursor: pointer;
}
.search-suggestions li i { color: var(--muted); }
.search-suggestions li.is-active,
.search-suggestions li:hover { background: var(--blue-soft); color: var(--ink); }
.search-suggestions mark { background: transparent; color: var(--blue); font-weight: 700; padding: 0; }

/* Güven şeridi (sayaç) */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.trust-strip li { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.trust-num {
  font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.trust-lbl { font-size: .82rem; color: var(--muted); text-align: center; }

/* ============================================================
   09 · CATEGORIES
   ============================================================ */
.categories { background: var(--surface); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.category-tile {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
  padding: 1.1rem 1rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.category-tile:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.category-tile i {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: .3rem;
}
.category-tile__name {
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.25;
}
.category-tile__count { font-size: .8rem; color: var(--muted); }

/* ============================================================
   10 · DISCOVER (two-column) & LISTINGS
   ============================================================ */
.discover { background: var(--surface-2); }
.discover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.discover-main { min-width: 0; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.filter-chip {
  min-height: 38px;
  padding: .45rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 600;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue-strong); }
.filter-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.listing-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.listing {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.listing:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.listing__media {
  flex: none;
  width: 96px; height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-3);
}
.listing__media img { width: 100%; height: 100%; object-fit: cover; }

.listing__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.listing__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}
.listing__title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing__title a { color: var(--ink); }
.listing__title a:hover { color: var(--blue); }
.listing__meta {
  font-size: .88rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.listing__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .9rem;
  margin-top: .1rem;
}
.listing__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.listing__actions .btn { flex: none; }

.fav-btn {
  flex: none;
  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(--muted);
  font-size: 1.1rem;
  transition: color .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease);
}
.fav-btn:hover { color: var(--danger); border-color: var(--danger); background: var(--danger-bg); }
.fav-btn[aria-pressed="true"] { color: var(--danger); border-color: var(--danger); background: var(--danger-bg); }
.fav-btn[aria-pressed="true"] i::before { content: "\f417"; } /* bi-heart-fill */

.list-more { margin-top: 1.5rem; text-align: center; }

/* ============================================================
   11 · SIDEBAR
   ============================================================ */
.discover-side {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
}
.side-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .85rem;
}
.city-list { display: flex; flex-direction: column; }
.city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  padding: .55rem .25rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  color: var(--ink-2);
  font-size: .92rem;
  transition: color .16s var(--ease);
}
.city-list li:last-child .city-item { border-bottom: 0; }
.city-item:hover { color: var(--blue); }
.city-item__name { font-weight: 600; color: var(--ink); }
.city-item:hover .city-item__name { color: var(--blue); }
.city-item__count { font-size: .82rem; color: var(--muted); }

.side-chips { display: flex; flex-wrap: wrap; gap: .5rem; }

.side-card--trust { background: var(--blue-soft); border-color: #DCE6FF; }
.trust-list { display: flex; flex-direction: column; gap: .75rem; }
.trust-list li {
  display: flex;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.trust-list i { color: var(--blue); font-size: 1.05rem; flex: none; margin-top: 1px; }

/* ============================================================
   12 · HOW / FEATURED / REVIEWS / CTA
   ============================================================ */
/* Nasıl çalışır */
.how { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step {
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.step__title { margin-bottom: .4rem; }
.step__desc { font-size: .95rem; color: var(--ink-2); }

/* Öne çıkanlar */
.featured { background: var(--surface-2); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.feature-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.feature-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-3);
}
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fav-btn--overlay {
  position: absolute;
  top: .6rem; right: .6rem;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, .92);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.feature-card__body { padding: 1rem; display: flex; flex-direction: column; gap: .3rem; }
.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature-card__title a { color: var(--ink); }
.feature-card__title a:hover { color: var(--blue); }
.feature-card__meta { font-size: .85rem; color: var(--muted); }
.feature-card .listing__facts { margin-top: .35rem; }

/* Yorumlar */
.reviews { background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.review blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  margin-top: auto;
}
.review__name { font-weight: 700; color: var(--ink); }
.review__loc { color: var(--muted); }
.review__loc::before { content: "· "; }

/* CTA bandı */
.cta-band { background: var(--navy); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text { max-width: 620px; }
.cta-text h2 { color: #fff; margin-bottom: .75rem; }
.cta-lead { color: rgba(255, 255, 255, .75); font-size: 1.02rem; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   13 · FAQ ACCORDION
   ============================================================ */
.faq { background: var(--surface); }
.faq-inner {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-note { margin-top: .75rem; color: var(--muted); font-size: .95rem; }

.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq-trigger:hover { color: var(--blue); }
.faq-trigger__icon {
  flex: none;
  font-size: 1rem;
  color: var(--muted);
  transition: transform .2s var(--ease);
}
.faq-trigger[aria-expanded="true"] .faq-trigger__icon { transform: rotate(45deg); color: var(--blue); }
.faq-panel { padding: 0 0 1.15rem; }
.faq-panel p { color: var(--ink-2); font-size: .96rem; max-width: 62ch; }

/* ============================================================
   14 · FOOTER & NEWSLETTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-block: clamp(48px, 5vw, 72px);
}
.footer-about { margin-top: 1rem; font-size: .92rem; line-height: 1.6; max-width: 32ch; }
.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; }

.footer-col__title {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255, 255, 255, .78); font-size: .93rem; }
.footer-col a:hover { color: #fff; }

.footer-news__lead { font-size: .9rem; margin-bottom: 1rem; }
.newsletter__row {
  display: flex;
  gap: .5rem;
}
.newsletter__input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: .92rem;
  padding: .5rem .8rem;
}
.newsletter__input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter__input:focus { outline: none; border-color: #93B4FF; background: rgba(255, 255, 255, .1); }
.newsletter__row .btn { flex: none; }
.newsletter-msg { font-size: .85rem; margin-top: .6rem; min-height: 1.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.25rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255, 255, 255, .7); }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   15 · MODAL, TOAST, SCROLL-TOP
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, .5);
  overflow-y: auto;
}
/* hidden iken display:flex'i geç — kapalı modal görünmez şekilde tüm tıklamaları engellemesin */
.modal-overlay[hidden] { display: none; }
/* Genel güvence: hidden attribute display kurallarını her zaman geçmeli
   (boş alanda temizle butonu, öneri paneli, kapalı modal vb.) */
[hidden] { display: none !important; }
.modal {
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}
.modal__title { font-size: 1.3rem; }
.modal__lead { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }

.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.form-field input,
.form-field select {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  padding: .5rem .75rem;
}
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%2364748B' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.25rem;
}
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--blue); }
.form-field.is-invalid input,
.form-field.is-invalid select { border-color: var(--danger); }
.form-error { font-size: .82rem; color: var(--danger); min-height: .95em; }
.modal-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .5rem;
}
.btn.is-loading { position: relative; color: transparent; pointer-events: none; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* Toast */
.toast-region {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: min(92vw, 360px);
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .85rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: .92rem;
  line-height: 1.4;
}
.toast i { flex: none; margin-top: 1px; font-size: 1.05rem; }
.toast--success i { color: #86EFAC; }
.toast--info i { color: #93B4FF; }

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

/* ============================================================
   16 · ACCESSIBILITY & REDUCED MOTION
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible,
.btn-icon:focus-visible,
.chip:focus-visible,
.filter-chip:focus-visible { outline-offset: 3px; }

/* Klavye ile öneri gezinme aktif öğe zaten .is-active ile belirginleşir */

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

/* ============================================================
   RESPONSIVE — her kırılım ayrı düşünüldü
   ============================================================ */

/* Masaüstü altı: 4→ daha az sütun */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
  .footer-news { grid-column: 1 / -1; }
}

/* Laptop / küçük masaüstü */
@media (max-width: 1024px) {
  .discover-grid { grid-template-columns: 1fr; }
  .discover-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .side-card--trust { grid-column: 1 / -1; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
}

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

/* Tablet */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-scrolled .header-search { display: none; }

  /* Aksiyon kümesi sağa yaslı; kompakt CTA görünür */
  .header-actions { display: flex; margin-left: auto; }
  .header-cta { display: inline-flex; min-height: 44px; }

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

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }
  .search-field--keyword { grid-column: 1 / -1; }
  .search-field--select { border-left: 0; }
  .search-field--keyword,
  .search-field--select {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }
  .search-submit { grid-column: 1 / -1; }
}

/* Büyük mobil / küçük tablet */
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
}

/* MOBİL — aşırı sade, ikili bloklar */
@media (max-width: 600px) {
  :root { --header-h: 60px; }

  body { font-size: 15.5px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* İkili bloklar */
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .discover-side { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }

  .category-tile { padding: .9rem .8rem; }
  .category-tile i { font-size: 1.1rem; }

  /* Arama tam genişlik, dikey */
  .search-panel {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .search-input, .search-select, .search-submit { min-height: 50px; }

  /* Satır kartları kompakt */
  .listing { padding: .85rem; gap: .8rem; }
  .listing__media { width: 72px; height: 72px; }
  .listing__title { font-size: .98rem; }
  .listing__actions { flex-wrap: wrap; }
  .listing__actions .btn-secondary { flex: 1; }

  /* Yan panel kartlar mobilde tek sütun içinde okunur */
  .side-card--trust { grid-column: 1 / -1; }

  .feature-card__body { padding: .8rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-news { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

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

  .scroll-top { bottom: calc(1rem + env(safe-area-inset-bottom)); }
}

/* Dar mobil — kompakt CTA yalnızca ikon (taşmayı önler) */
@media (max-width: 410px) {
  .header-actions { gap: .5rem; }
  .header-cta {
    width: 44px;
    padding: 0;
    gap: 0;
  }
  .header-cta__label {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
  }
}

/* En küçük ekran — taşma kontrolü */
@media (max-width: 380px) {
  .discover-side { grid-template-columns: 1fr; }
  .listing__actions .btn-secondary { flex: 1 1 100%; }
}

/* ============================================================
   17 · FİRMA LİSTELEME SAYFASI (firmalar.html)
   Breadcrumb · Sayfa başlığı · Filtre barı · Rozet · Sayfalama
   Mevcut token/sınıflar yeniden kullanılır.
   ============================================================ */

/* --- Breadcrumb --- */
.listing-hero {
  background:
    radial-gradient(120% 140% at 0% -30%, var(--blue-soft) 0%, rgba(238, 243, 255, 0) 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.5rem);
}
.breadcrumb { margin-bottom: 1.25rem; }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .5rem;
  font-size: .85rem;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  font-size: 1rem;
  line-height: 1;
  color: var(--line-strong);
}
.breadcrumb__item a { color: var(--muted); font-weight: 500; }
.breadcrumb__item a:hover { color: var(--blue); }
.breadcrumb__item[aria-current="page"] span { color: var(--ink); font-weight: 600; }

/* --- Sayfa başlığı --- */
.page-head { max-width: 760px; }
.page-head h1 { margin-bottom: .5rem; }
.page-head__count {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: .6rem;
}
.page-head__count strong { color: var(--ink); font-weight: 800; }
.page-head__lead {
  font-size: clamp(.95rem, .9rem + .25vw, 1.05rem);
  color: var(--ink-2);
  max-width: 640px;
}

/* --- Filtre barı --- */
.listing-section { background: var(--surface-2); }
.filter-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}
/* Mobil aç/kapa düğmesi — masaüstünde gizli */
.filter-bar__toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  width: 100%;
  min-height: 48px;
  padding: .6rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}
.filter-bar__toggle > span { margin-right: auto; }
.filter-bar__toggle i { color: var(--blue); }
.filter-bar__toggle-caret {
  color: var(--muted) !important;
  transition: transform .2s var(--ease);
}
.filter-bar.is-open .filter-bar__toggle-caret { transform: rotate(180deg); }

.filter-bar__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.filter-group { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.filter-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted);
  text-transform: uppercase;
}
.filter-select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  padding: .5rem 2.25rem .5rem .8rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%2364748B' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  text-overflow: ellipsis;
}
.filter-select:focus { outline: none; border-color: var(--blue); }

/* Durum chip'leri */
.filter-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.filter-status__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted);
  text-transform: uppercase;
  margin-right: .25rem;
}
.filter-status-chip {
  min-height: 40px;
  padding: .45rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 600;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.filter-status-chip:hover { border-color: var(--blue); color: var(--blue-strong); }
.filter-status-chip[aria-pressed="true"] {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--blue-strong);
}
.filter-status-chip[aria-pressed="true"]::before {
  content: "✓";
  font-size: .8rem;
  font-weight: 700;
  margin-right: .35rem;
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: .6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* --- Sonuç sayısı --- */
.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.results-head__count { font-size: .95rem; color: var(--muted); }
.results-head__count strong { color: var(--ink); font-weight: 800; }

/* --- Kart içi ek yapı (başlık + rozet) --- */
.listing__headings { min-width: 0; display: flex; flex-direction: column; gap: .3rem; }
.listing__badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .12rem .5rem;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
}
.badge--verified {
  background: var(--ok-bg);
  color: var(--ok);
}
.badge--verified i { font-size: .85em; }
.badge--sponsored {
  background: var(--surface-3);
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
}

.listing-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
}

/* --- Sayfalama --- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 2rem;
}
.pagination__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: var(--surface);
  color: var(--ink-2);
  font-weight: 600;
  font-size: .92rem;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.pagination__link:hover { background: var(--blue-soft); border-color: var(--blue); color: var(--blue-strong); }
.pagination__link[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.pagination__link.is-disabled {
  color: var(--line-strong);
  pointer-events: none;
  background: var(--surface-2);
}
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 44px;
  color: var(--muted);
}

/* --- Firma listeleme: responsive --- */
@media (max-width: 900px) {
  .filter-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Filtre barı mobilde açılır/collapse */
  .filter-bar { padding: .85rem; }
  .filter-bar__toggle { display: flex; }
  .filter-bar__body { display: none; margin-top: .85rem; }
  .filter-bar.is-open .filter-bar__body { display: flex; }
}

@media (max-width: 600px) {
  .filter-grid { grid-template-columns: 1fr; }
  .filter-actions { flex-direction: row; }
  .filter-actions .btn { flex: 1; }
  .pagination__link { min-width: 40px; height: 40px; }
}

/* ============================================================
   18 · FİRMA DETAY SAYFASI (firma-detay.html)
   Başlık · Galeri · Hakkında/Hizmet/Saat/Yorum · İletişim kartı
   Mevcut token/sınıflar yeniden kullanılır.
   ============================================================ */
.detail-page {
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

/* --- İşletme başlığı --- */
.biz-head { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.biz-head__cat {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.biz-head__cat a { color: var(--blue); }
.biz-head__cat a:hover { color: var(--blue-strong); }
.biz-head__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .85rem;
  margin-bottom: .6rem;
}
.biz-head__title { margin: 0; }
.biz-head__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  margin-bottom: .55rem;
}
.biz-head__sep { color: var(--line-strong); }
.biz-head__addr {
  display: inline-flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .95rem;
  color: var(--ink-2);
}
.biz-head__addr i { color: var(--muted); margin-top: 2px; flex: none; }

/* --- İki sütunlu ana yerleşim --- */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.detail-main { min-width: 0; }

/* --- Bölümler --- */
.detail-block { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.detail-block:last-child { margin-bottom: 0; }
.detail-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.detail-block__title {
  font-size: clamp(1.2rem, 1.05rem + .5vw, 1.5rem);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.detail-block__head .detail-block__title { margin-bottom: 0; }
.detail-block__badge {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-strong);
  background: var(--blue-soft);
  padding: .1rem .5rem;
  border-radius: var(--radius-pill);
}
.detail-block__text {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 68ch;
}

/* --- Galeri --- */
.gallery__main {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  border: 1px solid var(--line);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-top: .6rem;
}
.gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-3);
  transition: border-color .18s var(--ease), box-shadow .18s var(--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 2px var(--blue-soft);
}

/* --- Hizmetler --- */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem .85rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .9rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.service-item i {
  color: var(--ok);
  font-size: 1.05rem;
  flex: none;
}

/* --- Çalışma saatleri (tablo DEĞİL, satır listesi) --- */
.hours-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-day { color: var(--ink-2); font-weight: 500; display: inline-flex; align-items: center; gap: .5rem; }
.hours-time { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hours-row.is-today {
  background: var(--blue-soft);
}
.hours-row.is-today .hours-day,
.hours-row.is-today .hours-time { color: var(--blue-strong); font-weight: 700; }
.hours-today-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: .1rem .45rem;
  border-radius: var(--radius-pill);
}

/* --- Yorumlar --- */
.review-list { display: flex; flex-direction: column; gap: .85rem; }
.review-card {
  padding: 1.1rem 1.2rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .65rem;
}
.avatar {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--navy));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.review-card__id { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.review-card__name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.review-card__date { font-size: .82rem; color: var(--muted); }
.review-card__text { color: var(--ink-2); font-size: .97rem; line-height: 1.6; }

/* --- İletişim / aksiyon kartı (sticky) --- */
.detail-side {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
}
.contact-card__cta { width: 100%; }
.contact-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.contact-card__btn { width: 100%; }
.contact-card__wide { width: 100%; }
.contact-card__addr {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .75rem 0 .25rem;
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.contact-card__addr i { color: var(--blue); font-size: 1.05rem; margin-top: 2px; flex: none; }
.contact-card__meta {
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}
.contact-card__foot {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.contact-card__share { flex: 1; }

/* --- Benzer işletmeler --- */
.detail-similar { margin-top: clamp(2rem, 4vw, 3rem); }
.detail-similar .featured-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card__cta { margin-top: .65rem; align-self: flex-start; }

/* --- Firma detay: responsive --- */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .contact-card { max-width: 520px; }
  .detail-similar .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .service-list { grid-template-columns: 1fr; }
  .gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
  .contact-card { max-width: none; }
  .detail-similar .featured-grid { grid-template-columns: 1fr; }
  .hours-row { padding: .75rem .85rem; }
}

@media (max-width: 380px) {
  .contact-card__actions { grid-template-columns: 1fr; }
}

/* ============================================================
   19 · SABİT SAYFALAR (hakkımızda · iletişim · yasal metinler)
   .container/.section/.btn/.breadcrumb/.eyebrow CSS 01–17'de tanımlı.
   Burada yalnız sabit sayfalara özel sınıflar; token'lar :root'tan.
   ============================================================ */

/* --- Sayfa başlık bandı --- */
.page-hero {
  background:
    radial-gradient(120% 140% at 0% -30%, var(--blue-soft) 0%, rgba(238, 243, 255, 0) 55%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.5rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3rem);
}
.page-hero-inner { max-width: 760px; }
.page-hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .75rem;
}
.page-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--ink-2);
  margin: 0;
  max-width: 62ch;
}

/* --- Genel sabit sayfa bölümü --- */
.page-section { padding-block: clamp(2.25rem, 5vw, 4rem); }
.page-section--tight { padding-top: clamp(1.5rem, 3vw, 2.25rem); }

/* --- Uzun metin okunurluğu (prose) --- */
.prose { max-width: 72ch; color: var(--ink-2); }
.prose > * + * { margin-top: 1rem; }
.prose h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  color: var(--ink);
  line-height: 1.25;
  margin-top: 2.25rem;
}
.prose h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.2rem);
  color: var(--ink);
  line-height: 1.3;
  margin-top: 1.5rem;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.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);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--blue-strong); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose__updated {
  display: inline-block;
  font-size: .85rem;
  color: var(--muted);
  background: var(--surface-3);
  border-radius: var(--radius-pill);
  padding: .3rem .85rem;
  margin-bottom: .25rem;
}

/* --- Hakkımızda: değer kartları --- */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: .85rem;
}
.value-card h3 { font-size: 1.05rem; color: var(--ink); margin: 0 0 .4rem; }
.value-card p { font-size: .95rem; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* --- Hakkımızda: güven istatistikleri (mevcut .trust-num sayacı) --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-stat {
  min-width: 0;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
}
.about-stat .trust-num {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.about-stat__suffix { font-weight: 800; color: var(--blue); }
.about-stat .trust-lbl {
  display: block;
  margin-top: .35rem;
  font-size: .9rem;
  color: var(--muted);
}

/* --- İletişim: iki sütun (SOL form · SAĞ bilgi) --- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.contact-panel {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.contact-panel h2 { font-size: 1.25rem; color: var(--ink); margin: 0 0 .35rem; }
.contact-panel__lead { color: var(--ink-2); margin: 0 0 1.25rem; font-size: .95rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-field { display: flex; flex-direction: column; gap: .4rem; }
.contact-field label { font-size: .88rem; font-weight: 600; color: var(--ink); }

.form-control-custom {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  padding: .6rem .8rem;
}
.form-control-custom::placeholder { color: var(--muted); }
.form-control-custom:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .15);
}
.form-control-custom.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, .12);
}
textarea.form-control-custom { min-height: 140px; resize: vertical; line-height: 1.55; }
.field-error { margin: 0; font-size: .82rem; color: var(--danger); font-weight: 500; }

/* Başarı / durum mesajı (yumuşak success zemin) */
.form-status {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-md);
  background: var(--ok-bg);
  border: 1px solid rgba(21, 128, 61, .32);
  color: var(--ok);
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
}

/* İletişim bilgileri */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  min-width: 0;
}
.contact-info-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.15rem;
}
.contact-info-item__body { min-width: 0; }
.contact-info-item h3 { font-size: .98rem; color: var(--ink); margin: 0 0 .2rem; }
.contact-info-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: .93rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.contact-info-item a { color: var(--blue); font-weight: 600; }
.contact-info-item a:hover { color: var(--blue-strong); }

/* --- Çerez / yasal etiketli kart & liste (gerçek <table> YOK) --- */
.cookie-cards { display: grid; gap: 1rem; margin-top: 1.25rem; }
.cookie-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.cookie-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.cookie-card p { margin: 0; color: var(--ink-2); font-size: .93rem; line-height: 1.6; }
.cookie-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: var(--radius-pill);
  padding: .2rem .6rem;
}

.legal-list { display: grid; gap: .75rem; margin-top: 1rem; }
.legal-list__item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
}
.legal-list__item i { color: var(--blue); font-size: 1.05rem; margin-top: 2px; flex: none; }
.legal-list__item span { color: var(--ink-2); font-size: .93rem; line-height: 1.55; }

/* --- Sabit sayfa: responsive --- */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .value-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 380px) {
  .value-cards, .about-stats { grid-template-columns: 1fr; }
}
/* Select'lerde sol ikon yok — metin ("Tüm şehirler") tam sığsın */
.search-select-wrap .search-icon { display: none; }
.search-input:focus, .search-select:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--ring);
}
.search-clear {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: none; background: transparent;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center;
}
.search-clear:hover { color: var(--ink); }
.search-submit { min-height: 48px; width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Ana arama kutusu: generic .search-input padding'i (blog aramasından) hero formundaki
   ikon-farkında sol boşluğu eziyordu → büyüteç ikonu placeholder ile çakışıyordu.
   id kapsamı ile özgüllüğü artırıp ikon-farkında padding'i geri veriyoruz. */
#searchForm .search-input { padding: .5rem .9rem .5rem 2.5rem; }

/* 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);--avatar-bg:var(--surface-2)}

/* 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}
