/* ─── Design System ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg:         #06060F;
  --bg2:        #0D0D1A;
  --bg3:        #111125;
  --orange:     #FF6B00;
  --gold:       #FFB800;
  --electric:   #00D4FF;
  --white:      #FFFFFF;
  --muted:      #7A7A99;
  --border:     rgba(255,107,0,.15);
  --grad:       linear-gradient(135deg,#FF6B00,#FFB800);
  --glow:       0 0 40px rgba(255,107,0,.35);
  --card-hover: 0 20px 60px rgba(255,107,0,.2);
  --font-d:     'Bebas Neue', sans-serif;
  --font-b:     'Inter', sans-serif;
  --font-r:     'Rajdhani', sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --radius:     12px;
  --radius-lg:  20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── Utilities ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,.1); border: 1px solid var(--border);
  color: var(--orange); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.badge::before { content:''; width:6px; height:6px; background:var(--orange); border-radius:50%; animation: pulse 1.5s infinite; }

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .04em;
  line-height: 1.05;
}
.section-title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--muted); max-width: 560px; margin-top: 12px; font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: .95rem; letter-spacing: .04em;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.08); opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad); color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,.6); }

.btn-outline {
  border: 1.5px solid var(--orange); color: var(--orange);
}
.btn-outline:hover { background: rgba(255,107,0,.1); transform: translateY(-2px); }

.btn-ghost {
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(6,6,15,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-r); font-size: 1.4rem; font-weight: 700;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--grad); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: white;
  font-family: var(--font-d); letter-spacing: .05em;
}
.nav-logo .logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.75);
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transform-origin: right; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 8px;
  color: #25D366; font-size: .85rem; font-weight: 600;
  padding: 8px 16px; border: 1px solid rgba(37,211,102,.3);
  border-radius: 6px; transition: all .3s;
}
.nav-whatsapp:hover { background: rgba(37,211,102,.1); }
.nav-whatsapp svg { width: 16px; height: 16px; fill: #25D366; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
#spark-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,107,0,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,212,255,.06) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,107,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--orange); font-size: .85rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: var(--orange); opacity: .4;
}
.hero-eyebrow::before { width: 30px; }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95; letter-spacing: .03em;
  margin-bottom: 24px;
}
.hero-title .line-1 { display: block; color: var(--white); }
.hero-title .line-2 {
  display: block;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title .line-3 { display: block; color: var(--white); }

.hero-desc {
  color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 520px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-d); font-size: 2.8rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { color: var(--muted); font-size: .85rem; margin-top: 4px; }

.hero-visual {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 600px; z-index: 1; opacity: .15; pointer-events: none;
}
.gear {
  position: absolute;
  animation: spin linear infinite;
  opacity: .4;
}
.gear svg { fill: var(--orange); }
.gear-1 { width: 300px; height: 300px; right: 10%; top: 15%; animation-duration: 20s; }
.gear-2 { width: 180px; height: 180px; right: 35%; top: 50%; animation-duration: 15s; animation-direction: reverse; }
.gear-3 { width: 120px; height: 120px; right: 5%; bottom: 20%; animation-duration: 25s; }

/* ─── Marquee / Ticker ───────────────────────────────────────── */
.marquee-section {
  background: var(--orange); padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-d); font-size: 1.1rem; letter-spacing: .12em;
  color: rgba(0,0,0,.8); flex-shrink: 0;
}
.marquee-track span.dot { color: rgba(0,0,0,.4); }

