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

/* ── Variables ── */
:root {
  --bg: #0f1012;
  --bg2: #161819;
  --bg3: #1e2022;
  --glass: rgba(255,255,255,0.06);
  --glass-hover: rgba(255,255,255,0.10);
  --glass-strong: rgba(255,255,255,0.09);
  --border: rgba(255,255,255,0.10);
  --border-hover: rgba(255,255,255,0.22);
  --accent: #7a9464;
  --accent-light: #96b47c;
  --accent-dim: rgba(122,148,100,0.12);
  --gold: #c8b870;
  --gold-dim: rgba(200,184,112,0.10);
  --electric: #5aabcc;
  --electric-dim: rgba(90,171,204,0.12);
  --text: #f0ece6;
  --text-muted: #8c8c8c;
  --text-dim: #484848;
  --radius: 12px;
  --radius-lg: 20px;
  --blur: blur(20px);
  --transition: 0.25s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 28px rgba(0,0,0,0.35);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Background glow ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 75% 15%, rgba(255,255,255,0.025) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 85%, rgba(255,255,255,0.015) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Glass card ── */
.glass {
  background: var(--glass-strong);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
}
.glass:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(12,13,15,0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo span { color: var(--accent-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO — PREMIUM 2025
══════════════════════════════════════ */
@keyframes floatVehicle {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.08); }
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, 25px); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-35px, -20px); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ringRotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
@keyframes scanMove {
  0%, 100% { top: 20%; opacity: 0; }
  10%       { opacity: 0.06; }
  90%       { opacity: 0.06; }
  100%      { top: 80%; opacity: 0; }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: #07080b;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% 0%, #10131a 0%, #07080b 70%);
  z-index: 0;
}
/* Dot grid */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, black 0%, transparent 80%);
}
/* Scan line */
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: scanMove 8s ease-in-out infinite;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  filter: blur(70px);
  top: -80px; left: -120px;
  animation: orbDrift1 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 480px; height: 360px;
  background: radial-gradient(circle, rgba(200,184,112,0.06) 0%, transparent 65%);
  filter: blur(80px);
  top: 5%; right: -80px;
  animation: orbDrift2 22s ease-in-out infinite;
}
.hero-orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 65%);
  filter: blur(60px);
  bottom: 10%; left: 15%;
  animation: orbDrift1 14s ease-in-out infinite reverse;
}

/* ── Vehicle ── */
.hero-vehicle-wrap {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 24px;
  min-height: 0;
}

/* Wide diffuse glow */
.hero-vehicle-glow {
  position: absolute;
  width: 75%;
  height: 55%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 65%);
  filter: blur(56px);
  z-index: 1;
  animation: glowPulse 5s ease-in-out infinite;
}

/* Golden ground reflection */
.hero-vehicle-ring {
  position: absolute;
  width: 52%;
  height: 18px;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200,184,112,0.2) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 1;
  animation: glowPulse 5s ease-in-out infinite 1s;
}

/* Ground shadow */
.hero-vehicle-wrap::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 32px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.hero-vehicle-img {
  position: relative;
  z-index: 2;
  width: clamp(380px, 96vw, 1200px);
  max-width: 1200px;
  filter:
    drop-shadow(0 60px 120px rgba(0,0,0,0.9))
    drop-shadow(0 0 60px rgba(255,255,255,0.03));
  transform-origin: center bottom;
}

/* Gradient that blends vehicle into content */
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(to top,
    #07080b 0%,
    #07080b 18%,
    rgba(7,8,11,0.85) 42%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 0 60px;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25));
}
.hero-label::after {
  background: linear-gradient(270deg, transparent, rgba(255,255,255,0.25));
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,0.38);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-actions .btn-primary {
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 0 36px rgba(122,148,100,0.3);
  border-radius: 12px;
}
.hero-actions .btn-primary:hover {
  box-shadow: 0 0 56px rgba(122,148,100,0.5);
  transform: translateY(-2px);
}
.hero-actions .btn-outline {
  padding: 15px 40px;
  font-size: 1rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Stats as glass chips */
.hero-stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat {
  padding: 14px 28px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.25s ease;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}
.hero-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: rgba(255,255,255,0.4); font-size: 1.2rem; }
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Price badge (floating) */
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: 32px;
  padding: 14px 22px;
  border-radius: 14px;
  z-index: 10;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}
