/* ==========================================================================
   Kalem & Divit — Editoryal Yazı Kültürü
   Ortak stil katmanı  ·  Açık/Koyu tema  ·  Cloudflare Pages için statik
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tema değişkenleri
   -------------------------------------------------------------------------- */
:root {
  /* Koyu tema (varsayılan) */
  --bg-body: #0d1117;
  --bg-surface: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #22272e;
  --bg-thumb: #111418;
  --bg-inset: #0b0f14;

  --border-color: #30363d;
  --border-accent: #444c56;

  --text-primary: #f0f6fc;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;

  --accent-gold: #d4af37;
  --accent-gold-light: #f3e5ab;
  --accent-gold-dark: #aa8c2c;
  --accent-teal: #38bdf8;
  --accent-violet: #c084fc;
  --accent-badge: rgba(212, 175, 55, 0.12);

  --hero-gradient: linear-gradient(180deg, #ffffff 55%, #b6bec8 100%);
  --glow: rgba(212, 175, 55, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.5);
  --hover-tint: rgba(255, 255, 255, 0.02);

  --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --maxw: 1240px;
}

[data-theme='light'] {
  --bg-body: #faf8f4;
  --bg-surface: #f2eee6;
  --bg-card: #ffffff;
  --bg-card-hover: #fbf9f5;
  --bg-thumb: #f4f1ea;
  --bg-inset: #efeae0;

  --border-color: #e0d9cb;
  --border-accent: #c9bfab;

  --text-primary: #1a1814;
  --text-secondary: #57534e;
  --text-muted: #857f76;

  --accent-gold: #8a6d1f;
  --accent-gold-light: #6b5416;
  --accent-gold-dark: #a98a2e;
  --accent-teal: #0369a1;
  --accent-violet: #7e22ce;
  --accent-badge: rgba(138, 109, 31, 0.1);

  --hero-gradient: linear-gradient(180deg, #1a1814 55%, #4a453e 100%);
  --glow: rgba(138, 109, 31, 0.07);
  --shadow-sm: 0 2px 8px rgba(60, 50, 30, 0.08);
  --shadow-md: 0 10px 25px rgba(60, 50, 30, 0.1);
  --shadow-lg: 0 12px 30px rgba(60, 50, 30, 0.12);
  --hover-tint: rgba(0, 0, 0, 0.02);
}

/* --------------------------------------------------------------------------
   2. Temel sıfırlama
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--accent-gold);
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-gold);
  color: #0d1117;
  padding: 10px 18px;
  z-index: 999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

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

/* Ambiyans ışığı */
.ambient-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  max-width: 120vw;
  background: radial-gradient(circle, var(--glow) 0%, rgba(13, 17, 23, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 820px;
}

/* --------------------------------------------------------------------------
   3. Başlık & gezinme
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg-body) 85%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 14px 0;
}

@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header {
    background: var(--bg-body);
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bg-inset), var(--bg-surface));
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 20px;
  line-height: 1;
}

.brand-text h1,
.brand-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-text span.brand-sub {
  font-size: 0.64rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  padding: 0;
}

.theme-toggle:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.nav-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-body);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 66px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-badge);
  border: 1px solid color-mix(in srgb, var(--accent-gold) 35%, transparent);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto 20px;
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 34px;
}

.page-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 44px;
}

.page-hero .hero-title {
  margin-bottom: 14px;
}

.page-hero .hero-subtitle {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. Filtre & arama çubuğu
   -------------------------------------------------------------------------- */
.filter-bar {
  display: inline-flex;
  background: var(--bg-surface);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--bg-card);
  color: var(--accent-gold);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-sm);
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 26px;
}

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

.search-field span.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.95rem;
}

.search-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.select-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.select-field select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
}

.select-field select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.result-count {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.result-count strong {
  color: var(--accent-gold);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   6. Öne çıkan inceleme
   -------------------------------------------------------------------------- */
.lead-story {
  padding: 48px 0;
}

.lead-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: var(--transition);
}

.lead-card:hover {
  border-color: var(--accent-gold-dark);
  box-shadow: var(--shadow-lg);
}

.lead-img-wrap {
  position: relative;
  background: var(--bg-thumb);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: 40px;
}

.lead-img-wrap svg {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45));
  transition: transform 0.6s ease;
}