/* ─── Stats Counter ──────────────────────────────────────────── */
.stats-section { background: var(--bg2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-card {
  background: var(--bg2); padding: 48px 32px;
  text-align: center; position: relative;
  transition: background .3s;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.05), transparent);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { background: var(--bg3); }
.stat-icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.stat-number {
  font-family: var(--font-d); font-size: 3.5rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-suffix { font-family: var(--font-d); font-size: 2rem; }
.stat-label { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ─── About Section ──────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.2) 0%, transparent 60%);
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--grad); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  font-family: var(--font-d); font-size: 2.5rem; line-height: 1;
  box-shadow: var(--glow);
}
.about-badge-float small { display: block; font-family: var(--font-b); font-size: .75rem; font-weight: 500; opacity: .85; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .3s;
}
.about-feature:hover { border-color: var(--orange); transform: translateX(6px); }
.about-feature-icon {
  width: 44px; height: 44px; background: rgba(255,107,0,.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.about-feature h4 { font-size: .95rem; font-weight: 600; margin-bottom: 2px; }
.about-feature p { color: var(--muted); font-size: .82rem; }

/* ─── Categories ─────────────────────────────────────────────── */
.categories-section { background: var(--bg2); }
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 48px;
}
.cat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; cursor: pointer;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transition: transform .35s;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  transform: translateY(-8px); border-color: rgba(255,107,0,.4);
  box-shadow: var(--card-hover);
}
.cat-icon {
  font-size: 3rem; margin-bottom: 16px; display: block;
  transition: transform .3s;
}
.cat-card:hover .cat-icon { transform: scale(1.15); }
.cat-name { font-family: var(--font-r); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.cat-count { color: var(--orange); font-size: .82rem; font-weight: 600; }

/* ─── Featured Products ──────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.product-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .35s var(--ease); cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px); border-color: rgba(255,107,0,.35);
  box-shadow: var(--card-hover);
}
.product-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,107,0,.3);
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--grad); color: white;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.product-body { padding: 20px; }
.product-cat { color: var(--orange); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.product-name { font-family: var(--font-r); font-size: 1.05rem; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.product-model { color: var(--muted); font-size: .8rem; }
.product-specs {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.product-spec {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem;
}
.product-spec-key { color: var(--muted); }
.product-spec-val { color: var(--white); font-weight: 500; }

/* ─── Why Choose Us ──────────────────────────────────────────── */
.why-section { background: var(--bg); position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,.06) 0%, transparent 70%);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all .3s;
}
.why-card:hover { border-color: rgba(255,107,0,.4); transform: translateY(-4px); }
.why-card-num {
  font-family: var(--font-d); font-size: 5rem; line-height: 1;
  color: rgba(255,107,0,.08); position: absolute; top: 16px; right: 20px;
}
.why-icon { font-size: 2.5rem; margin-bottom: 20px; }
.why-title { font-family: var(--font-r); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ─── Brands ─────────────────────────────────────────────────── */
.brands-section { background: var(--bg2); }
.brands-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px;
}
.brand-pill {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px;
  text-align: center; font-family: var(--font-d);
  font-size: 1.3rem; letter-spacing: .08em;
  transition: all .3s; color: var(--muted);
}
.brand-pill:hover {
  border-color: var(--orange); color: var(--white);
  background: rgba(255,107,0,.08);
  transform: translateY(-3px);
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #FF6B00 0%, #FF9500 50%, #FFB800 100%);
  position: relative; overflow: hidden;
}
.cta-section::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='%23000' fill-opacity='0.05'%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");
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem); color: #000; letter-spacing: .04em; }
.cta-text p { color: rgba(0,0,0,.65); margin-top: 8px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-dark {
  background: #000; color: var(--white);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  transition: all .3s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-white-outline {
  border: 2px solid rgba(0,0,0,.3); color: #000;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  transition: all .3s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-white-outline:hover { background: rgba(0,0,0,.1); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand .logo-icon { width: 44px; height: 44px; background: var(--grad); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1.3rem; color: white; }
.footer-brand .logo-name { font-family: var(--font-r); font-size: 1.3rem; font-weight: 700; }
.footer-brand .logo-name span { color: var(--orange); }
.footer-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all .3s; color: var(--muted);
}
.social-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }

.footer-col h5 { font-family: var(--font-r); font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: color .25s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--orange); }
.footer-links a::before { content: '›'; color: var(--orange); opacity: 0; transition: opacity .25s; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 36px; height: 36px; background: rgba(255,107,0,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; margin-top: 2px;
}
.contact-detail { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.contact-detail strong { color: var(--white); display: block; font-size: .85rem; font-weight: 600; }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; }
.footer-bottom p span { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); font-size: .82rem; transition: color .25s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.dealer-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.dealer-btn {
  width: auto; height: 60px; padding: 0 20px;
  background: linear-gradient(135deg, #FF6B00, #FFB800);
  border-radius: 30px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(255,107,0,.5);
  transition: all .3s; animation: float 3s ease-in-out infinite;
  cursor: pointer; text-decoration: none;
  position: relative;
}
.dealer-btn:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(255,107,0,.7); animation-play-state: paused; }
.dealer-btn-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  letter-spacing: .1em; color: #fff; line-height: 1;
}
.dealer-tooltip {
  background: var(--bg3); color: var(--white);
  font-size: .82rem; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0; transform: translateX(10px);
  transition: all .3s; pointer-events: none;
}
.dealer-float:hover .dealer-tooltip { opacity: 1; transform: translateX(0); }
.dealer-pulse {
  position: absolute; inset: -4px;
  border-radius: 30px; background: rgba(255,107,0,.3);
  animation: pulse-ring 2s ease-out infinite;
}

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg2); position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero-inner { text-align: center; }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(2.5rem,5vw,4.5rem); letter-spacing: .04em; }
.page-hero p { color: var(--muted); font-size: 1.1rem; margin-top: 12px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-bottom: 20px; color: var(--muted); font-size: .85rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { opacity: .4; }

/* ─── Products Page ──────────────────────────────────────────── */
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

.filter-sidebar {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px;
}
.filter-title { font-family: var(--font-r); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.filter-group { margin-bottom: 28px; }
.filter-group-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.filter-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 9px 12px; border-radius: 8px;
  font-size: .88rem; color: var(--muted); text-align: left;
  transition: all .25s; cursor: pointer; margin-bottom: 4px;
}
.filter-btn:hover { background: rgba(255,107,0,.08); color: var(--white); }
.filter-btn.active { background: rgba(255,107,0,.12); color: var(--orange); font-weight: 600; }
.filter-btn .count { font-size: .75rem; opacity: .6; }
.search-input {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  color: var(--white); padding: 10px 14px; border-radius: 8px;
  font-size: .9rem; font-family: var(--font-b); outline: none;
  transition: border-color .3s; margin-bottom: 20px;
}
.search-input:focus { border-color: var(--orange); }
.search-input::placeholder { color: var(--muted); }

.products-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
}
.products-count { color: var(--muted); font-size: .9rem; }
.products-count span { color: var(--white); font-weight: 600; }
.sort-select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--white);
  padding: 8px 14px; border-radius: 8px; font-family: var(--font-b);
  font-size: .88rem; outline: none; cursor: pointer;
}

