/* ============================================================
   AUTO ACCESSORIES — MASTER STYLESHEET
   ============================================================ */

/* ---- GOOGLE FONTS (loaded in HTML) ---- */

/* ---- DESIGN TOKENS ---- */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #181818;
  --bg-card-hover: #202020;
  --accent:        #f0a500;
  --accent-hover:  #ffb800;
  --accent-dark:   #c88600;
  --accent-glow:   rgba(240,165,0,0.18);
  --text-primary:  #ffffff;
  --text-secondary:#aaaaaa;
  --text-muted:    #555555;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(240,165,0,0.25);

  --font-heading:  'Rajdhani', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Inter', 'Roboto', 'Segoe UI', sans-serif;

  --shadow-sm:     0 2px 8px  rgba(0,0,0,0.4);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.7);
  --shadow-accent: 0 6px 28px rgba(240,165,0,0.22);

  --container:     1280px;
  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: none; }
input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title span { color: var(--accent); }
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.accent-line {
  width: 52px; height: 3px;
  background: var(--accent);
  margin: 1rem 0;
}
.accent-line-center { margin: 1rem auto; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-dark  { background: var(--bg-secondary); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-accent);
}
.btn-whatsapp { background: #25d366; color: #fff; border: 2px solid transparent; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-danger { background: #dc3545; color: #fff; border: 2px solid transparent; }
.btn-sm  { padding: 0.5rem 1.2rem;  font-size: 0.85rem; }
.btn-lg  { padding: 1rem 2.5rem;    font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.95rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo .logo-accent { color: var(--accent); }
.nav-logo .logo-dot { color: var(--accent); font-size: 2.2rem; line-height: 0; }
.brand-logo-image-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(240,165,0,0.35);
  box-shadow: 0 6px 14px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
}
.brand-logo-image {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}
.navbar.scrolled .brand-logo-image {
  height: 48px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.58rem 1.05rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--accent); }
.nav-chevron { font-size: 0.65rem; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 210px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--border);
  border-top: none;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-dropdown a:hover { background: var(--accent-glow); color: var(--accent); }
