/* ================================================================
   elektrikliler.com.tr — Premium Design System v2
   ================================================================ */

/* ── Değişkenler ─────────────────────────────────────────────── */
:root {
  --primary:        #2563eb;
  --primary-light:  #3b82f6;
  --primary-dark:   #1d4ed8;
  --primary-glow:   rgba(37,99,235,.18);
  --cyan:           #06b6d4;
  --green:          #10b981;
  --amber:          #f59e0b;
  --red:            #ef4444;

  --dark:    #020617;
  --dark-2:  #0f172a;
  --dark-3:  #1e293b;
  --dark-4:  #334155;

  --s50:  #f8fafc; --s100: #f1f5f9; --s200: #e2e8f0;
  --s300: #cbd5e1; --s400: #94a3b8; --s500: #64748b;
  --s600: #475569; --s700: #334155;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09), 0 3px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.06);
  --shadow-primary: 0 8px 28px rgba(37,99,235,.28);
  --shadow-card-hover: 0 12px 32px rgba(37,99,235,.14), 0 4px 8px rgba(0,0,0,.06);

  --navbar-h: 68px;
  --t: 200ms cubic-bezier(.4,0,.2,1);
  --t-slow: 350ms cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--dark-3);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a   { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary-dark); }

/* ── Navbar ──────────────────────────────────────────────────── */
.site-navbar {
  height: var(--navbar-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,.8);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow var(--t);
}
.site-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark-2) !important;
  display: flex;
  align-items: center;
  gap: .35rem;
  letter-spacing: -.02em;
}
.navbar-brand .brand-bolt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: linear-gradient(135deg,var(--primary),var(--cyan));
  border-radius: 8px;
  font-size: 1rem;
}

.nav-link {
  color: var(--s600) !important;
  font-weight: 500;
  font-size: .875rem;
  padding: .4rem .7rem !important;
  border-radius: 8px;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary) !important; background: #eff6ff; }
.nav-link.active { color: var(--primary) !important; background: #eff6ff; font-weight: 600; }

/* Navbar arama */
.navbar-search .form-control {
  border-radius: 22px 0 0 22px;
  border: 1.5px solid var(--s200);
  border-right: none;
  font-size: .85rem;
  height: 38px;
  width: 190px;
  transition: width var(--t), border-color var(--t);
  background: var(--s50);
}
.navbar-search .form-control:focus {
  width: 250px;
  box-shadow: none;
  border-color: var(--primary);
  background: #fff;
}
.navbar-search .btn {
  border-radius: 0 22px 22px 0;
  height: 38px;
  border: 1.5px solid var(--s200);
  border-left: none;
  background: var(--s50);
  color: var(--s400);
  transition: all var(--t);
}
.navbar-search .btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Arama autocomplete */
#search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--s200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  overflow: hidden;
  min-width: 340px;
}
.search-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  transition: background var(--t);
  cursor: pointer;
  text-decoration: none;
  color: var(--dark-3);
}
.search-item:hover { background: var(--s50); color: var(--dark-3); }
.search-item img {
  width: 42px; height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--s100);
  flex-shrink: 0;
}
.search-item .si-label {
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .4rem;
  border-radius: 4px;
  background: #eff6ff;
  color: var(--primary);
  flex-shrink: 0;
}
.search-item .si-title { font-size: .875rem; font-weight: 500; line-height: 1.3; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--dark-2);
  color: #fff;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(37,99,235,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 100% 80%, rgba(6,182,212,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at -5% 50%, rgba(16,185,129,.1) 0%, transparent 60%);
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd;
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #60a5fa, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.7;
}

/* Hero search box */
.hero-search {
  margin-top: 2rem;
  position: relative;
  max-width: 540px;
}
.hero-search-inner {
  display: flex;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  overflow: hidden;
}
.hero-search .form-control {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  height: 52px;
  padding: 0 1.25rem;
}
.hero-search .form-control::placeholder { color: rgba(255,255,255,.45); }
.hero-search .form-control:focus { box-shadow: none; outline: none; }
.hero-search .btn-hero-search {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background var(--t);
  white-space: nowrap;
}
.hero-search .btn-hero-search:hover { background: var(--primary-dark); }

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.hero-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: .25rem .7rem;
  border-radius: 20px;
  transition: all var(--t);
}
.hero-tag:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num   { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-unit  { font-size: 1rem; font-weight: 600; color: var(--cyan); }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .2rem; letter-spacing: .04em; text-transform: uppercase; }

/* Hero image/right side */
.hero-image-wrap {
  position: relative;
}
.hero-car-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(37,99,235,.4), transparent 70%);
  filter: blur(8px);
}