.load-more-wrap { text-align: center; margin-top: 48px; }
.loading-spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(255,107,0,.2);
  border-top-color: var(--orange);
  animation: spin .7s linear infinite; margin: 40px auto;
}

/* ─── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 30px; z-index: 9999;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 14px 20px; border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  transform: translateX(120%); transition: transform .4s var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.3rem; }
.toast-msg { font-size: .88rem; font-weight: 500; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse  { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

.fade-up { animation: fadeUp .7s var(--ease) both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner   { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .hamburger   { display: flex; }
  /* Show theme toggle next to hamburger on mobile */
  .theme-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  /* Dealer float — compact icon-only on mobile */
  .dealer-btn { height: 48px; width: 48px; padding: 0; border-radius: 50%; gap: 0; }
  .dealer-btn-label { display: none; }
  .dealer-float { bottom: 20px; right: 16px; }
  .dealer-tooltip { display: none; }
  .dealer-pulse { border-radius: 50%; }
}

/* ─── Mobile nav ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(6,6,15,.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(-100%); transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-d); font-size: 2.5rem; letter-spacing: .06em; color: rgba(255,255,255,.6); transition: color .3s; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--muted); cursor: pointer; transition: color .3s;
  border-radius: 50%; background: rgba(255,255,255,.06);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:hover { color: var(--white); background: rgba(255,255,255,.12); }

/* ─── Theme Toggle Button ────────────────────────────────────── */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.13);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,.08); }
.theme-toggle svg { pointer-events: none; }
.theme-toggle .icon-moon { display: flex; }
.theme-toggle .icon-sun  { display: none;  }

/* ─── Light Mode ─────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:         #F3F3ED;
  --bg2:        #E9E9E3;
  --bg3:        #DDDDD7;
  --white:      #0F0F1E;
  --muted:      #5C5C7A;
  --border:     rgba(120,50,0,.13);
  --glow:       0 0 40px rgba(255,107,0,.14);
  --card-hover: 0 16px 48px rgba(0,0,0,.09);
  color-scheme: light;
}

[data-theme="light"] body { background: var(--bg); color: var(--white); }

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg2); }

/* Navbar */
[data-theme="light"] .navbar.scrolled {
  background: rgba(243,243,237,.94);
  border-bottom-color: rgba(0,0,0,.07);
}
[data-theme="light"] .nav-links a { color: rgba(15,15,30,.58); }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { color: var(--white); }
[data-theme="light"] .hamburger span  { background: var(--white); }
[data-theme="light"] .theme-toggle    { border-color: rgba(0,0,0,.12); }
[data-theme="light"] .theme-toggle .icon-moon { display: none;  }
[data-theme="light"] .theme-toggle .icon-sun  { display: flex;  }

/* Mobile nav */
[data-theme="light"] .mobile-nav {
  background: rgba(243,243,237,.98);
  backdrop-filter: blur(20px);
}
[data-theme="light"] .mobile-nav a { color: rgba(15,15,30,.6); }
[data-theme="light"] .mobile-nav a:hover { color: var(--orange); }
[data-theme="light"] .mobile-nav-close { color: var(--muted); }
[data-theme="light"] .mobile-nav-close:hover { color: var(--white); }

/* Hero */
[data-theme="light"] .hero-desc { color: rgba(15,15,30,.58); }
[data-theme="light"] .hero-title .line-1,
[data-theme="light"] .hero-title .line-3 { color: var(--white); }
[data-theme="light"] .hero-grid-bg {
  background-image:
    linear-gradient(rgba(180,70,0,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,70,0,.07) 1px, transparent 1px);
}

/* Filter sidebar — products page */
[data-theme="light"] .filter-btn:hover { color: var(--white); }
[data-theme="light"] .search-input     { background: var(--bg2); color: var(--white); }
[data-theme="light"] .sort-select      { background: var(--bg3); color: var(--white); }

/* Dealer tooltip */
[data-theme="light"] .dealer-tooltip {
  background: var(--bg3); color: var(--white);
  border-color: rgba(0,0,0,.08);
}

/* Page hero (products & contact pages) */
[data-theme="light"] .page-hero { background: var(--bg2); }
