/* ============================================
   sporrehberi.com — Ana Stil Dosyası
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

/* ---- CSS Değişkenleri ---- */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --orange: #f59e0b;
  --orange-hover: #d97706;
  --border: #e8e4da;
  --bg: #f5f5f2;
  --white: #ffffff;
  --text: #1a1a18;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --green: #059669;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
}
.logo-spor { color: var(--navy); }
.logo-rehberi { color: var(--orange); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--bg); color: var(--navy); }
.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-item.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  transition: background var(--transition);
}
.dropdown a:hover { background: var(--bg); color: var(--navy); }
.dropdown a::before {
  content: '›';
  color: var(--orange);
  font-weight: 700;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: background var(--transition), color var(--transition);
}
.btn-icon:hover { background: var(--bg); color: var(--navy); }

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.active { opacity: 1; pointer-events: auto; }
.search-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: 90%;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--navy); }
.search-hint { margin-top: 8px; font-size: 0.8rem; color: var(--text-muted); }

/* Mobile Menu */
.hamburger { display: none; }
.mobile-sidebar {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 400;
  padding: 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-sidebar.active { right: 0; }
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 399;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.active { opacity: 1; pointer-events: auto; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.sidebar-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { background: var(--bg); color: var(--navy); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--bg); border-color: var(--navy); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 52vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.pill:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.section-title span { color: var(--orange); }

/* ============================================
   KATEGORİ KARTLARI
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.category-card:hover .cat-icon { background: rgba(26,39,68,0.08); }
.cat-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cat-info p { font-size: 0.8rem; color: var(--text-muted); }
.cat-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: transform var(--transition), color var(--transition);
}
.category-card:hover .cat-arrow { transform: translateX(4px); color: var(--orange); }

/* ============================================
   BLOG KARTLARI
   ============================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-cat-badge {
  display: inline-block;
  background: rgba(26,39,68,0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--navy); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
}
.post-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 72px 0;
}
.newsletter-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 1.75rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-disclaimer { margin-top: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-wrap .logo-spor { color: var(--white); }
.footer-logo-wrap .logo-icon { background: rgba(255,255,255,0.1); }
.footer-desc { margin-top: 12px; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before { content: '›'; color: var(--orange); font-weight: 700; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   BLOG LİSTESİ SAYFASI
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text-light); }

.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.posts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   BLOG YAZISI SAYFASI
   ============================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.article-header { margin-bottom: 32px; }
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

/* Quick Summary Box */
.quick-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.quick-summary h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 12px;
}
.quick-summary ul { display: flex; flex-direction: column; gap: 6px; }
.quick-summary li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
}
.quick-summary li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Affiliate Product Box */
.affiliate-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.affiliate-box:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.affiliate-box.editor-pick { border-color: var(--orange); }
.editor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.product-row {
  display: flex;
  gap: 20px;
  align-items: center;
}
.product-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.product-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.stars { display: flex; align-items: center; gap: 4px; color: var(--orange); font-size: 0.9rem; margin-bottom: 8px; }
.stars span { color: var(--text-muted); font-size: 0.8rem; }
.product-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.feature-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.775rem;
  color: var(--text-muted);
}
.affiliate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.affiliate-btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.affiliate-disclaimer { margin-top: 10px; font-size: 0.75rem; color: var(--text-light); }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table .hb-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table .hb-btn:hover { background: var(--orange-hover); }
.badge-best { background: var(--green); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

/* Article Content Styles */
.article-content { font-size: 0.975rem; line-height: 1.8; }
.article-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-top: 12px;
  border-top: 2px solid var(--border);
}
.article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 24px 0 12px; }
.article-content p { margin-bottom: 16px; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question .faq-arrow { transition: transform var(--transition); color: var(--orange); font-size: 1rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* Related Posts */
.related-posts { background: var(--bg); border-radius: var(--radius); padding: 28px; margin-top: 40px; }
.related-posts h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.related-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.related-card-body { padding: 14px; }
.related-card h3 { font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-title {
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.toc-list { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.toc-list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.toc-list a:hover, .toc-list a.active {
  background: rgba(26,39,68,0.06);
  color: var(--navy);
  font-weight: 600;
}
.toc-list a span { flex-shrink: 0; font-weight: 700; color: var(--orange); font-size: 0.8rem; width: 16px; }

/* Sidebar Featured Product */
.sidebar-product {
  background: #fef9ec;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-product-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.sidebar-product-img {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.sidebar-product h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.sidebar-product .stars { margin-bottom: 14px; }
.sidebar-product .affiliate-btn { width: 100%; justify-content: center; }

/* Sidebar Newsletter */
.sidebar-newsletter { padding: 20px; }
.sidebar-newsletter h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sidebar-newsletter p { font-size: 0.825rem; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-newsletter input {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 8px;
  transition: border-color var(--transition);
}
.sidebar-newsletter input:focus { border-color: var(--navy); }
.sidebar-newsletter .btn { width: 100%; justify-content: center; padding: 10px; }

/* Sticky Sidebar */
.sticky-sidebar { position: sticky; top: 84px; }

/* ============================================
   KATEGORİ SAYFASI
   ============================================ */
.category-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 56px 0;
}
.category-page-header .cat-hero-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.category-page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.category-page-header p { color: rgba(255,255,255,0.7); max-width: 480px; }

/* ============================================
   HAKKIMIZDA SAYFASI
   ============================================ */
.about-hero { background: var(--navy); padding: 72px 0; text-align: center; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.affiliate-disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}
.affiliate-disclaimer-box h3 { font-size: 1rem; font-weight: 700; color: #92400e; margin-bottom: 8px; }
.affiliate-disclaimer-box p { font-size: 0.875rem; color: #78350f; line-height: 1.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid-4 { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .product-row { flex-direction: column; align-items: flex-start; }
  .comparison-table { font-size: 0.8rem; display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .posts-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