.hero-badge-price { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 3px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-badge-val { font-size: 1.15rem; font-weight: 700; color: var(--gold); }

/* ── Desktop: vertical layout, fits in one screen ── */
@media (min-width: 960px) {
  .hero {
    flex-direction: column;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    justify-content: center;
    gap: 0;
    padding-top: 64px;
  }

  .hero-vehicle-wrap {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 16px 0 0 0;
    min-height: 0;
  }
  .hero-vehicle-img {
    width: clamp(240px, 30vw, 420px);
    max-width: 420px;
  }

  .hero-content {
    flex: 0 0 auto;
    padding: 4px 0 16px 0;
  }

  /* Compact text sizes to fit everything in one screen */
  .hero-title { font-size: clamp(1.6rem, 3.2vw, 2.6rem); }
  .hero-desc { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-actions { gap: 12px; margin-bottom: 20px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 12px 28px; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 10px 18px; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .hero-vehicle-img { width: clamp(280px, 95vw, 480px); }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 13px 28px; font-size: 0.95rem; }
  .hero-stat { padding: 11px 20px; }
  .hero-badge { display: none; }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(109,143,78,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  background: var(--glass);
  border-color: var(--border-hover);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.product-card-img {
  position: relative;
  background: rgba(255,255,255,0.03);
  padding: 24px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.product-card-img img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.badge-pts { background: rgba(255,255,255,0.08); color: #c8d4b8; border: 1px solid rgba(255,255,255,0.15); }
.badge-electric { background: var(--electric-dim); color: var(--electric); border: 1px solid rgba(90,171,204,0.3); }
.badge-petrol { background: rgba(255,255,255,0.07); color: #b8b0a0; border: 1px solid rgba(255,255,255,0.14); }
.badge-compare {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: all var(--transition);
}
.badge-compare:hover, .badge-compare.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.product-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-name { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.product-card-title { font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.product-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.product-card-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.quick-spec {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 8px 12px;
}
.quick-spec-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.quick-spec-val { font-size: 0.85rem; font-weight: 600; color: #fff; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  margin-top: auto;
}
.product-card-price { font-size: 1.35rem; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.product-card-price-label { font-size: 0.72rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   FILTER BAR
══════════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.section-header h2 { color: #fff; }
.section-header p { margin-top: 12px; max-width: 560px; }

/* ══════════════════════════════════════
   ADVANTAGES
══════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.advantage-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: all var(--transition);
}
.advantage-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
}
.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.advantage-card h3 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.advantage-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */
.product-detail { padding-top: 96px; padding-bottom: 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-gallery { position: sticky; top: 88px; }
.gallery-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 12px;
}
.gallery-main img {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 6px;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--accent); }

.product-info { }
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-breadcrumb a:hover { color: var(--text); }
.product-breadcrumb span { color: var(--text-dim); }
.product-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin-bottom: 8px; }
.product-tagline { color: var(--text-muted); margin-bottom: 24px; }
.product-price-wrap { margin-bottom: 28px; }
.product-price { font-size: 2.2rem; font-weight: 700; color: var(--gold); letter-spacing: -0.03em; }
.product-price-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.product-colors { margin-bottom: 24px; }
.product-colors-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.colors-list { display: flex; gap: 8px; flex-wrap: wrap; }
.color-chip {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.color-chip:hover, .color-chip.active { border-color: var(--accent); color: var(--accent-light); background: var(--accent-dim); }

.product-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.product-features { margin-bottom: 32px; }
.product-features-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.features-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.feature-tag::before { content: '✓'; color: #96b47c; font-size: 0.75rem; }

.specs-section { }
.specs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  margin-bottom: 2px;
}
.specs-toggle:hover { border-color: var(--border-hover); }
.specs-table {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}
.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: rgba(255,255,255,0.04); }
.specs-key, .specs-val {
  padding: 11px 16px;
  font-size: 0.85rem;
}
.specs-key { color: var(--text-muted); }
.specs-val { color: #fff; font-weight: 500; }

/* ══════════════════════════════════════
   COMPARE PAGE
══════════════════════════════════════ */
.compare-page { padding-top: 96px; padding-bottom: 80px; }
.compare-select-area {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.compare-slot {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.compare-slot:hover { border-color: var(--accent); color: var(--accent-light); background: var(--accent-dim); }
.compare-slot.filled {
  background: var(--glass);
  border-style: solid;
  border-color: var(--border);
  cursor: default;
}
.compare-slot-img { width: 120px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }

.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.compare-table th { color: var(--text-muted); font-weight: 500; background: rgba(255,255,255,0.02); min-width: 200px; }
.compare-table td { color: var(--text); }
.compare-table thead th { color: var(--text); font-weight: 700; font-size: 0.95rem; background: rgba(255,255,255,0.04); }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight { color: var(--accent-light); font-weight: 600; }

/* ══════════════════════════════════════
   CONTACTS
══════════════════════════════════════ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.contact-block-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-light); margin-bottom: 8px; }
.contact-block-val { font-size: 1rem; color: var(--text); font-weight: 500; }
.contact-block-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.form-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.form-card h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.form-card p { font-size: 0.85rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }
.form-note a { color: var(--accent-light); }

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,9,0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: rgba(22,24,28,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  transform: translateY(16px);
  transition: transform var(--transition);
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover { border-color: var(--border-hover); color: var(--text); }
.modal h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 8px; }
.modal p { font-size: 0.88rem; margin-bottom: 24px; }
.modal-product { font-size: 0.85rem; color: var(--accent-light); margin-bottom: 20px; font-weight: 500; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.footer-brand h3 span { color: var(--accent-light); }
.footer-brand p { font-size: 0.85rem; max-width: 240px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--text); }

/* ══════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════ */
.legal-page { padding: 96px 0 80px; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.15rem; color: var(--text); margin: 36px 0 12px; }
.legal-content p { margin-bottom: 14px; font-size: 0.92rem; line-height: 1.7; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 6px; }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 14px 24px;
  background: var(--bg2);
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 300;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══════════════════════════════════════
   DIVIDER / MISC
══════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 0; }
.tag-electric { color: var(--electric); }
.page-title-section {
  padding: 96px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.page-title-section h1 { margin-bottom: 12px; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-label { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-badge { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(19,21,17,0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .catalog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-table th, .compare-table td { padding: 10px 14px; font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 28px 20px; }
}
