/* ─── 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:         #F3F3ED;
  --bg2:        #E9E9E3;
  --bg3:        #DDDDD7;
  --orange:     #D4A800;
  --gold:       #A67C00;
  --electric:   #0077CC;
  --white:      #0F0F1E;
  --muted:      #5C5C7A;
  --border:     rgba(120,50,0,.13);
  --grad:       linear-gradient(135deg,#A67C00,#FFD700,#E8B800);
  --glow:       0 0 40px rgba(212,168,0,.22);
  --card-hover: 0 16px 48px rgba(0,0,0,.09);
  --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;
  color-scheme: light;
}

*, *::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(212,168,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(212,168,0,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,0,.6); }

.btn-outline {
  border: 1.5px solid var(--orange); color: var(--orange);
}
.btn-outline:hover { background: rgba(212,168,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(243,243,237,.94);
  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); }

/* Navbar over dark hero (index.html only) — white text before scrolling */
.dark-hero-page .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.dark-hero-page .navbar:not(.scrolled) .nav-links a:hover,
.dark-hero-page .navbar:not(.scrolled) .nav-links a.active { color: var(--orange); }
.dark-hero-page .navbar:not(.scrolled) .nav-logo .logo-text { color: #fff; }
.dark-hero-page .navbar:not(.scrolled) .nav-social-btn {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.dark-hero-page .navbar:not(.scrolled) .nav-social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.dark-hero-page .navbar:not(.scrolled) .hamburger span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  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(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--orange); }

.nav-social { display: flex; align-items: center; gap: 6px; }
.nav-social-btn {
  width: 32px; height: 32px; border-radius: 6px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .25s;
  background: none;
}
.nav-social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.nav-social-btn svg { fill: currentColor; display: block; }

.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;
  background: #0a0a12;
}
/* Hero background slideshow */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
#spark-canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.68) 0%,
    rgba(0,0,0,.48) 55%,
    rgba(212,168,0,.12) 100%
  );
}
.hero-grid-bg { display: none; }
/* Hero text — always white against the dark overlay */
.hero .hero-title .line-1,
.hero .hero-title .line-3 { color: #fff; }
.hero .hero-desc { color: rgba(255,255,255,.78); }
.hero .hero-stat-label { color: rgba(255,255,255,.6); }
.hero .hero-eyebrow { color: var(--orange); }
.hero-content {
  position: relative; z-index: 3;
  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: linear-gradient(
    105deg,
    #A67C00 15%,
    #D4A800 30%,
    #FFD700 42%,
    #FFFBE6 50%,
    #FFD700 58%,
    #D4A800 70%,
    #A67C00 85%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine-rtl 4s linear infinite;
}
@keyframes gold-shine-rtl {
  0%   { background-position: 160% center; }
  65%  { background-position: -60% center; }
  100% { background-position: -60% center; }
}
.hero-title .line-3 { display: block; color: var(--white); }

.hero-desc {
  color: var(--muted); 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: 3; opacity: .15; pointer-events: none;
}

/* ─── 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(212,168,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(212,168,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(212,168,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(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.cat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .35s var(--ease); position: relative; cursor: pointer;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transition: transform .35s;
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover {
  transform: translateY(-6px); border-color: rgba(212,168,0,.4);
  box-shadow: var(--card-hover);
}
.cat-img-wrap {
  width: 100%; height: 220px; overflow: hidden;
  background: #fff; display: flex; align-items: center; justify-content: center;
}
.cat-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 12px; transition: transform .4s ease; display: block;
  mix-blend-mode: multiply;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-icon-fallback { font-size: 3.5rem; }
.cat-body { padding: 18px 20px 20px; }
.cat-name { font-family: var(--font-r); font-size: 1.05rem; 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(212,168,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(212,168,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; }
.spec-measure {
  color: var(--orange); font-weight: 700;
  background: rgba(212,168,0,.09); border-radius: 4px;
  padding: 1px 5px;
}

/* ─── Subcategory group header ───────────────────────────────── */
.subcat-header {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0 6px;
  border-bottom: 2px solid var(--border);
  margin-top: 24px;
}
.subcat-header:first-child { margin-top: 0; }
.subcat-header-name {
  font-family: var(--font-d); font-size: 1.3rem;
  letter-spacing: .05em; color: var(--white);
}
.subcat-header-count {
  font-size: .78rem; font-weight: 700;
  color: #fff; background: var(--orange);
  border-radius: 20px; padding: 2px 10px;
}

/* Measurement badge in product modal */
.pm-spec-measure {
  color: var(--orange); font-weight: 700;
  background: rgba(212,168,0,.1); border-radius: 5px;
  padding: 2px 8px;
}

/* ─── 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(212,168,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(212,168,0,.4); transform: translateY(-4px); }
.why-card-num {
  font-family: var(--font-d); font-size: 5rem; line-height: 1;
  color: rgba(212,168,0,.22); 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(4, 1fr); gap: 20px; margin-top: 48px;
}
.brand-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px 18px;
  text-align: center; transition: all .3s;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.brand-card:hover {
  border-color: var(--orange);
  background: rgba(212,168,0,.06);
  transform: translateY(-4px);
  box-shadow: var(--card-hover);
}
.brand-card img {
  width: 100%; max-width: 130px; height: 72px;
  object-fit: contain; display: block;
}
.brand-card-name {
  font-family: var(--font-d); font-size: 1rem; letter-spacing: .07em;
  color: var(--muted); line-height: 1.2;
}
.brand-card:hover .brand-card-name { color: var(--orange); }
/* keep old pill class so nothing breaks */
.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(212,168,0,.08);
  transform: translateY(-3px);
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #D4A800 0%, #D4A820 50%, #FFD700 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);
  text-decoration: none;
}
.social-btn svg { fill: currentColor; display: block; }
.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(212,168,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, #D4A800, #FFD700);
  border-radius: 30px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(212,168,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(212,168,0,.7); animation-play-state: paused; }
.dealer-btn-icon { font-size: 1.3rem; line-height: 1; display: none; }
.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(212,168,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(212,168,0,.08); color: var(--white); }
.filter-btn.active { background: rgba(212,168,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(212,168,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); }
  .categories-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; }
.products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  /* Dealer float — compact icon-only on mobile */
  .dealer-btn { height: 52px; width: 52px; padding: 0; border-radius: 50%; gap: 0; }
  .dealer-btn-label { display: none; }
  .dealer-btn-icon { display: block; font-size: 1.5rem; }
  .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(243,243,237,.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: var(--muted); 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); }

.mobile-nav-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg,#D4A800,#FFD700);
  border-radius: 2px;
}
.mobile-nav-catalogue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px;
  background: linear-gradient(135deg,#D4A800,#FFD700);
  color: #fff; font-family: var(--font-d);
  font-size: 1.1rem; letter-spacing: .08em;
  border: none; cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.mobile-nav-catalogue:hover { opacity: .88; transform: translateY(-1px); color: #fff; }
.mobile-nav-distributor {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange) !important;
  font-size: 1.6rem !important;
  border: 2px solid rgba(212,168,0,.3);
  padding: 8px 24px; border-radius: 40px;
}
.mobile-nav-distributor:hover { background: rgba(212,168,0,.08); border-color: var(--orange); }
.mobile-nav-social {
  display: flex; align-items: center; gap: 16px;
}
.mobile-nav-social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.mobile-nav-social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.mobile-nav-social-btn svg { fill: currentColor; display: block; }

/* ─── Product Detail Modal ───────────────────────────────────── */
#pm-overlay {
  display: none; position: fixed; inset: 0; z-index: 11000;
  background: rgba(0,0,0,.78); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 16px;
  overflow-y: auto;
}
#pm-overlay.open { display: flex; animation: pm-fade .22s ease; }
@keyframes pm-fade { from { opacity: 0; } to { opacity: 1; } }