/* ── Sayfa Hero (İç Sayfalar) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.15), transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.02em;
}
.page-hero .breadcrumb { margin-bottom: .5rem; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.55); font-size: .83rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.page-hero p { color: rgba(255,255,255,.7); margin: .35rem 0 0; font-size: .9rem; }

/* ── Bölüm Başlıkları ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-2);
  margin: 0;
  letter-spacing: -.02em;
}
.section-title .accent { color: var(--primary); }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.section-link {
  font-size: .85rem;
  color: var(--s500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--t);
}
.section-link:hover { color: var(--primary); }

/* ── Kartlar ─────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--s200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(37,99,235,.18);
}

/* Vehicle card */
.vehicle-card .card-img-top {
  height: 185px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  object-fit: contain;
  padding: 1rem 1.5rem;
  transition: transform var(--t-slow);
}
.vehicle-card:hover .card-img-top { transform: scale(1.04); }
.vehicle-card .card-body { padding: .875rem; }
.vehicle-card .brand-name { font-size: .75rem; color: var(--s500); font-weight: 500; letter-spacing: .02em; text-transform: uppercase; }
.vehicle-card .model-name { font-weight: 700; font-size: .95rem; color: var(--dark-2); line-height: 1.3; margin: .15rem 0 .5rem; }
.vehicle-card .v-specs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.v-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 6px;
  background: var(--s50);
  color: var(--s600);
  border: 1px solid var(--s100);
}
.v-spec-badge.range { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.v-spec-badge.price { background: #eff6ff; color: var(--primary); border-color: #bfdbfe; }

/* Blog card */
.blog-card .card-img-top { height: 200px; }
.blog-card .category-pill {
  font-size: .7rem;
  font-weight: 600;
  background: #eff6ff;
  color: var(--primary);
  padding: .2rem .55rem;
  border-radius: 6px;
}
.blog-card .post-meta { font-size: .78rem; color: var(--s500); }
.blog-card .post-title { font-size: .95rem; font-weight: 600; color: var(--dark-2); line-height: 1.4; }

/* Campaign card */
.campaign-card { position: relative; }
.campaign-card .discount-badge {
  position: absolute;
  top: .875rem; right: .875rem;
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  border-radius: 50px;
  padding: .25rem .7rem;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.campaign-card .provider-badge {
  font-size: .72rem;
  font-weight: 600;
  background: #f0fdf4;
  color: var(--green);
  border: 1px solid #86efac;
  border-radius: 6px;
  padding: .2rem .5rem;
}

/* ── Butonlar ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  transition: all var(--t);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-primary);
  transform: translateY(-1px);
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all var(--t);
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-1px);
}
.btn-gradient {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all var(--t);
}
.btn-gradient:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
  color: #fff;
}

/* ── Marka Logoları ──────────────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .875rem;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem .75rem;
  border: 1.5px solid var(--s200);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: var(--dark-3);
  font-size: .8rem;
  font-weight: 600;
  transition: all var(--t);
}
.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(37,99,235,.1);
  transform: translateY(-2px);
}
.brand-item .brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-item .brand-count { font-size: .68rem; color: var(--s400); font-weight: 400; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar-widget {
  background: #fff;
  border: 1.5px solid var(--s200);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-2);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--s200);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.widget-title i { color: var(--primary); }

/* AdSense placeholder */
.adsense-widget {
  background: var(--s50);
  border: 1.5px dashed var(--s300);
  border-radius: var(--radius);
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s400);
  font-size: .78rem;
}

/* ── Filtre Paneli ────────────────────────────────────────────── */
.filter-bar {
  background: #fff;
  border: 1.5px solid var(--s200);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.filter-bar label { font-size: .8rem; font-weight: 600; color: var(--s600); }
.filter-bar .form-select, .filter-bar .form-control { font-size: .875rem; border-radius: 8px; }

/* ── Araç Detay ──────────────────────────────────────────────── */
.spec-table td { padding: .65rem .875rem; font-size: .9rem; }
.spec-table tr:nth-child(even) { background: var(--s50); }
.spec-table .spec-key   { font-weight: 600; color: var(--dark-2); width: 45%; }
.spec-table .spec-value { color: var(--s600); }

.charge-bar  { height: 8px; border-radius: 4px; background: var(--s100); overflow: hidden; }
.charge-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transition: width 1s ease;
}

.gallery-main { border-radius: var(--radius-lg); overflow: hidden; background: var(--s50); }
.gallery-thumb {
  width: 76px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  opacity: .75;
}
.gallery-thumb:hover { opacity: 1; border-color: var(--s300); }
.gallery-thumb.active { border-color: var(--primary); opacity: 1; }

/* Highlight cards on detail */
.highlight-card {
  background: var(--s50);
  border: 1.5px solid var(--s200);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all var(--t);
}
.highlight-card:hover { border-color: rgba(37,99,235,.2); box-shadow: var(--shadow); }
.highlight-card .hc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto .5rem;
}
.highlight-card .hc-val { font-size: 1.25rem; font-weight: 800; color: var(--dark-2); }
.highlight-card .hc-label { font-size: .72rem; color: var(--s500); }

/* ── Hesaplayıcı ─────────────────────────────────────────────── */
.calc-card {
  background: #fff;
  border: 1.5px solid var(--s200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--t);
}
.calc-card:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.2); }