.nav-dropdown a .dd-icon { font-size: 1rem; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  padding: 0.5rem 2rem;
  color: var(--text-primary);
}
.mobile-menu .nav-link:hover { color: var(--accent); }
.mobile-menu-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 340px;
}
.mobile-menu-cats a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.mobile-menu-cats a:hover { border-color: var(--accent); color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
  background-color: #0a0a0a;
  background-image: url('../images/banners/hero.png');
  background-size: cover;
  background-position: center center;
}
/* Dark gradient overlay — always present even with bg image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}
/* Speed-line decorative right panel */
.hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 3px,
    rgba(240,165,0,0.025) 3px,
    rgba(240,165,0,0.025) 6px
  );
  z-index: 2;
}
/* Accent vertical stripe */
.hero-stripe {
  position: absolute;
  right: 45%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.4;
  z-index: 3;
}
/* CSS car silhouette placeholder — replace section background when you have images */
.hero-car-art {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 54%;
  max-width: 780px;
  z-index: 3;
  opacity: 0.15;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.hero-car-art svg { width: 100%; }

.hero-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-image-panel {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(240,165,0,0.45);
  background: #0a0a0a;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(240,165,0,0.16) inset;
  width: 100%;
}

.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,165,0,0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.hero-title .line-accent { color: var(--accent); }
.hero-title .line-light  { font-weight: 400; color: var(--text-secondary); font-size: 0.55em; letter-spacing: 0.15em; display: block; margin-bottom: 0.3em; }

.hero-divider {
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 1.5rem 0;
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.hero-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 1.1rem; }
@keyframes scrollBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ======================================================
   STATS BAR
   ====================================================== */
.stats-bar { background: var(--accent); padding: 2.25rem 0; }
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #000;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ======================================================
   CATEGORY CARDS
   ====================================================== */
.categories-section { padding: 5rem 0; background: var(--bg-secondary); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 48px rgba(240,165,0,0.12);
}
/* Image placeholder gradient (replace with actual <img> inside .cat-img) */
.cat-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.category-card:hover .cat-img-wrap img { transform: scale(1.08); }
/* CSS gradient fallback per category */
.cat-grad-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.cat-grad-2 { background: linear-gradient(135deg, #1a1200 0%, #2d2000 50%, #3d2b00 100%); }
.cat-grad-3 { background: linear-gradient(135deg, #0d1a0d 0%, #152815 50%, #1a3a1a 100%); }
.cat-grad-4 { background: linear-gradient(135deg, #1a0d0d 0%, #2d1515 50%, #3a1a1a 100%); }
.cat-grad-5 { background: linear-gradient(135deg, #0d0d1a 0%, #151528 50%, #1a1a3a 100%); }
.cat-grad-6 { background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #2d2d2d 100%); }

.cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 4rem;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}
.category-card:hover .cat-icon { opacity: 0.4; transform: translate(-50%, -65%); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
  transition: var(--transition);
  z-index: 2;
}
.category-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.45) 60%, rgba(240,165,0,0.03) 100%);
}
.cat-content {
  position: relative;
  z-index: 3;
  padding: 1.25rem 1.4rem;
  width: 100%;
}
.cat-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.cat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.category-card:hover .cat-cta { opacity: 1; transform: translateX(0); }

/* ======================================================
   FEATURED PRODUCTS
   ====================================================== */
.products-section { padding: 5rem 0; }
.section-header { margin-bottom: 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}
.product-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-muted);
}
.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  z-index: 1;
}
.product-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.product-short-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why-section { padding: 5rem 0; background: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.feature-card:hover::after { width: 100%; }
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px; height: 60px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(240,165,0,0.22);
  border-color: var(--accent);
  transform: scale(1.05);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.feature-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ======================================================
   FACTORY / MANUFACTURING SECTION
   ====================================================== */
.factory-section { padding: 5rem 0; overflow: hidden; }
.factory-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.factory-images { position: relative; padding-bottom: 2rem; padding-right: 2rem; }
.factory-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.factory-main-img img { width: 100%; height: 100%; object-fit: cover; }
.factory-thumb {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-lg);
}
.factory-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder for factory images */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 2.5rem;
  background: var(--bg-secondary);
}
.img-placeholder span { font-size: 0.75rem; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

.factory-label { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.75rem; }
.factory-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 1.25rem; }
.factory-text { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.factory-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.75rem;
}
.factory-cap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.cap-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ======================================================
   DEALER CTA BANNER
   ====================================================== */
.dealer-banner {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #0d0a00 0%, #111111 40%, #0d0a00 100%);
}
.dealer-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    transparent, transparent 12px,
    rgba(240,165,0,0.018) 12px,
    rgba(240,165,0,0.018) 24px
  );
}
.dealer-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.dealer-banner-eyebrow { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.dealer-banner-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem; }
.dealer-banner-text { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.dealer-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.dealer-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.dealer-perk-icon { color: var(--accent); }

/* ======================================================
   CONTACT SECTION
   ====================================================== */
.contact-section { padding: 5rem 0; background: var(--bg-secondary); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.contact-info-text { color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.95rem; color: var(--text-primary); line-height: 1.5; }
.contact-wa-btn { margin-top: 2rem; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-form-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.78rem 1rem;
  font-size: 0.925rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(240,165,0,0.03);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg-card); }

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-logo .logo-accent { color: var(--accent); }
.footer-logo .brand-logo-image {
  height: 64px;
}
.footer-logo .brand-logo-image-wrap {
  border-color: rgba(240,165,0,0.25);
  box-shadow: none;
}
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 260px; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social-link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-social-link:hover { background: var(--accent-glow); border-color: var(--border-accent); color: var(--accent); }

.footer-col-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-link { font-size: 0.875rem; color: var(--text-muted); transition: var(--transition-fast); }
.footer-link:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.5; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition-fast); }
.footer-bottom-link:hover { color: var(--accent); }

/* ======================================================
   FLOATING WHATSAPP
   ====================================================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ======================================================
   PAGE HEADER (inner pages)
   ====================================================== */
.page-header {
  padding: 9rem 0 4rem;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.4;
}
.page-header-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(-20deg, transparent, transparent 3px, rgba(240,165,0,0.02) 3px, rgba(240,165,0,0.02) 6px);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { opacity: 0.4; }
.bc-cur { color: var(--text-secondary); }
.page-header-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 0.5rem; }
.page-header-subtitle { color: var(--text-secondary); font-size: 1.05rem; }

/* ======================================================
   CATEGORY PAGE
   ====================================================== */
.category-filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.filter-label-text { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); flex-shrink: 0; }
.filter-sep { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
.filter-sel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  -webkit-appearance: none;
  min-width: 150px;
}
.filter-sel:focus { outline: none; border-color: var(--accent); }
.filter-reset {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.3rem 0.6rem;
}
.filter-reset:hover { color: var(--accent); }