.lead-card:hover .lead-img-wrap svg {
  transform: scale(1.03) rotate(-1deg);
}

.tag-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: color-mix(in srgb, var(--bg-body) 85%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.lead-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.lead-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.lead-title a {
  color: inherit;
  text-decoration: none;
}

.lead-title a:hover {
  color: var(--accent-gold);
}

.lead-excerpt {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--bg-surface);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.spec-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item strong {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 600;
}

.lead-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--accent-gold);
}

.score-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
}

.score-max {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-read:hover {
  gap: 12px;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   7. Bölüm başlıkları & kart ızgarası
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.section-head h2,
.section-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.section-head a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.section-head a:hover {
  color: var(--accent-gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 68px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.review-card.is-hidden {
  display: none;
}

.card-thumb {
  background: var(--bg-thumb);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.card-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tier-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 8px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tier-luxury {
  background: color-mix(in srgb, var(--accent-gold) 15%, transparent);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.tier-fp {
  background: color-mix(in srgb, var(--accent-teal) 15%, transparent);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
}

.tier-mid {
  background: color-mix(in srgb, var(--accent-violet) 15%, transparent);
  border: 1px solid var(--accent-violet);
  color: var(--accent-violet);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-brand {
  font-size: 0.72rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.card-title a:hover {
  color: var(--accent-gold);
}

.card-summary {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-top: auto;
}

.specs-pill {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.card-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-gold);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. Tablolar
   -------------------------------------------------------------------------- */
.comparison-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 68px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 0.9rem;
}

.comp-table th,
.comp-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comp-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: var(--bg-card);
  white-space: nowrap;
}

.comp-table th.sortable {
  cursor: pointer;
  user-select: none;
}

.comp-table th.sortable:hover {
  color: var(--accent-gold);
}

.comp-table tbody tr:hover td {
  background: var(--hover-tint);
}

.comp-table td strong {
  color: var(--text-primary);
}

.gold {
  color: var(--accent-gold);
  font-weight: 700;
}
.teal {
  color: var(--accent-teal);
}
.violet {
  color: var(--accent-violet);
}

/* --------------------------------------------------------------------------
   9. Karşılaştırma aracı
   -------------------------------------------------------------------------- */
.compare-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.pick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.pick-item:hover {
  border-color: var(--border-accent);
}

.pick-item.checked {
  border-color: var(--accent-gold);
  background: var(--accent-badge);
}

.pick-item.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pick-item input {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.pick-item .pick-brand {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.compare-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 620px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--bg-card);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-gold-dark);
}

.compare-table tbody th {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  width: 190px;
  background: var(--bg-surface);
}

.compare-table td.best {
  color: var(--accent-gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. İnceleme (article) sayfası
   -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 22px 0 0;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.review-header {
  padding: 26px 0 34px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 38px;
}

.review-header .card-brand {
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.review-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.review-standfirst {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  padding-bottom: 70px;
}

.review-body {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.review-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 42px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.review-body h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  color: var(--text-primary);
  margin: 26px 0 10px;
  font-weight: 700;
}

.review-body p {
  margin-bottom: 18px;
}

.review-body p strong,
.review-body li strong {
  color: var(--text-primary);
}

.review-body ul,
.review-body ol {
  margin: 0 0 20px 22px;
}

.review-body li {
  margin-bottom: 9px;
}

.pull-quote {
  border-left: 3px solid var(--accent-gold);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.hero-figure {
  background: var(--bg-thumb);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  margin-bottom: 34px;
  min-height: 300px;
}

.hero-figure svg {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.45));
}

/* Artı / eksi kutuları */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
  font-family: var(--font-sans);
}

.pc-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: var(--bg-card);
}

.pc-box h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.pc-pros h4 {
  color: #4ade80;
}
[data-theme='light'] .pc-pros h4 {
  color: #15803d;
}

.pc-cons h4 {
  color: #f87171;
}
[data-theme='light'] .pc-cons h4 {
  color: #b91c1c;
}

.pc-box ul {
  list-style: none;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pc-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  line-height: 1.55;
}

.pc-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.pc-cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

[data-theme='light'] .pc-pros li::before {
  color: #15803d;
}
[data-theme='light'] .pc-cons li::before {
  color: #b91c1c;
}

/* Puan kırılımı */
.score-breakdown {
  font-family: var(--font-sans);
  margin: 30px 0;
}

.score-row {
  display: grid;
  grid-template-columns: 168px 1fr 48px;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.score-label {
  color: var(--text-secondary);
}

.score-track {
  height: 11px;
  background: var(--bg-inset);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold));
  border-radius: 20px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* JS yoksa çubuklar yine de dolu görünsün */
.no-js .score-fill,
.score-fill.filled {
  width: var(--w, 0);
}

.score-value {
  text-align: right;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-display);
}

/* Kenar çubuğu */
.review-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--font-sans);
}

.side-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 22px;
}

.side-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.side-verdict {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-surface));
}

