/* ============================
   ACE VANS ADVENTURE - STYLES
   Retro Adventure Aesthetic
   ============================ */

:root {
  --navy: #1B2D45;
  --navy-light: #243b5a;
  --red: #D94032;
  --orange: #E8682A;
  --coral: #F08541;
  --gold: #F5B731;
  --cream: #F5F0E1;
  --cream-dark: #E8E0CC;
  --white: #FEFCF7;
  --text: #1B2D45;
  --text-muted: #5a6a7e;

  --font-heading: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(27, 45, 69, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 50px;
  transition: height 0.3s var(--ease);
}
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  transition: all 0.3s var(--ease) !important;
  text-shadow: none !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27,45,69,0.6) 0%,
    rgba(27,45,69,0.3) 40%,
    rgba(27,45,69,0.5) 70%,
    rgba(27,45,69,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: fadeUp 1.2s var(--ease) forwards;
}
.hero-logo {
  width: 320px;
  max-width: 80vw;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.hero-tagline {
  color: var(--cream);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
  padding: 28px 0;
}
.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  min-width: 160px;
}
.trust-number {
  font-family: var(--font-display, inherit);
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.trust-label {
  color: var(--cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
  opacity: 0.9;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,240,225,0.25);
}
@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-stat { padding: 0 16px; min-width: 45%; }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232,104,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232,104,42,0.4);
  background: linear-gradient(135deg, var(--coral), var(--gold));
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}
.full-width { width: 100%; }

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.section-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.about-text .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.5;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.value-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============ RETRO DIVIDER ============ */
.retro-divider {
  display: flex;
  flex-direction: column;
}
.stripe {
  height: 8px;
}
.stripe-1 { background: var(--red); }
.stripe-2 { background: var(--orange); }
.stripe-3 { background: var(--coral); }
.stripe-4 { background: var(--gold); }

/* ============ PROCESS ============ */
.process {
  background: var(--navy);
  color: var(--cream);
}
.process .section-badge {
  background: rgba(245,183,49,0.15);
  color: var(--gold);
}
.process .section-title { color: var(--cream); }
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 24px;
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.step-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: rgba(245,183,49,0.1);
  border: 2px solid rgba(245,183,49,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}
.process-step:hover .step-icon {
  background: rgba(245,183,49,0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--cream);
}
.process-step p {
  font-size: 0.92rem;
  color: rgba(245,240,225,0.7);
  line-height: 1.6;
}
.process-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
}

/* ============ BUILDS ============ */
.builds { background: var(--cream); }
.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.build-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease);
  position: relative;
}
.build-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
/* Level 2 Gallery */
.build-gallery {
  width: 100%;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-nav:hover { background: rgba(232,135,37,0.8); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: rgba(0,0,0,0.3);
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-thumbs .thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.gallery-thumbs .thumb:hover { opacity: 0.8; }
.gallery-thumbs .thumb.active {
  opacity: 1;
  border-color: var(--orange);
}

/* Level III — Design Your Own */
.level3-premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
  border: 2px solid var(--orange) !important;
  position: relative;
  overflow: hidden;
}
.level3-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230,126,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.level3-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #e74c3c);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.level3-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.5;
}
.level3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.level3-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s ease;
}
.level3-feature-card:hover {
  background: rgba(230,126,34,0.12);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.level3-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.level3-feature-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--orange);
  font-size: 0.95rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.level3-feature-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.level3-extras {
  margin-bottom: 24px;
  text-align: center;
}
.level3-extras h4 {
  font-family: 'Oswald', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.level3-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.level3-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.level3-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(230,126,34,0.1);
}
.btn-level3 {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #e74c3c);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}
.btn-level3:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230,126,34,0.5);
}
@media (max-width: 600px) {
  .level3-grid { grid-template-columns: repeat(2, 1fr); }
}

