/* ============================================================
   SIFIRARAC.COM - STYLESHEET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #022c22;
  --primary-dark: #011611;
  --primary-light: #ecfdf5;
  --secondary: #064e3b;
  --accent: #10b981;
  --text: #1c1917;
  --text-light: #57534e;
  --text-muted: #94a3b8;
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --transition: .18s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.hidden { display: none !important; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title { font-size: 26px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.section-subtitle { color: var(--text-light); margin-bottom: 36px; }

/* ── IMAGE UPDATING ANIMATION ── */
.img-updating-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadePulse 2s ease-in-out infinite;
  margin-bottom: 10px;
  text-align: center;
}
@keyframes fadePulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

/* ── BUTTONS ── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border: none; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(17,24,39,.2); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15,23,42,.2); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(17,24,39,.15); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; pointer-events: none; }

/* ── RIPPLE EFFECT ── */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  animation: ripple-anim 0.6s cubic-bezier(0.4, 0, 0.2, 1); background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.btn-outline .ripple, .btn-ghost .ripple { background: rgba(2, 44, 34, 0.25); }
@keyframes ripple-anim { to { transform: scale(3.5); opacity: 0; } }

/* ── HEADER / NAV ── */
#header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-top {
  background: var(--primary); color: #fff;
  font-size: 13px; padding: 6px 0;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center;
}
.header-top a { color: rgba(255,255,255,.85); }
.header-top a:hover { color: #fff; }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo {
  display: flex; align-items: center; gap: 11px;
  font-size: 21px; font-weight: 900; color: var(--text);
  letter-spacing: -0.8px; text-decoration: none;
}
.logo span { color: var(--text-muted); font-weight: 400; font-size: 17px; letter-spacing: 0; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--text);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-light);
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(17,24,39,.06); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border: none; background: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: white; border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: 16px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 15px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 70px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}
.hero h1 span { color: #f4a261; }
.hero p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Quote Search Box */
.search-box {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3); max-width: 800px; margin: 0 auto;
}
.search-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-light); }
.form-control {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
  background: white; transition: var(--transition); width: 100%;
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(211,47,47,.1); }
.form-control::placeholder { color: var(--text-muted); }

/* ── STATS ── */
.stats-bar { background: var(--primary); color: white; padding: 24px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center; }
.stat-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}
.stat-number { font-size: 28px; font-weight: 800; display: block; }
.stat-label { font-size: 12px; opacity: .8; margin-top: 2px; }

/* ── BRANDS ── */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.brand-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px 12px; text-align: center; cursor: pointer;
  transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.brand-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-logo {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
  overflow: hidden; flex-shrink: 0;
}
.brand-logo svg { width: 72%; height: 72%; }
.brand-name { font-size: 13px; font-weight: 600; }
.brand-country { font-size: 11px; color: var(--text-muted); }