.pm-modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; width: 100%; max-width: 900px;
  position: relative; overflow: hidden;
  animation: pm-up .26s cubic-bezier(.25,.46,.45,.94);
  margin: auto;
}
@keyframes pm-up {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.pm-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--muted); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.pm-close:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.pm-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }

.pm-img-side {
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 20px 20px; gap: 14px;
}
.pm-img-main {
  flex: 1; width: 100%; display: flex; align-items: center; justify-content: center;
}
.pm-img-main img {
  max-width: 100%; max-height: 300px; object-fit: contain;
  mix-blend-mode: multiply; display: block;
}
.pm-no-img { font-size: 5rem; }
.pm-thumbs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pm-thumb {
  width: 52px; height: 52px; border-radius: 8px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer;
  background: var(--bg2); transition: border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.pm-thumb.active { border-color: var(--orange); }
.pm-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.pm-info-side {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  overflow-y: auto; max-height: 80vh;
}
.pm-cat-badge {
  display: inline-flex; align-items: center;
  background: rgba(212,168,0,.1); color: var(--orange);
  border: 1px solid rgba(212,168,0,.25); border-radius: 20px;
  padding: 4px 12px; font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 12px; width: fit-content;
}
.pm-name {
  font-family: var(--font-r); font-size: 1.3rem; font-weight: 800;
  line-height: 1.3; color: var(--white); margin-bottom: 6px;
}
.pm-meta { font-size: .82rem; color: var(--muted); margin-bottom: 20px; line-height: 1.8; }
.pm-specs-label {
  font-size: .7rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}
.pm-specs-table { margin-bottom: 24px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.pm-spec-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 12px; font-size: .84rem;
  border-bottom: 1px solid var(--border);
}
.pm-spec-row:last-child { border-bottom: none; }
.pm-spec-row:nth-child(even) { background: rgba(0,0,0,.03); }
.pm-spec-key { color: var(--muted); }
.pm-spec-val { color: var(--white); font-weight: 600; text-align: right; }

.pm-enquire-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: linear-gradient(135deg,#D4A800,#FFD700);
  color: #fff; border-radius: 10px; border: none;
  font-family: var(--font-d); font-size: 1.05rem; letter-spacing: .1em;
  cursor: pointer; text-decoration: none;
  transition: opacity .2s, transform .15s; margin-top: auto;
}
.pm-enquire-btn:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

@media (max-width: 680px) {
  .pm-layout { grid-template-columns: 1fr; }
  .pm-img-side { min-height: 240px; padding: 20px; }
  .pm-img-main img { max-height: 180px; }
  .pm-info-side { max-height: none; }
}