.build-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--orange);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.build-customize-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: rgba(232, 135, 37, 0.06);
  border-radius: 12px;
  border: 1px dashed rgba(232, 135, 37, 0.25);
}
.customize-step {
  text-align: center;
  padding: 0.75rem 0.5rem;
}
.customize-step .step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.6rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.customize-step h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  color: var(--cream);
}
.customize-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .build-customize-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.build-image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.build-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.build-card:hover .build-image img {
  transform: scale(1.05);
}
.build-card.featured {
  border: 3px solid var(--orange);
  transform: scale(1.03);
}
.build-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.build-ribbon {
  position: absolute;
  top: 16px; right: -30px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(35deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.build-header {
  padding: 32px 28px 24px;
  color: var(--cream);
}
.level-1 { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.level-2 { background: linear-gradient(135deg, var(--orange), var(--coral)); }
.level-3 { background: linear-gradient(135deg, var(--red), var(--orange)); }
.build-level {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.build-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}
.build-body {
  padding: 28px;
}
.build-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.build-features {
  margin-bottom: 24px;
}
.build-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.build-features li:last-child { border-bottom: none; }
.build-features svg { color: var(--orange); flex-shrink: 0; }

/* ============ CONTACT ============ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 8px;
}
.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #2d8a4e;
  font-weight: 600;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: 14px;
  transition: transform 0.3s;
}
.info-card:hover { transform: translateX(4px); }
.info-card svg {
  flex-shrink: 0;
  color: var(--orange);
}
.info-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.info-card p {
  font-weight: 600;
  color: var(--navy);
}
.quote-card {
  background: var(--navy);
  padding: 28px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
}
.quote-card blockquote {
  color: var(--cream);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  padding: 60px 0 40px;
  color: var(--cream);
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  height: 70px;
  margin: 0 auto 16px;
  opacity: 0.9;
}
.footer-tagline {
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 24px;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-links a {
  color: var(--cream);
  opacity: 0.6;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .section-title { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { flex-direction: column; gap: 16px; }
  .process-connector { display: none; }
  .builds-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .build-card.featured { transform: none; }
  .build-card.featured:hover { transform: translateY(-8px); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 250px; }
  .hero-tagline { font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.8rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s var(--ease);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { text-shadow: none; font-size: 1rem; }
  .nav-cta { text-align: center; }
  .contact-form { padding: 24px; }
  .hero-logo { width: 200px; }
}

/* ===== INVENTORY ===== */
.inventory { background: var(--bg-dark); }
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.inventory-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inventory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.inventory-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.inventory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inventory-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-green);
  color: var(--bg-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.inventory-details {
  padding: 24px;
}
.inventory-details h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.inventory-specs {
  color: var(--accent-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.inventory-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.placeholder-img {
  height: 240px;
  background: linear-gradient(135deg, rgba(211,140,50,0.15), rgba(180,80,40,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.coming-soon-overlay {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== KEI TRUCKS ===== */
.kei-trucks { background: var(--bg-section); }
.kei-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.kei-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.kei-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}
.kei-icon {
  color: var(--accent-orange);
  margin-bottom: 16px;
}
.kei-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.kei-feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CTA BANNER (shared) ===== */
.cta-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(211,140,50,0.12), rgba(180,80,40,0.12));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===== OEM BODY PARTS ===== */
.oem-parts { background: var(--bg-dark); }
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.part-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.part-category h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.part-category ul {
  list-style: none;
  padding: 0;
}
.part-category li {
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 20px;
}
.part-category li:last-child { border-bottom: none; }
.part-category li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

/* ===== WINDSHIELDS ===== */
.windshields { background: var(--navy); }
.windshield-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.windshield-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.windshield-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}
.windshield-card svg {
  color: var(--accent-orange);
  margin-bottom: 16px;
}
.windshield-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.windshield-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MERCH ===== */
.merch { background: var(--bg-dark); }
/* Coming Soon Merch */
.merch-coming-soon {
  text-align: center;
  margin-top: 48px;
}
.merch-coming-graphic {
  background: var(--bg-card);
  border: 2px dashed var(--accent-orange);
  border-radius: 20px;
  padding: 48px 32px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.merch-van-ascii {
  margin-bottom: 16px;
}
.merch-van-ascii pre {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: var(--accent-orange);
  line-height: 1.3;
  display: inline-block;
  text-align: left;
}
.merch-hard-hat {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.merch-coming-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 16px;
  letter-spacing: 3px;
  animation: merchPulse 2s ease-in-out infinite;
}
@keyframes merchPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}
.merch-coming-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}
.merch-sneak-peek {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.merch-peek-item {
  background: rgba(211,140,50,0.12);
  border: 1px solid rgba(211,140,50,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
}
.merch-coming-punchline {
  font-style: italic;
  color: var(--accent-orange);
  font-size: 1rem;
  margin-top: 8px;
}
.merch-notify-btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-section); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}
.testimonial-stars {
  color: var(--accent-orange);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Add scroll reveal to new sections */
.inventory-card, .kei-feature-card, .part-category,
.windshield-card, .merch-card, .testimonial-card {
  opacity: 1;
}

@media (max-width: 768px) {
  .inventory-grid,
  .kei-features-grid,
  .parts-grid,
  .windshield-info,
  .merch-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner { padding: 24px 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .customize-step { flex-direction: column; align-items: center; text-align: center; }
  .step-number { position: static; margin-bottom: 12px; }
  .color-selector { grid-template-columns: 1fr; }
}

/* ═══ CUSTOMIZE STEPS ═══ */
.customize-step {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0 32px;
  padding: 24px 32px;
  background: rgba(230, 126, 34, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.step-number {
  font-family: 'Courier New', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.step-desc {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
  max-width: 600px;
}

/* ═══ COLOR SELECTOR ═══ */
.color-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.color-category h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.swatch.active {
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.25);
}
.swatch-check {
  display: none;
  color: var(--accent);
  font-weight: 900;
  font-size: 1rem;
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}
.swatch.active .swatch-check {
  display: block;
}
/* invert check color for light swatches */
.swatch[style*="F5F0E8"] .swatch-check,
.swatch[style*="FFFFFF"] .swatch-check,
.swatch[style*="ECF0F1"] .swatch-check,
.swatch[style*="F1C40F"] .swatch-check {
  color: #333;
}
.custom-swatch {
  background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #9b59b6) !important;
  border: 2px dashed #aaa;
}
.custom-swatch svg {
  stroke: #fff;
}
.color-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.color-note {
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .color-selector {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* === KEI TRUCK INVENTORY === */
.kei-inventory-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin: 48px 0 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.kei-inventory-grid {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.kei-truck-card {
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.kei-truck-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #27ae60;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.kei-truck-gallery {
  width: 100%;
}
.kei-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}
.kei-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kei-gallery-main .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.kei-gallery-main .gallery-arrow:hover { background: var(--accent); }
.kei-gallery-main .gallery-prev { left: 12px; }
.kei-gallery-main .gallery-next { right: 12px; }
.kei-gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px;
  overflow-x: auto;
  background: rgba(26,42,58,0.06);
  border-radius: 0 0 12px 12px;
}
.kei-thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kei-thumb.active,
.kei-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}
/* ── Inventory listing cards ── */
.kei-listing {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.kei-listing .kei-gallery {
  border-radius: 12px;
  overflow: hidden;
  margin: 16px;
}
.kei-info {
  padding: 32px;
}
.kei-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.kei-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.kei-pill {
  background: rgba(26,42,58,0.08);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(26,42,58,0.12);
}
.kei-description {
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}
.kei-specs-section {
  background: rgba(26,42,58,0.04);
  border: 1px solid rgba(26,42,58,0.12);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.kei-specs-section h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.kei-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px;
}
.kei-service-list li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.kei-service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}
@media (max-width: 768px) {
  .kei-info { padding: 20px; }
  .kei-name { font-size: 1.3rem; }
  .kei-service-list { grid-template-columns: 1fr; }
  .kei-highlights { gap: 6px; }
  .kei-pill { font-size: 0.75rem; padding: 5px 10px; }
}

.kei-truck-info {
  padding: 28px;
}
.kei-truck-info h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.kei-truck-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.kei-truck-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 20px;
}
.kei-spec {
  font-size: 0.9rem;
  color: var(--text-light);
}
.kei-spec strong {
  color: var(--accent);
}
.kei-truck-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.kei-truck-service {
  background: rgba(230,126,34,0.08);
  border: 1px solid rgba(230,126,34,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.kei-truck-service h5 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1rem;
}
.kei-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.kei-truck-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.kei-highlight {
  background: rgba(39,174,96,0.15);
  color: #27ae60;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.kei-inquire-btn {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .kei-truck-specs { grid-template-columns: 1fr; }
  .kei-service-grid { grid-template-columns: 1fr; }
}

/* === KEI TRUCKS HERO HEADER === */
.kei-hero-header {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.kei-hero-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kei-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.kei-hero-overlay .section-badge,
.kei-hero-overlay .section-title {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Mantis thumbs */
.kei-mthumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kei-mthumb.active,
.kei-mthumb:hover {
  opacity: 1;
  border-color: var(--accent);
}

/* Blue Steel thumbs */
.kei-bthumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.kei-bthumb.active,
.kei-bthumb:hover {
  opacity: 1;
  border-color: var(--accent);
}

/* Windshield Style Cards */
/* Windshield Hero */
.windshield-hero {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.windshield-hero img {
  width: 100%;
  display: block;
}
/* Windshield VIN Notice */
.windshield-vin-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(230,126,34,0.1);
  border: 1px solid rgba(230,126,34,0.3);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.windshield-vin-notice svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.windshield-vin-notice p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
/* Windshield Compatibility */
.windshield-compat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.windshield-compat h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.windshield-compat > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.chassis-codes {
  margin-top: 0.5rem;
}
.codes-primary {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.9;
  font-family: 'Courier New', monospace;
  word-break: break-word;
}
.codes-expand {
  margin-top: 1rem;
}
.codes-expand summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.codes-expand summary:hover {
  text-decoration: underline;
}
.codes-expand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  font-family: 'Courier New', monospace;
  word-break: break-word;
}
/* Fitment Notice */
.windshield-fitment-notice {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.windshield-fitment-notice h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 0.8rem;
}
.windshield-fitment-notice p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.windshield-fitment-notice p:last-child {
  margin-bottom: 0;
}
.windshield-card ul {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.2rem;
}
@media (max-width: 600px) {
  .windshield-vin-notice { flex-direction: column; padding: 1.2rem; }
  .windshield-compat, .windshield-fitment-notice { padding: 1.5rem; }
}

/* OEM Body Parts - Updated */
.oem-highlight {
  margin: 3rem 0;
}
.oem-icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.oem-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}
.oem-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230,126,34,0.15);
}
.oem-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}
.oem-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.oem-donor-note {
  background: rgba(230,126,34,0.08);
  border: 1px solid rgba(230,126,34,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0 3rem;
  text-align: center;
}
.oem-donor-note p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .oem-icon-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .oem-icon-row { grid-template-columns: repeat(2, 1fr); }
}