/* ── PRICE LIST TABLE ── */
.price-list-table { background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.price-list-header {
  display: grid; grid-template-columns: 36px 1fr 100px 80px 130px 130px 28px;
  padding: 10px 20px; background: var(--bg); border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px;
}
.price-list-row {
  display: grid; grid-template-columns: 36px 1fr 100px 80px 130px 130px 28px;
  padding: 11px 20px; align-items: center; cursor: pointer;
  border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.price-list-row:last-child { border-bottom: none; }
.price-list-row:hover { background: var(--bg); }
.price-list-rank { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.price-list-car { display: flex; align-items: center; gap: 10px; }
.price-list-logo {
  width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.price-list-name { font-size: 14px; font-weight: 600; color: var(--text); }
.price-list-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.price-list-tag { font-size: 12px; color: var(--text-light); }
.price-list-price { font-size: 15px; font-weight: 800; color: var(--text); text-align: right; transition: color 0.3s ease, text-shadow 0.3s ease; }
.price-list-arrow { font-size: 13px; color: var(--text-muted); text-align: right; transition: var(--transition); }
.price-list-row:hover .price-list-price { color: #10b981; text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); }
.price-list-row:hover .price-list-arrow { color: var(--primary); transform: translateX(3px); }
.spark-wrap { display: flex; align-items: center; gap: 6px; }
.spark-badge { font-size: 11px; font-weight: 700; white-space: nowrap; }
@media (max-width: 900px) {
  .price-list-header { grid-template-columns: 28px 1fr 110px 28px; }
  .price-list-header span:nth-child(3), .price-list-header span:nth-child(4), .price-list-header span:nth-child(5) { display: none; }
  .price-list-row { grid-template-columns: 28px 1fr 110px 28px; }
  .price-list-row > span:nth-child(3), .price-list-row > span:nth-child(4), .price-list-row > span:nth-child(5) { display: none; }
}

/* ── CAR CARDS ── */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.car-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
  border: 1.5px solid transparent; position: relative;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(211,47,47,.2); }
.car-image {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.car-img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.4s ease;
}
.car-card:hover .car-img-placeholder { transform: scale(1.08); }
.car-svg { font-size: 64px; opacity: .15; filter: brightness(0); }
.car-img-label { font-size: 22px; font-weight: 800; opacity: .6; color: white; letter-spacing: 1px; }
.car-img-sub { font-size: 13px; opacity: .5; color: white; }
.car-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
}
.car-badge.electric { background: #2e7d32; }
.car-badge.hybrid { background: #1565c0; }
.compare-check {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition); z-index: 2;
}
.compare-check.active { background: var(--primary); border-color: var(--primary); color: white; }
.car-body { padding: 16px; }
.car-brand-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-muted); margin-bottom: 4px;
}
.brand-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.car-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.car-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.car-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-tag {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-muted); background: var(--tag-bg, var(--bg));
  padding: 4px 8px; border-radius: 6px; font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: default;
}
.spec-tag:hover {
  transform: translateY(-2px); background: rgba(16, 185, 129, 0.1); color: #047857;
}
.car-price { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 14px; transition: color 0.3s ease, text-shadow 0.3s ease; }
.car-card:hover .car-price { color: #10b981; text-shadow: 0 2px 12px rgba(16, 185, 129, 0.4); }
.car-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.car-actions { display: flex; gap: 8px; }
.car-actions .btn { flex: 1; font-size: 13px; }
.car-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; margin-bottom: 8px; }
.stars { color: #f59e0b; font-size: 14px; }
.rating-count { color: var(--text-muted); font-size: 12px; }

/* ── FILTER SIDEBAR ── */
.cars-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.filter-panel {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  border: 1.5px solid var(--border); position: sticky; top: 88px;
}
.filter-panel h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.filter-group { margin-bottom: 20px; }
.filter-group label { font-size: 13px; font-weight: 600; color: var(--text-light); display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.filter-count { font-size: 12px; color: var(--text-muted); font-weight: 400; background: var(--bg); padding: 2px 6px; border-radius: 10px; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ── TABS ── */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; background: white; padding: 6px; border-radius: var(--radius); box-shadow: var(--shadow); }
.tab { padding: 9px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; border: none; background: transparent; color: var(--text-light); transition: var(--transition); cursor: pointer; }
.tab.active { background: var(--primary); color: white; }
.tab:hover:not(.active) { background: var(--bg); }

/* ── CAR DETAIL ── */
.car-detail-hero { background: white; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow); }
.car-detail-image { height: 320px; display: flex; align-items: center; justify-content: center; }
.car-detail-header { padding: 24px; border-top: 1px solid var(--border); }
.car-detail-title { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.car-detail-sub { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.car-detail-price { font-size: 28px; font-weight: 800; color: var(--primary); }
.car-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.specs-card { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.specs-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.specs-table { display: grid; gap: 2px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: var(--radius-sm); }
.spec-row:nth-child(even) { background: var(--bg); }
.spec-label { font-size: 13px; color: var(--text-light); }
.spec-value { font-size: 14px; font-weight: 600; }
.variants-list { display: flex; flex-direction: column; gap: 10px; }
.variant-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
}
.variant-item:hover { border-color: var(--primary); background: rgba(211,47,47,.02); }
.variant-item.active { border-color: var(--primary); background: rgba(211,47,47,.05); }
.variant-name { font-weight: 600; font-size: 14px; }
.variant-price { font-weight: 800; color: var(--primary); }
.colors-list { display: flex; flex-wrap: wrap; gap: 10px; }
.color-option {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer; transition: var(--transition);
}
.color-dot {
  width: 28px; height: 28px; border-radius: 50%; border: 3px solid transparent;
  box-shadow: 0 0 0 1px var(--border);
}
.color-option.active .color-dot { border-color: var(--primary); }
.color-name { font-size: 11px; color: var(--text-muted); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.feature-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg); border-radius: var(--radius-sm); font-size: 13px; }
.feature-icon { color: #2e7d32; font-size: 15px; }

/* ── SIDEBAR QUOTE CARD ── */
.car-detail-sidebar { position: sticky; top: 88px; align-self: start; }
.quote-card { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.quote-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.quote-card .price-display { font-size: 26px; font-weight: 800; color: var(--primary); margin: 12px 0; }
.quote-card .price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.action-buttons { display: flex; flex-direction: column; gap: 10px; }
.action-buttons .btn { justify-content: center; }
.quote-benefits { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.benefit { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.benefit-icon { color: #2e7d32; font-size: 16px; flex-shrink: 0; }

/* ── COMPARE ── */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: #1a1a2e; color: white; padding: 12px 0;
  transform: translateY(100%); transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.compare-bar.visible { transform: translateY(0); }
.compare-bar-inner { display: flex; align-items: center; gap: 16px; justify-content: space-between; }
.compare-slots { display: flex; gap: 12px; }
.compare-slot {
  width: 120px; height: 44px; border: 2px dashed rgba(255,255,255,.3);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.5); position: relative;
}
.compare-slot.filled { border-style: solid; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); flex-direction: column; font-size: 11px; color: white; text-align: center; }
.slot-remove { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 10px; }
.compare-page { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-weight: 600; font-size: 13px; background: var(--bg); color: var(--text-light); width: 180px; }
.compare-table td { font-size: 14px; }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-car-col { text-align: center; padding: 20px !important; }
.compare-img-wrap { width: 140px; height: 90px; margin: 0 auto 12px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.compare-header-row { background: var(--bg); }
.diff-highlight { background: rgba(245,158,11,.06); font-weight: 600; }
.compare-remove { padding: 6px 12px !important; }

/* ── REVIEWS ── */
.review-card { background: white; border-radius: var(--radius); padding: 20px; border: 1.5px solid var(--border); margin-bottom: 16px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.review-car { font-size: 12px; color: var(--text-muted); margin-top: 8px; font-style: italic; }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.news-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; }
.news-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; opacity: .4; transition: transform 0.4s ease; }
.news-card:hover .news-img-placeholder { transform: scale(1.1); }
.news-category { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.news-body { padding: 18px; }
.news-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.news-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-summary { font-size: 14px; color: var(--text-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.read-time { font-size: 12px; color: var(--text-muted); }
.read-more { font-size: 13px; font-weight: 600; color: var(--primary); }

/* News Detail */
.news-detail { max-width: 800px; margin: 0 auto; }
.news-detail-header { margin-bottom: 32px; }
.news-detail-category { display: inline-block; background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.news-detail-title { font-size: 32px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.news-detail-meta { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 13px; }
.news-detail-img { width: 100%; height: 360px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; }
.news-detail-content { font-size: 16px; line-height: 1.85; color: var(--text-light); white-space: pre-wrap; }

/* ── MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg); width: 100%;
  max-width: 500px; padding: 32px; position: relative;
  transform: scale(.95) translateY(16px); transition: transform .2s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; color: var(--text-light);
}
.modal-close:hover { background: var(--border); }
.modal-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.modal-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
.auth-tab { padding: 10px 20px; font-size: 15px; font-weight: 600; border: none; background: none; cursor: pointer; color: var(--text-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.form-group + .form-group { margin-top: 16px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.quote-success { text-align: center; padding: 20px 0; }
.quote-success .success-icon { font-size: 64px; margin-bottom: 16px; }
.quote-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.quote-success p { color: var(--text-muted); font-size: 14px; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); font-weight: 600; }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ── PROFILE ── */
.profile-grid { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }
.profile-sidebar { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); height: fit-content; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: white; }
.profile-name { font-size: 18px; font-weight: 700; text-align: center; }
.profile-email { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.profile-menu { display: flex; flex-direction: column; gap: 4px; }
.profile-menu-item { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.profile-menu-item:hover, .profile-menu-item.active { background: rgba(211,47,47,.06); color: var(--primary); }
.profile-content { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.profile-section-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.empty-state { text-align: center; padding: 48px 20px; }
.empty-state-icon { font-size: 56px; margin-bottom: 16px; opacity: .4; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 14px; }
.quote-item { display: flex; justify-content: space-between; align-items: center; padding: 16px; border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; }
.quote-info h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.quote-info p { font-size: 13px; color: var(--text-muted); }
.quote-status { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.quote-status.pending { background: #fff8e1; color: #e65100; }
.quote-status.delivered { background: #e8f5e9; color: #2e7d32; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #01120e 0%, #022c22 100%); color: rgba(255,255,255,.9); margin-top: 60px; border-top: 4px solid #10b981; position: relative; box-shadow: 0 -10px 30px rgba(2,44,34,0.15);
}
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo span { color: rgba(255,255,255,.7); }
.footer-logo { cursor: pointer; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text { font-size: 20px; }
.footer-logo-icon { flex-shrink: 0; }
.logo-icon-sm { width: 36px; height: 36px; }
.footer-social { margin-top: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: #10b981; padding-left: 6px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.social-btn:hover { background: var(--primary); color: white; }

/* ── ALERT / TOAST ── */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: white; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; max-width: 340px; border-left: 4px solid;
  animation: slideIn .3s ease;
}
.toast.success { border-color: #2e7d32; }
.toast.error { border-color: var(--primary); }
.toast.info { border-color: var(--secondary); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(120%); opacity: 0; } }

/* ── LOADER ── */
.page-loader { min-height: 300px; display: flex; align-items: center; justify-content: center; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOGG BANNER (Featured) ── */
.featured-banner {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border-radius: var(--radius-lg); padding: 40px; color: white;
  margin-bottom: 32px; display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
}
.featured-banner h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.featured-banner p { font-size: 15px; opacity: .85; margin-bottom: 20px; }
.featured-banner .btn { background: white; color: var(--primary); }
.featured-banner .btn:hover { background: rgba(255,255,255,.9); }
.banner-badge { font-size: 80px; opacity: .2; }

/* ── RESULTS INFO ── */
.results-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-count { font-size: 14px; color: var(--text-muted); }
.sort-select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text); background: white; cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--primary); }

/* ── RANGE INPUT ── */
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--border); border-radius: 2px; margin: 8px 0; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── BACK BUTTON ── */
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 20px; cursor: pointer; transition: var(--transition); }
.back-btn:hover { color: var(--primary); transform: translateX(-4px); }

/* ── NO RESULTS ── */
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-results-icon { font-size: 56px; margin-bottom: 16px; }
.no-results h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }

/* ── PROMOTIONAL BADGE ── */
.promo-badge { background: #fff8e1; border: 1.5px solid #ffd54f; border-radius: var(--radius); padding: 12px 16px; font-size: 14px; color: #e65100; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .car-detail-layout { grid-template-columns: 1fr; }
  .car-detail-sidebar { position: static; }
}

@media (max-width: 900px) {
  .cars-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .compare-bar-inner { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .search-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compare-slots { flex-wrap: wrap; }
  .header-top .container { flex-direction: column; gap: 4px; }
  .section { padding: 40px 0; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 28px; }
  .search-box { padding: 20px; }
  .featured-banner { grid-template-columns: 1fr; }
  .banner-badge { display: none; }
}

/* ── CATEGORY TABS ── */
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 28px; }
.category-tabs::-webkit-scrollbar { height: 3px; }
.category-tabs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.cat-tab { padding: 8px 18px; border-radius: 20px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: var(--transition); background: white; border: 1.5px solid var(--border); color: var(--text-light); }
.cat-tab.active, .cat-tab:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── NOTIFICATIONS ── */
.notification-strip { background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: #2e7d32; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }

/* ── ACCORDION ── */
.accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.accordion-header { padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; transition: var(--transition); }
.accordion-header:hover { background: var(--bg); }
.accordion-header.open { background: rgba(211,47,47,.03); color: var(--primary); }
.accordion-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.accordion-body.open { max-height: 400px; padding: 0 20px 16px; }

/* ── CHIPS ── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 5px 12px; border-radius: 20px; border: 1.5px solid var(--border); font-size: 13px; cursor: pointer; transition: var(--transition); background: white; }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ── CHECKBOX ── */
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.checkbox-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }

/* ── PAGE TRANSITION ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.page-enter { animation: fadeInUp .3s ease forwards; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 80px; right: 20px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, #065f46 0%, #022c22 51%, #047857 100%); background-size: 200% auto; color: white; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s, background-position 0.3s ease, box-shadow 0.2s ease;
  transform: translateY(8px);
}
#backToTop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#backToTop:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(2, 44, 34, 0.35); }

/* ── COOKIE CONSENT ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #1a1a2e; color: white; padding: 16px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(0); transition: transform .3s ease;
}
#cookieBanner.hidden { transform: translateY(100%); }
.cookie-inner { display: flex; align-items: center; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.cookie-text { font-size: 14px; color: rgba(255,255,255,.85); flex: 1; }
.cookie-text a { color: #f4a261; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── HEADER SEARCH ── */
.header-search { position: relative; }
.header-search input {
  padding: 10px 40px 10px 18px; border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 14px; width: 280px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: var(--bg);
}
.header-search input:focus { outline: none; border-color: #022c22; width: 360px; background: white; box-shadow: 0 0 0 4px rgba(2, 44, 34, 0.15); }
.header-search-icon { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); font-size: 15px; color: var(--text-muted); pointer-events: none; }
.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border); z-index: 200; overflow: hidden;
}
.search-result-item { padding: 10px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: var(--transition); font-size: 14px; }
.search-result-item:hover { background: var(--bg); }
.search-result-item .brand-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── SHARE ── */
.share-bar { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.share-btn { padding: 7px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1.5px solid var(--border); background: white; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.share-btn:hover { border-color: var(--primary); color: var(--primary); }
.share-btn.copied { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; }

/* ── RECENTLY VIEWED ── */
.recently-viewed { background: var(--bg); border-radius: var(--radius-lg); padding: 20px; }
.recently-viewed h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.rv-list { display: flex; flex-direction: column; gap: 10px; }
.rv-item { display: flex; align-items: center; gap: 12px; padding: 10px; background: white; border-radius: var(--radius-sm); border: 1.5px solid var(--border); cursor: pointer; transition: var(--transition); }
.rv-item:hover { border-color: var(--primary); }
.rv-thumb { width: 56px; height: 40px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 24px; opacity: .6; flex-shrink: 0; }
.rv-info { flex: 1; }
.rv-name { font-size: 13px; font-weight: 700; }
.rv-price { font-size: 12px; color: var(--text); font-weight: 600; transition: color 0.3s ease; }
.rv-item:hover .rv-price { color: #10b981; }

/* ── KREDI CALCULATOR ── */
.calc-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.calc-result { background: linear-gradient(135deg, var(--primary), #b71c1c); color: white; border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.calc-result-main { font-size: 40px; font-weight: 900; margin: 12px 0; }
.calc-result-sub { font-size: 14px; opacity: .85; }
.calc-breakdown { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 24px; }
.calc-breakdown-item { background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.calc-breakdown-item .val { font-size: 20px; font-weight: 800; }
.calc-breakdown-item .lbl { font-size: 11px; opacity: .8; margin-top: 4px; }
.range-val { font-size: 15px; font-weight: 700; color: var(--primary); text-align: right; margin-bottom: 4px; }
@media (max-width: 700px) { .calc-breakdown { grid-template-columns: 1fr; } }

/* ── INSURANCE CALCULATOR ── */
.insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.insurance-result-card { border-left: 4px solid; border-radius: var(--radius); padding: 16px; background: white; box-shadow: var(--shadow); }
.insurance-result-card.kasko { border-color: #1565c0; }
.insurance-result-card.trafik { border-color: #2e7d32; }
.insurance-result-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.insurance-result-card .amount { font-size: 26px; font-weight: 800; color: var(--text); }
.insurance-result-card .note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 600px) { .insurance-grid { grid-template-columns: 1fr; } }

/* ── KAMPANYALAR ── */
.promo-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promo-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; transition: transform 0.4s ease; }
.promo-card:hover .promo-card-img { transform: scale(1.05); }
.promo-card-body { padding: 18px; }
.promo-card-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.promo-card-desc { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.promo-badge-lg { display: inline-block; font-size: 13px; font-weight: 800; padding: 5px 12px; border-radius: 20px; margin-bottom: 8px; }
.promo-expire { font-size: 12px; color: var(--text-muted); }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* ── MOTOR PAGE ── */
.moto-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; }
.moto-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.moto-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 80px; transition: transform 0.4s ease; }
.moto-card:hover .moto-img { transform: scale(1.08); }
.moto-body { padding: 16px; }
.moto-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.moto-specs { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.moto-price { font-size: 18px; font-weight: 800; color: var(--text); transition: color 0.3s ease, text-shadow 0.3s ease; }
.moto-card:hover .moto-price { color: #10b981; text-shadow: 0 2px 12px rgba(16, 185, 129, 0.4); }

/* ── REVIEW MODAL ── */
.rating-input { display: flex; gap: 6px; margin: 8px 0; }
.rating-star { font-size: 28px; cursor: pointer; opacity: .3; transition: opacity .15s, transform .15s; }
.rating-star.active, .rating-star:hover { opacity: 1; transform: scale(1.15); }
.review-success { text-align: center; padding: 20px; }
.review-success .icon { font-size: 56px; margin-bottom: 12px; }

/* ── PAGINATION ── */
.pagination-wrap { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pg-btn { min-width: 38px; height: 38px; padding: 0 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: white; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.pg-btn:hover:not(:disabled), .pg-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.pg-btn:disabled { opacity: .4; cursor: default; }
.pg-info { font-size: 13px; color: var(--text-muted); margin: 0 8px; }

/* ── DARK MODE ── */
[data-theme="dark"] {
  --primary: #10b981; --primary-dark: #059669; --primary-light: #022c22;
  --secondary: #f8fafc;
  --text: #f8fafc; --text-light: #cbd5e1; --text-muted: #94a3b8;
  --bg: #0f172a; --bg-white: #1e293b; --border: #334155;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2); --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3); --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .car-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .specs-card,
[data-theme="dark"] .quote-card,
[data-theme="dark"] .filter-panel,
[data-theme="dark"] .calc-card,
[data-theme="dark"] .profile-sidebar,
[data-theme="dark"] .profile-content,
[data-theme="dark"] .accordion-item,
[data-theme="dark"] .review-card,
[data-theme="dark"] .insurance-result-card,
[data-theme="dark"] .promo-card,
[data-theme="dark"] .moto-card,
[data-theme="dark"] .variant-item { background: #1a1d27; border-color: #2d3148; }
[data-theme="dark"] .spec-row:nth-child(even),
[data-theme="dark"] .search-box,
[data-theme="dark"] .tabs,
[data-theme="dark"] .brand-card,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .rv-item,
[data-theme="dark"] .profile-menu-item:hover,
[data-theme="dark"] .accordion-header { background: #12151f; }
[data-theme="dark"] .form-control { background: #12151f; border-color: #2d3148; color: #e8eaf6; }
[data-theme="dark"] .chip { background: #1a1d27; border-color: #2d3148; color: #b0bec5; }
[data-theme="dark"] footer { background: #090b12; }
[data-theme="dark"] #header { background: #1a1d27; }
[data-theme="dark"] .mobile-nav { background: #1a1d27; }
[data-theme="dark"] .modal { background: #1a1d27; }
[data-theme="dark"] .search-dropdown { background: #1a1d27; }
[data-theme="dark"] .search-result-item:hover { background: #12151f; }
[data-theme="dark"] .quote-item { border-color: #2d3148; }
[data-theme="dark"] .page-btn { background: #1a1d27; border-color: #2d3148; color: #e8eaf6; }
[data-theme="dark"] .sort-select,
[data-theme="dark"] .brand-card { color: #e8eaf6; }
[data-theme="dark"] .compare-slot { border-color: rgba(255,255,255,.2); }
.dark-toggle { width: 40px; height: 22px; border-radius: 11px; border: none; background: #ccc; position: relative; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.dark-toggle.on { background: var(--primary); }
.dark-toggle::after { content:''; position:absolute; top:3px; left:3px; width:16px; height:16px; border-radius:50%; background:white; transition:transform .2s; }
.dark-toggle.on::after { transform: translateX(18px); }

/* ── SKELETON LOADING ── */
@keyframes shimmer { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 800px 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
[data-theme="dark"] .skeleton { background: linear-gradient(90deg, #1e2235 25%, #252840 50%, #1e2235 75%); background-size: 800px 100%; }
.skeleton-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
[data-theme="dark"] .skeleton-card { background: #1a1d27; }
.skeleton-img { height: 180px; }
.skeleton-body { padding: 16px; }
.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }
.skeleton-price { height: 20px; width: 50%; margin-bottom: 14px; }

/* ── GALLERY / LIGHTBOX ── */
.gallery-thumbnails { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb { width: 70px; height: 52px; border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; border: 2px solid transparent; transition: var(--transition); overflow: hidden; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--primary); }
.lightbox-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.92); z-index:1000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .25s; }
.lightbox-backdrop.open { opacity:1; pointer-events:all; }
.lightbox-inner { position:relative; max-width:90vw; max-height:90vh; display:flex; flex-direction:column; align-items:center; gap:16px; }
.lightbox-img { width:600px; max-width:90vw; height:400px; border-radius: var(--radius-lg); display:flex; align-items:center; justify-content:center; font-size:120px; }
.lightbox-close { position:absolute; top:-40px; right:0; background:none; border:none; color:white; font-size:28px; cursor:pointer; opacity:.7; }
.lightbox-close:hover { opacity:1; }
.lightbox-nav { display:flex; gap:16px; }
.lightbox-nav button { background:rgba(255,255,255,.1); border:none; color:white; width:44px; height:44px; border-radius:50%; font-size:20px; cursor:pointer; transition:var(--transition); }
.lightbox-nav button:hover { background:rgba(255,255,255,.2); }
.lightbox-thumbs { display:flex; gap:8px; }
.lightbox-thumb { width:60px; height:44px; border-radius:6px; cursor:pointer; border:2px solid transparent; opacity:.6; transition:var(--transition); display:flex; align-items:center; justify-content:center; font-size:24px; }
.lightbox-thumb.active { border-color:white; opacity:1; }

/* ── TAKSIT BADGE on card ── */
.car-installment { font-size:12px; color:var(--secondary); font-weight:600; margin-bottom:8px; display:flex; align-items:center; gap:4px; }

/* ── FORM VALIDATION ── */
.form-control.error { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,.1); }
.form-control.valid { border-color: #43a047; box-shadow: 0 0 0 3px rgba(67,160,71,.1); }
.field-error { font-size: 12px; color: #e53935; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.field-success { font-size: 12px; color: #43a047; margin-top: 4px; }

/* ── 404 PAGE ── */
.page-404 { text-align:center; padding:80px 20px; }
.page-404 .code { font-size:120px; font-weight:900; color:var(--primary); opacity:.15; line-height:1; }
.page-404 h2 { font-size:28px; font-weight:800; margin-bottom:8px; }
.page-404 p { color:var(--text-muted); margin-bottom:28px; }

/* ── DEALER LOCATOR ── */
.dealer-card { background:white; border-radius:var(--radius-lg); padding:20px; border:1.5px solid var(--border); transition:var(--transition); }
[data-theme="dark"] .dealer-card { background:#1a1d27; border-color:#2d3148; }
.dealer-card:hover { border-color:var(--primary); box-shadow:var(--shadow-md); }
.dealer-header { display:flex; align-items:flex-start; gap:14px; margin-bottom:12px; }
.dealer-logo { width:52px; height:52px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:800; color:white; flex-shrink:0; }
.dealer-name { font-size:16px; font-weight:700; }
.dealer-brand { font-size:13px; color:var(--text-muted); margin-top:2px; }
.dealer-info { display:flex; flex-direction:column; gap:6px; font-size:13px; color:var(--text-light); }
.dealer-info span { display:flex; align-items:center; gap:6px; }
.dealer-actions { display:flex; gap:8px; margin-top:14px; }
.dealer-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }

/* ── DEĞERLEMESİ ── */
.valuation-steps { display:flex; gap:0; margin-bottom:32px; }
.val-step { flex:1; text-align:center; position:relative; }
.val-step::after { content:''; position:absolute; top:20px; left:50%; width:100%; height:2px; background:var(--border); z-index:0; }
.val-step:last-child::after { display:none; }
.val-step-circle { width:40px; height:40px; border-radius:50%; background:var(--border); display:flex; align-items:center; justify-content:center; margin:0 auto 8px; font-size:16px; font-weight:700; position:relative; z-index:1; color:var(--text-muted); }
.val-step.done .val-step-circle { background:var(--primary); color:white; }
.val-step.active .val-step-circle { background:var(--secondary); color:white; }
.val-step-label { font-size:12px; color:var(--text-muted); }
.valuation-result { background:linear-gradient(135deg,#1565c0,#0d47a1); border-radius:var(--radius-lg); padding:32px; color:white; text-align:center; }
.val-price-range { font-size:36px; font-weight:900; margin:16px 0; }
.val-price-note { font-size:14px; opacity:.8; }

/* ── NEWSLETTER ── */
.newsletter-section { background:linear-gradient(135deg,#1565c0,#0d47a1); border-radius:var(--radius-lg); padding:48px; text-align:center; color:white; }
.newsletter-section h2 { font-size:28px; font-weight:800; margin-bottom:8px; }
.newsletter-section p { opacity:.85; margin-bottom:28px; }
.newsletter-form { display:flex; gap:10px; max-width:480px; margin:0 auto; }
.newsletter-form input { flex:1; padding:12px 18px; border-radius:var(--radius-sm); border:none; font-size:15px; }
.newsletter-form input:focus { outline:2px solid rgba(255,255,255,.4); }
@media(max-width:600px) { .newsletter-form { flex-direction:column; } }

/* ── PRICE ALERT ── */
.price-alert-btn { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--secondary); cursor:pointer; padding:6px 0; background:none; border:none; font-weight:600; }
.price-alert-btn:hover { text-decoration:underline; }

/* ── PRICE HISTORY CHART ── */
.price-period-tabs { display:flex; background:var(--bg); border-radius:var(--radius-sm); border:1.5px solid var(--border); overflow:hidden; }
.price-period-btn { padding:7px 18px; font-size:13px; font-weight:600; background:none; border:none; color:var(--text-light); cursor:pointer; transition:var(--transition); }
.price-period-btn.active { background:#0d47a1; color:#fff; }
.price-period-btn:hover:not(.active) { background:rgba(0,0,0,.05); }
[data-theme="dark"] .price-period-btn:hover:not(.active) { background:rgba(255,255,255,.07); }

/* ── NOTIFICATION BELL ── */
.notif-btn { position:relative; }
.notif-badge { position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; border-radius:9px; background:var(--primary); color:white; font-size:10px; font-weight:800; display:flex; align-items:center; justify-content:center; padding:0 4px; }
.notif-dropdown { position:absolute; top:calc(100%+8px); right:0; width:320px; background:white; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); border:1.5px solid var(--border); z-index:200; overflow:hidden; }
[data-theme="dark"] .notif-dropdown { background:#1a1d27; border-color:#2d3148; }
.notif-header { padding:14px 16px; font-weight:700; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; }
.notif-item { padding:12px 16px; display:flex; gap:10px; align-items:flex-start; border-bottom:1px solid var(--border); cursor:pointer; transition:var(--transition); }
.notif-item:hover { background:var(--bg); }
.notif-item.unread { background:rgba(211,47,47,.04); }
.notif-icon { font-size:20px; flex-shrink:0; }
.notif-text { font-size:13px; color:var(--text-light); line-height:1.5; }
.notif-time { font-size:11px; color:var(--text-muted); margin-top:3px; }
.notif-empty { padding:32px; text-align:center; color:var(--text-muted); font-size:14px; }

/* ── KAMYON / OTOBUS ── */
.commercial-hero { padding:48px 0; background:linear-gradient(135deg,#212121,#424242); color:white; text-align:center; }
.commercial-hero h1 { font-size:36px; font-weight:800; margin-bottom:8px; }
.commercial-hero p { opacity:.8; font-size:16px; }
.commercial-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.commercial-card { background:white; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); cursor:pointer; transition:var(--transition); }
[data-theme="dark"] .commercial-card { background:#1a1d27; }
.commercial-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.commercial-img { height:160px; display:flex; align-items:center; justify-content:center; font-size:72px; transition: transform 0.4s ease; }
.commercial-card:hover .commercial-img { transform: scale(1.08); }
.commercial-body { padding:16px; }
.commercial-title { font-size:16px; font-weight:700; margin-bottom:4px; }
.commercial-specs { font-size:13px; color:var(--text-muted); margin-bottom:8px; }
.commercial-price { font-size:18px; font-weight:800; color:var(--text); transition: color 0.3s ease, text-shadow 0.3s ease; }
.commercial-card:hover .commercial-price { color: #10b981; text-shadow: 0 2px 12px rgba(16, 185, 129, 0.4); }

/* ── PRINT ── */
@media print {
  #header, footer, .compare-bar, #backToTop, #cookieBanner,
  .car-actions, .action-buttons, .filter-panel, .share-bar,
  .breadcrumb, .back-btn, .toast-container { display:none !important; }
  body { background:white !important; color:#000 !important; }
  .car-card, .compare-table, .specs-card { box-shadow:none !important; border:1px solid #ccc !important; }
  .section { padding:20px 0 !important; }
  a { color:#000 !important; }
  .compare-page { overflow:visible !important; }
  .compare-table { page-break-inside:avoid; }
}

/* ── PROGRESS BAR ── */
#progressBar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; background: #022c22; width: 0%;
  transition: width 0.3s ease, opacity 0.4s ease;
  box-shadow: 0 0 10px rgba(2, 44, 34, 0.5);
}
#progressBar.done { width: 100%; opacity: 0; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: white; border-top: 1.5px solid var(--border);
  padding: 12px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transform: translateY(100%); transition: transform .3s ease;
}
[data-theme="dark"] .sticky-cta { background: #1a1d27; border-color: #2d3148; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-info { flex: 1; }
.sticky-cta-title { font-size: 14px; font-weight: 700; }
.sticky-cta-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.sticky-cta-actions { display: flex; gap: 8px; }

/* ── COMPARE SEARCH ── */
.compare-search-box { position: relative; }
.compare-search-box input { width: 100%; }
.compare-search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border); z-index: 100; max-height: 260px; overflow-y: auto;
}
[data-theme="dark"] .compare-search-results { background: #1a1d27; border-color: #2d3148; }
.csr-item { padding: 10px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; transition: background .15s; }
.csr-item:hover { background: var(--bg); }
.csr-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── SOCIAL PROOF ── */
.social-proof { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.social-proof-dot { width: 6px; height: 6px; border-radius: 50%; background: #43a047; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ── INLINE KREDI ── */
.inline-calc { background: var(--bg); border-radius: var(--radius); padding: 16px; margin-top: 16px; }
.inline-calc h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.inline-calc-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.inline-calc-row label { font-size: 12px; color: var(--text-muted); white-space: nowrap; min-width: 60px; }
.inline-calc-row select { flex: 1; padding: 7px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; background: white; }
[data-theme="dark"] .inline-calc-row select { background: #12151f; border-color: #2d3148; color: #e8eaf6; }
.inline-calc-result { background: var(--primary); color: white; border-radius: var(--radius-sm); padding: 12px; text-align: center; margin-top: 8px; }
.inline-calc-result .amount { font-size: 22px; font-weight: 800; }
.inline-calc-result .sub { font-size: 11px; opacity: .85; }

/* ── SSS PAGE ── */
.sss-hero { background: linear-gradient(135deg, var(--secondary), #0d47a1); color: white; padding: 56px 0; text-align: center; }
.sss-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.sss-hero p { opacity: .85; font-size: 16px; }
.sss-search { max-width: 480px; margin: 24px auto 0; position: relative; }
.sss-search input { width: 100%; padding: 14px 48px 14px 18px; border: none; border-radius: var(--radius-lg); font-size: 15px; }
.sss-search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; }
.sss-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.admin-tab { background: none; border: none; padding: 7px 16px; border-radius: 7px; font-size: 13px; font-weight: 600; color: var(--text-light); cursor: pointer; transition: background .15s, color .15s; }
.admin-tab:hover { background: var(--bg-white); color: var(--primary); }
.admin-tab.active { background: var(--bg-white); color: var(--primary); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.admin-link { color: rgba(255,255,255,0.15); font-size: 11px; cursor: pointer; margin-left: 12px; text-decoration: none; }
.admin-link:hover { color: rgba(255,255,255,0.5); }

/* ── ADMIN PANEL ── */
.admin-car-row {
  background: var(--bg-white);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.admin-car-row:last-child { border-bottom: none; }
.admin-car-name { font-size: 15px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.admin-car-prices { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.admin-pending-block { padding: 12px 14px; background: #fffbeb; border-radius: 8px; border: 1px solid #fde68a; }

/* ── DRAG & DROP ZONE ── */
.drag-drop-zone { border: 1.5px dashed transparent; border-radius: 8px; transition: all 0.2s; padding: 2px; }
.drag-drop-zone.drag-over { border-color: var(--primary); background: rgba(37,99,235,0.08); transform: scale(1.01); }

/* ── KVKK PAGE ── */
.legal-page { max-width: 840px; margin: 0 auto; }
.legal-page h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.legal-page .updated { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.legal-page h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.legal-page ul { padding-left: 20px; }
.legal-toc { background: var(--bg); border-radius: var(--radius); padding: 20px; margin-bottom: 32px; }
.legal-toc h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { font-size: 13px; color: var(--secondary); cursor: pointer; margin-bottom: 4px; }
.legal-toc li:hover { text-decoration: underline; }

/* ── PASSWORD CHANGE ── */
.password-strength { height: 4px; border-radius: 2px; margin-top: 6px; transition: all .3s; }
.password-strength.weak { background: #e53935; width: 33%; }
.password-strength.medium { background: #ff9800; width: 66%; }
.password-strength.strong { background: #43a047; width: 100%; }
.password-hint { font-size: 12px; margin-top: 4px; }
.password-hint.weak { color: #e53935; }
.password-hint.medium { color: #ff9800; }
.password-hint.strong { color: #43a047; }

/* ── REVIEW MANAGEMENT ── */
.my-review-card { background: white; border-radius: var(--radius); padding: 16px; border: 1.5px solid var(--border); margin-bottom: 12px; }
[data-theme="dark"] .my-review-card { background: #1a1d27; border-color: #2d3148; }
.my-review-actions { display: flex; gap: 8px; margin-top: 12px; }