/* ======================================================
   PRODUCT DETAIL PAGE
   ====================================================== */
.product-detail { padding: 2rem 0 5rem; }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery {}
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.6rem; }
.thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--bg-card);
  flex-shrink: 0;
}
.thumb.active, .thumb:hover { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { position: sticky; top: 5.5rem; }
.product-cat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.5rem; }
.product-info-name { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem; }
.product-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.product-info-desc { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }

.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.specs-table td { padding: 0.7rem 0.75rem; font-size: 0.875rem; }
.specs-table td:first-child { color: var(--text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; width: 38%; }

.compat-section-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.compat-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 1.5rem; }
.compat-table th { background: rgba(240,165,0,0.1); color: var(--accent); padding: 0.55rem 0.75rem; text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.compat-table td { padding: 0.55rem 0.75rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.compat-table tr:hover td { background: rgba(255,255,255,0.02); }

.product-cta-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.product-cta-row { display: flex; gap: 0.75rem; }

/* Related products */
.related-section { padding: 3rem 0 5rem; background: var(--bg-secondary); }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.about-intro { padding: 5rem 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-tag { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.75rem; }
.about-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 1.25rem; }
.about-text { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.25rem; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-card); border: 1px solid var(--border); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--border); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 40px; height: 40px; background: var(--accent-glow); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.timeline-body h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.timeline-body p { font-size: 0.85rem; color: var(--text-muted); }

/* ======================================================
   DEALER PAGE
   ====================================================== */
.dealer-form-section { padding: 5rem 0; }
.dealer-form-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: start; }
.dealer-info-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.dealer-info-text { color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }
.dealer-benefits-list { display: flex; flex-direction: column; gap: 0.85rem; }
.dealer-benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); }
.dealer-benefit-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; font-weight: 700; }

/* ======================================================
   LOADING / SKELETON / EMPTY STATES
   ====================================================== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-secondary) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeletonAnim 1.6s infinite;
  border-radius: var(--radius-md);
}
@keyframes skeletonAnim { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state-text { font-size: 0.9rem; }

/* ======================================================
   UTILITIES
   ====================================================== */
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-muted); }
.text-secondary{ color: var(--text-secondary); }
.text-center   { text-align: center; }
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center{ justify-content: center; }
.gap-sm        { gap: 0.75rem; }
.gap-md        { gap: 1.5rem; }
.mt-sm         { margin-top: 0.75rem; }
.mt-md         { margin-top: 1.5rem; }
.mt-lg         { margin-top: 2.5rem; }
.mb-sm         { margin-bottom: 0.75rem; }
.mb-md         { margin-bottom: 1.5rem; }
.separator     { height: 1px; background: var(--border); margin: 2rem 0; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-image-panel {
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
  }
  .hero-image-panel img { min-height: 320px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .factory-layout, .product-detail-layout, .contact-layout,
  .about-layout, .dealer-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-info { position: static; }
  .factory-thumb { right: 1rem; bottom: 0.5rem; }
}
@media (max-width: 900px) {
  .categories-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-center, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .brand-logo-text { font-size: 0.88rem; letter-spacing: 0.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
  /* Shrink navbar to fit mobile screen */
  .navbar { padding: 0.75rem 0; }
  .navbar .container { min-height: 0; }
  /* Shrink logo to 40px on mobile, overriding inline styles */
  .brand-logo-image-wrap { width: 40px !important; height: 40px !important; }
  .brand-logo-image { height: 40px !important; width: 40px !important; max-height: 40px !important; max-width: 40px !important; }
  /* Hero clears the mobile navbar (~64px) with breathing room */
  .hero { padding-top: 80px; }
  /* Hide decorative elements — look broken on narrow screens */
  .hero-deco, .hero-stripe { display: none; }
  .hero-image-panel { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .dealer-perks { flex-direction: column; align-items: center; gap: 0.75rem; }
}
@media (max-width: 560px) {
  .categories-grid  { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr; }
  .hero { padding-top: 74px; }
  .hero-image-panel img { min-height: 250px; }
  .hero-buttons     { flex-direction: column; }
  .hero-stats       { flex-direction: column; border-top: none; padding-top: 1rem; gap: 1rem; }
  .product-cta-row  { flex-direction: column; }
  .dealer-form-layout { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}