.side-verdict .big-score {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.side-verdict .big-score small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.side-verdict p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 10px;
}

.side-specs {
  list-style: none;
  font-size: 0.87rem;
}

.side-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-color);
}

.side-specs li:last-child {
  border-bottom: none;
}

.side-specs .k {
  color: var(--text-muted);
}

.side-specs .v {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.toc-list {
  list-style: none;
  font-size: 0.88rem;
}

.toc-list li {
  margin-bottom: 9px;
}

.toc-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.toc-list a:hover {
  color: var(--accent-gold);
}

/* İlgili incelemeler */
.related-section {
  border-top: 1px solid var(--border-color);
  padding: 46px 0 70px;
}

/* --------------------------------------------------------------------------
   11. Rehber / manifesto içerik sayfaları
   -------------------------------------------------------------------------- */
.prose {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-secondary);
  padding-bottom: 70px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 46px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.prose h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 10px;
}

.prose p {
  margin-bottom: 18px;
}

.prose ul,
.prose ol {
  margin: 0 0 20px 22px;
}

.prose li {
  margin-bottom: 9px;
}

.prose strong {
  color: var(--text-primary);
}

.callout {
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-gold);
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 0.98rem;
}

.callout strong {
  color: var(--accent-gold);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0;
  font-family: var(--font-sans);
}

.info-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 22px;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.info-card .icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. Bülten & footer
   -------------------------------------------------------------------------- */
.statement-box {
  border: 1px solid var(--border-color);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 78px;
  position: relative;
  overflow: hidden;
}

.statement-box::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--accent-badge);
  line-height: 1;
  pointer-events: none;
}

.statement-box h2,
.statement-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}

.statement-box > p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 26px;
}

.sub-form {
  display: inline-flex;
  gap: 10px;
  max-width: 480px;
  width: 100%;
}

.sub-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  min-width: 0;
}

.sub-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.sub-btn {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--accent-gold);
  color: var(--bg-body);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}

[data-theme='light'] .sub-btn {
  color: #fff;
}

.sub-btn:hover {
  filter: brightness(1.12);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-msg {
  display: none;
  color: var(--accent-gold);
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-msg.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 44px 0 34px;
  font-size: 0.86rem;
  color: var(--text-muted);
  background: var(--bg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-about p {
  max-width: 340px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 22px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   13. 404
   -------------------------------------------------------------------------- */
.error-page {
  text-align: center;
  padding: 110px 0 130px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   14. Duyarlı düzen
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .review-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .review-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .lead-card {
    grid-template-columns: 1fr;
  }
  .lead-img-wrap {
    min-height: 320px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .toolbar {
    grid-template-columns: 1fr;
  }
  .comparison-section {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    margin: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 0.95rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-btn {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .lead-content {
    padding: 28px;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .score-row {
    grid-template-columns: 120px 1fr 42px;
    font-size: 0.82rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .sub-form {
    flex-direction: column;
  }
  .statement-box {
    padding: 34px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .review-sidebar,
  .ambient-glow,
  .statement-box {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