.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-primary);
}
.calc-result-num   { font-size: 3rem; font-weight: 800; line-height: 1; }
.calc-result-unit  { font-size: 1.1rem; font-weight: 600; opacity: .85; margin-left: .25rem; }
.calc-result-label { font-size: .875rem; opacity: .8; margin-top: .35rem; }

.calc-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--s200);
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
  transition: box-shadow var(--t);
}
.range-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(37,99,235,.25);
}

/* ── Compare Table ────────────────────────────────────────────── */
.compare-table thead th {
  background: var(--dark-2);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  padding: .875rem;
}
.compare-table td { text-align: center; vertical-align: middle; padding: .6rem .875rem; }
.compare-table .row-label {
  text-align: left;
  font-weight: 600;
  font-size: .83rem;
  background: var(--s50);
  color: var(--dark-2);
  border-right: 2px solid var(--s200);
}
.compare-best  { color: var(--green); font-weight: 700; }
.compare-worst { color: var(--red); }

/* ── Blog İçerik ─────────────────────────────────────────────── */
.post-content { font-size: 1.05rem; line-height: 1.85; color: var(--dark-3); }
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2.25rem 0 .875rem; color: var(--dark-2); letter-spacing: -.015em; }
.post-content h3 { font-size: 1.2rem; font-weight: 600; margin: 1.75rem 0 .625rem; color: var(--dark-2); }
.post-content p  { margin-bottom: 1.35rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow-md); width: 100%; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.75rem 0;
  color: #1e40af;
  font-style: italic;
  font-size: 1.05rem;
}
.post-content code {
  background: #f1f5f9;
  padding: .2rem .45rem;
  border-radius: 5px;
  font-size: .88em;
  color: #be185d;
  font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
}
.post-content pre {
  background: var(--dark-2);
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: .88rem;
}
.post-content a { font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* ── Yorumlar ────────────────────────────────────────────────── */
.comment-item {
  padding: 1.125rem;
  border-radius: var(--radius);
  background: var(--s50);
  border: 1px solid var(--s200);
}
.comment-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.comment-reply {
  margin-left: 2.5rem;
  border-left: 2px solid var(--s200);
  padding-left: 1rem;
}

/* ── Tags & Pills ────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--s100);
  color: var(--s600);
  font-size: .78rem;
  font-weight: 500;
  padding: .25rem .65rem;
  border-radius: 20px;
  transition: all var(--t);
  border: 1px solid var(--s200);
}
.tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }

.provider-badge {
  font-size: .75rem;
  font-weight: 600;
  background: #f0fdf4;
  color: var(--green);
  border: 1px solid #86efac;
  border-radius: 6px;
  padding: .2rem .55rem;
}

/* ── Pagination ──────────────────────────────────────────────── */
.page-link {
  color: var(--primary);
  border-color: var(--s200);
  font-size: .875rem;
  border-radius: 8px !important;
  margin: 0 2px;
  transition: all var(--t);
}
.page-link:hover { background: #eff6ff; color: var(--primary); border-color: rgba(37,99,235,.25); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
  margin-top: 5rem;
}
.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
}
.footer-brand .fb-bolt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 7px;
  font-size: .9rem;
}
.footer-desc { font-size: .875rem; line-height: 1.65; max-width: 280px; }
.footer-title {
  font-weight: 600;
  color: #fff;
  font-size: .85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .865rem;
  padding: .25rem 0;
  transition: color var(--t), transform var(--t);
}
.footer-link:hover { color: #fff; transform: translateX(3px); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2.5rem 0 0; }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all var(--t);
  font-size: .9rem;
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,99,235,.35);
}

/* ── Dark CTA Bant ───────────────────────────────────────────── */
.cta-dark {
  background: linear-gradient(135deg, var(--dark-2) 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(6,182,212,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,.1) 0%, transparent 60%);
}
.cta-dark .container-xl { position: relative; z-index: 2; }

/* ── Skeleton / Loading ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--s100) 25%, var(--s200) 50%, var(--s100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 6px;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Toast ───────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; }
.toast-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--dark-2);
  color: #fff;
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .875rem;
  font-weight: 500;
  margin-top: .5rem;
  animation: toast-in .3s ease;
  min-width: 260px;
}
.toast-item.success { border-left: 3px solid var(--green); }
.toast-item.warning { border-left: 3px solid var(--amber); }
.toast-item.error   { border-left: 3px solid var(--red); }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Utility ─────────────────────────────────────────────────── */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-search { display: none; }
}
@media (max-width: 767px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero-title { font-size: 1.85rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); gap: .6rem; }
  .section-title { font-size: 1.25rem; }
  .site-footer { padding-top: 3rem; }
}
