/* ========================================
   GLOBAL THEME VARIABLES (Light & Dark)
   ======================================== */
:root {
  /* LIGHT MODE (Warm & Clean Orange/Amber Theme) */
  --bg: #fdfbf7;                  /* Warm light background */
  --panel: rgba(255, 255, 255, 0.95); /* Glassy white */
  --panel-solid: #ffffff;
  --panel-hover: rgba(255, 247, 237, 0.85); /* Warm light amber hover */
  --text: #1c1917;                /* Warm stone text */
  --muted: #78716c;               /* Warm stone muted */
  --accent: #ea580c;              /* Rich Warm Brand Orange (from logo) */
  --accent-hover: #c2410c;        /* Deeper warm orange hover (no red) */
  --danger: #dc2626;
  --success: #10b981;
  --border: rgba(234, 88, 12, 0.15); /* Subtle warm border */
  
  --nav-bg: rgba(255, 247, 237, 0.95); /* Warm light header */
  --nav-text: #1c1917;
  --nav-muted: #78716c;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
  /* DARK MODE (Warm Obsidian & Amber Glow) */
  --bg: #12100e;                  /* Deep warm dark background */
  --panel: rgba(32, 26, 22, 0.7); /* Warm glassy panel background */
  --panel-solid: #1c1815;         /* Solid warm charcoal */
  --panel-hover: rgba(48, 38, 32, 0.85);
  --text: #fafaf9;                /* Warm white */
  --muted: #a8a29e;               /* Warm stone muted */
  --accent: #ff7500;              /* Vibrant logo orange */
  --accent-hover: #ea580c;
  --border: rgba(251, 146, 60, 0.18);
  
  --nav-bg: rgba(18, 16, 14, 0.95);
  --nav-text: #fafaf9;
  --nav-muted: #a8a29e;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* ========================================
   GLOBAL RESETS & TYPOGRAPHY
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg); 
  color: var(--text); 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: clip;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section { padding-block: clamp(38px, 6vw, 70px); padding-inline: 0; }

/* ====================================================
   HOMEPAGE CONTAINER SYSTEM (Percentage-Based Widths)
   ==================================================== */
/* Type A: Normal Content Sections (95% width) */
.home-page .container,
.home-page .why-us-container {
  width: 95%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-right: clamp(0.5rem, 1.5vw, 1.5rem);
  box-sizing: border-box;
}

/* Type B: Full-Width Visual & Banner Sections (100% width) */
.home-page .full-width-section,
.home-page .full-width-banner-section,
.home-page .upgrade-full-section,
.home-page .final-cta-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.section { padding: 4rem 0; }
.section-header { 
  text-align: center; 
  width: 100%; 
  margin-inline: auto; 
  margin-bottom: 2.5rem; 
}
.section-title { 
  font-size: clamp(1.8rem, 3vw, 2.3rem); 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  color: var(--text); 
  margin-bottom: 0.5rem; 
}
.section-subtitle { 
  font-size: 1rem; 
  color: var(--muted); 
  max-width: 700px; 
  margin-inline: auto; 
  line-height: 1.6; 
}
.main-content { margin-top: 90px; min-height: calc(100vh - 180px); }

/* ========================================
   GLOBAL COMPONENTS
   ======================================== */
/* Loader */
.loader { position: fixed; inset: 0; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none;}
.loader-text { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: background 0.3s ease;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1700px; margin: 0 auto; padding: 0 5%; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--nav-text); letter-spacing: -0.5px; }
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-link { color: var(--nav-muted); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--nav-text); }

/* Search Bar & Popup */
.nav-search {
  position: relative;
  display: flex; align-items: center; flex: 1; max-width: 500px; margin: 0 2rem;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 0.5rem 1rem; transition: 0.2s;
}
.nav-search:focus-within { border-color: #ffffff; background: rgba(255,255,255,0.15); }
.nav-search svg { width: 18px; height: 18px; color: var(--nav-muted); margin-right: 0.5rem; }
.nav-search input { background: transparent; border: none; color: #ffffff; width: 100%; outline: none; font-size: 0.95rem; }
.nav-search input::placeholder { color: var(--nav-muted); }

.search-popup {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--panel-solid); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-height: 400px; overflow-y: auto; z-index: 1001;
  display: none; flex-direction: column;
}
.search-popup.active { display: flex; }
.search-group-title { padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; background: rgba(0,0,0,0.05); }
.search-item { padding: 0.75rem 1rem; display: flex; align-items: center; gap: 1rem; color: var(--text); transition: 0.2s; border-bottom: 1px solid var(--border); }
.search-item:hover { background: var(--panel-hover); }
.search-item img { width: 40px; height: 40px; border-radius: 4px; object-fit: cover; background: var(--bg); }
.search-item-info { display: flex; flex-direction: column; }
.search-item-title { font-weight: 600; font-size: 0.9rem; }
.search-item-sub { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem;}

/* Cart & Theme Icons */
.nav-icons { display: flex; align-items: center; gap: 1.5rem; }
.icon-btn { position: relative; color: var(--nav-text); transition: color 0.2s; display: flex; align-items: center; }
.icon-btn:hover { color: var(--nav-muted); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--danger); color: white; font-size: 0.65rem; font-weight: 700; padding: 2px 6px; border-radius: 10px; border: 2px solid var(--nav-bg); }

/* Shared Product Cards */
.products-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: clamp(1rem, 1.8vw, 1.75rem); 
  width: 100%;
}
.product-card {
  background: var(--panel);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.product-badges { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 10; pointer-events: none;}
.badge-tag { padding: 0.25rem 0.6rem; font-size: 0.7rem; font-weight: 600; border-radius: 4px; text-transform: uppercase; background: var(--panel-solid); border: 1px solid var(--border); color: var(--text);}
.badge-sale { background: var(--danger); color: white; border: none; }
.badge-oos { background: var(--muted); color: white; border: none; }
.product-image { position: relative; aspect-ratio: 1/1; background: var(--bg); overflow: hidden; display: block; }
.prod-img-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: blur(15px); transform: scale(1.05); transition: 0.5s; z-index: 1; }
.prod-img-full { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: 0.5s; z-index: 2; }
.product-info { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--text); }
.product-category { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px;}
.price-container { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; margin-top: auto; }
.price-regular { font-size: 1.15rem; font-weight: 700; color: var(--accent); margin-bottom: 1.25rem; margin-top: auto;}
.price-old { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.price-current { font-size: 1.15rem; font-weight: 700; color: var(--danger); }
.btn-cart { width: 100%; padding: 0.8rem; font-size: 0.9rem; font-weight: 600; background: var(--panel-solid); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-cart:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: white; }
.btn-cart:disabled { opacity: 0.5; cursor: not-allowed; }

/* Global Toast */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--success); color: white; padding: 1rem 1.5rem; border-radius: var(--radius-sm); z-index: 9999; opacity: 0; transform: translateY(20px); transition: 0.3s; font-weight: 500; pointer-events: none;}
.toast.show { opacity: 1; transform: translateY(0); }

/* Footer */
.footer { background: var(--nav-bg); color: var(--nav-muted); padding: 3rem 0; border-top: 1px solid var(--border); text-align: center; font-size: 0.9rem; }

@media (max-width: 992px) {
  .nav-menu, .nav-search { display: none; }
}

/* ========================================
   NEW ADDITIONS & FIXES
   ======================================== */

/* Fix 5: Cart Icon Size Fix */
.btn-cart svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Fix 3: Nav Logo */
.nav-logo-img {
  height: 60px; 
  width: auto;
  object-fit: contain;
}

/* Fix 1: Popup Styles */
.offer-popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; justify-content: center; align-items: center;
  z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.offer-popup-overlay.show {
  opacity: 1; visibility: visible;
}
.offer-popup-content {
  background: var(--bg); padding: 2.5rem; border-radius: var(--radius-lg);
  position: relative; max-width: 500px; width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 1px solid var(--border);
  transform: translateY(20px); transition: 0.3s ease;
}
.offer-popup-overlay.show .offer-popup-content { transform: translateY(0); }
.close-popup {
  position: absolute; top: 15px; right: 15px; font-size: 1.8rem;
  line-height: 1; background: none; border: none; cursor: pointer; color: var(--muted); transition: 0.2s;
}
.close-popup:hover { color: var(--danger); }

/* Fix 6: WhatsApp Button Styles */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  background-color: #25d366; color: white;
  width: 60px; height: 60px; border-radius: 50px;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999; transition: transform 0.3s ease, background-color 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe57; color: white;}

/* --- Fix 3: Theme-based Hero Filters --- */
/* Default (Light Mode) - Lighter filter */
.hero-overlay { 
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to bottom, rgba(18, 16, 14, 0.35) 0%, rgba(18, 16, 14, 0.15) 40%, rgba(18, 16, 14, 0.45) 100%);
  transition: background 0.3s ease;
}

/* Dark Mode Override - Darker filter */
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(to bottom, rgba(18, 16, 14, 0.85) 0%, rgba(18, 16, 14, 0.55) 40%, rgba(18, 16, 14, 0.95) 100%);
}

/* --- Fix 4: Thinner Banners (Desktop vs Mobile) --- */
.parallax-banner {
  width: 100vw; 
  height: 25vh; /* Half as thick on desktop */
  min-height: 250px; 
  background-size: cover; 
  background-position: center; 
  background-attachment: fixed; 
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

/* Mobile: Much thinner (approx 1/5th of original) */
@media (max-width: 768px) {
  .parallax-banner {
    height: 10vh; 
    min-height: 120px;
    background-attachment: scroll; /* Note: Parallax is often buggy on mobile iOS, scroll is safer, but you can remove this line if you want to force fixed */
  }
}

/* ========================================
   GLOBAL OVERRIDES (Added for all pages)
   ======================================== */

/* 1. Warm Amber-Cream Navbar & Stone Text (Light Mode Default) */
:root {
  --nav-bg: rgba(255, 247, 237, 0.95) !important; 
  --nav-text: #1c1917 !important;                 
  --nav-muted: #78716c !important;                
}

/* 2. Dark Mode Navbar Colors (Forces Dark Mode to work) */
html[data-theme="dark"] {
  --nav-bg: rgba(18, 16, 14, 0.95) !important;
  --nav-text: #fafaf9 !important;
  --nav-muted: #a8a29e !important;
}

/* 3. 50% Bigger Logo */
.nav-logo-img { 
  height: 50px !important; 
  width: auto !important; 
  object-fit: contain !important; 
  transform: scale(1.5) !important; 
  transform-origin: left center !important;
  transition: filter 0.3s ease !important;
}

html[data-theme="dark"] .nav-logo-img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)) !important;
}

/* 4. Mobile Layout Adjustments */
@media (max-width: 992px) {
  .nav-container { flex-wrap: wrap !important; }
  .nav-search { 
    display: flex !important;
    order: 3 !important; 
    flex: 0 0 100% !important; 
    max-width: 100% !important; 
    margin: 1rem 0 0 0 !important; 
  }
  
  /* Fixes the overlapping bug on mobile by pushing content down */
  .main-content > .section:first-child {
    padding-top: 6rem !important; 
  }
}

/* ========================================
   GLOBAL SHARE MODAL STYLES
   ======================================== */
.share-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  z-index: 10005; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.share-modal-overlay.open { opacity: 1; visibility: visible; }
.share-modal-box {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; width: 90%; max-width: 400px; text-align: center; position: relative;
  transform: translateY(20px); transition: 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.share-modal-overlay.open .share-modal-box { transform: translateY(0); }
.close-share {
  position: absolute; top: 15px; right: 15px; font-size: 1.8rem; line-height: 1;
  background: none; border: none; cursor: pointer; color: var(--muted); transition: 0.2s;
}
.close-share:hover { color: var(--danger); }

/* ========================================
   AUTHENTICATION PAGE STYLES (auth.html)
   ======================================== */
.auth-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg), #1c1815); /* Sleek warm dark gradient */
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  z-index: 10;
}

/* Smooth Fade-In Animation */
.auth-container.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.auth-container.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* The Glass-Morphism Card */
.auth-card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  width: 55px;
  height: 55px;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Form Inputs */
.auth-form .form-group {
  margin-bottom: 1.5rem;
}
.auth-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.auth-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: 0.2s;
}
.auth-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 117, 0, 0.2);
}

/* Buttons */
.btn-full {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Google Button */
.btn-google {
  background: var(--panel-solid);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-google:hover {
  background: var(--panel-hover);
  border-color: var(--muted);
}
.btn-google svg {
  width: 22px;
  height: 22px;
}

/* Dividers & Text */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.auth-divider span {
  padding: 0 10px;
}

.auth-toggle {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.toggle-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 5px;
  font-size: 0.9rem;
}
.toggle-btn:hover {
  text-decoration: underline;
}

/* Error/Success Messages */
.auth-message {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: none;
  text-align: center;
}
.auth-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.auth-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Footer Positioning */
.auth-footer {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  border: none;
  background: transparent;
  z-index: 1;
}
.auth-footer p { margin-bottom: 0.2rem; }
.auth-footer a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ========================================
   PREMIUM AUTOMOTIVE HOMEPAGE COMPONENTS
   ======================================== */

/* 1. Hero CTAs */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--accent);
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.5);
  color: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28, 24, 21, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

/* 2. Why Choose Us - Compact Feature Strip */
.why-us-container {
  width: 95%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 1.5vw, 1.5rem);
  box-sizing: border-box;
}

.benefits-strip-wrapper {
  position: relative;
  width: 100%;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefits-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
}

.benefit-strip-item {
  padding: 1.85rem 1.15rem 2rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--border);
  transition: background-color 0.25s ease, transform 0.25s ease;
  position: relative;
  background: transparent;
}

.benefit-strip-item:last-child {
  border-right: none;
}

.benefit-strip-item:hover {
  background: rgba(255, 117, 0, 0.04);
}

.benefit-strip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.1rem;
}

.benefit-subtle-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: 1.5px;
  font-family: inherit;
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 117, 0, 0.12);
  border: 1px solid rgba(255, 117, 0, 0.22);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.benefit-strip-item:hover .benefit-icon-box {
  transform: translateY(-2px);
  background: rgba(255, 117, 0, 0.2);
  border-color: var(--accent);
}

.benefit-icon-box svg {
  width: 24px;
  height: 24px;
  display: block;
}

.benefit-strip-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.benefit-strip-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.benefits-dots {
  display: none;
}

/* Tablet (768px - 1099px): 3 columns x 2 rows */
@media (max-width: 1099px) and (min-width: 768px) {
  .benefits-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-strip-item {
    padding: 1.75rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .benefit-strip-item:nth-child(3n) {
    border-right: none;
  }
  .benefit-strip-item:nth-child(4),
  .benefit-strip-item:nth-child(5),
  .benefit-strip-item:nth-child(6) {
    border-bottom: none;
  }
}

/* Mobile (<= 767px): 1 item at a time slider */
@media (max-width: 767px) {
  .why-us-container {
    padding: 0 1rem;
  }
  .benefits-strip-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
  }
  .benefits-track {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    grid-template-columns: none;
  }
  .benefit-strip-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: none;
    padding: 2.25rem 1.5rem 1.75rem 1.5rem;
    align-items: center;
    text-align: center;
  }
  .benefit-strip-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.15rem;
  }
  .benefit-subtle-num {
    font-size: 0.75rem;
  }
  .benefit-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
  }
  .benefit-icon-box svg {
    width: 28px;
    height: 28px;
  }
  .benefit-strip-title {
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
  }
  .benefit-strip-desc {
    font-size: 0.9rem;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .benefits-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0 1.5rem 0;
    background: transparent;
  }
  .b-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
  }
  .b-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 6px;
  }
}

/* 3. Reviews / Testimonials */
.reviews-container {
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 1rem 0.25rem;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.quote-icon {
  color: var(--muted);
  opacity: 0.4;
}
.quote-icon svg {
  width: 28px;
  height: 28px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info {
  display: flex;
  flex-direction: column;
}
.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.review-verified {
  font-size: 0.75rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-verified svg {
  width: 12px;
  height: 12px;
}
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.review-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel-solid);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.review-arrow-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* 4. Them vs Us Comparison */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.comp-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.comp-them {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.comp-us {
  background: rgba(234, 88, 12, 0.05);
  border: 1px solid var(--accent);
  position: relative;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.12);
}
.comp-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.comp-badge.them {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.comp-badge.us {
  background: var(--accent);
  color: #ffffff;
}
.comp-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.comp-icon-x {
  width: 20px;
  height: 20px;
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-icon-check {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--panel-solid);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--muted);
  box-shadow: var(--shadow);
}

/* Type B - Full-Width Promotional Banners */
.full-width-banner-section {
  width: 100%;
  max-width: none;
  padding: 2.5rem 0;
  box-sizing: border-box;
}
.full-width-banner-container {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-sizing: border-box;
}
.promo-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  display: block;
}
.promo-banner {
  width: 100%;
  aspect-ratio: 4 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 5. Ready to Upgrade CTA (Type B Full-Width Section) */
.upgrade-full-section {
  width: 100%;
  max-width: none;
  padding: 3rem 0;
  box-sizing: border-box;
}
.upgrade-full-layout {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #14110f 0%, #291d15 50%, #21160e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  box-sizing: border-box;
}
.upgrade-media-col {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 24, 21, 0.6);
  overflow: hidden;
}
.upgrade-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upgrade-visual-graphic {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 117, 0, 0.22) 0%, rgba(18, 16, 14, 0.95) 75%);
  padding: 2rem;
}
.upgrade-visual-wheel {
  width: 80%;
  max-width: 260px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  animation: spin 60s linear infinite;
}
.upgrade-content-col {
  flex: 0 0 55%;
  max-width: 55%;
  padding: clamp(2.5rem, 4vw, 5rem) clamp(2rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  box-sizing: border-box;
}
.upgrade-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 117, 0, 0.15);
  border: 1px solid rgba(255, 117, 0, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.upgrade-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}
.upgrade-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 680px;
}
.upgrade-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-upgrade-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.btn-upgrade-wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-upgrade-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s;
}
.btn-upgrade-call:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

/* 6. Simple 4-Step Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.process-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.process-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.step-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  background: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  color: var(--muted);
}
.step-icon svg {
  width: 26px;
  height: 26px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* 7. Dedicated Brands Grid (6 per row on desktop) */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  width: 100%;
}
.brand-card-box {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow);
  width: 100%;
  box-sizing: border-box;
}
.brand-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.brand-card-box img {
  max-height: 50px;
  max-width: 75%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, transform 0.2s ease;
  display: block;
  margin: 0 auto;
}
.brand-card-box:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}
.brand-card-box span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

/* 8. Featured Vehicle Builds */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.build-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.build-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.build-img-box {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #090e17;
  overflow: hidden;
  position: relative;
}
.build-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.build-card:hover .build-img-box img {
  transform: scale(1.04);
}
.build-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.build-vehicle {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.build-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.build-spec-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.build-spec-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.build-spec-val {
  font-weight: 600;
  color: var(--text);
}

/* 9. FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}
.faq-item.active {
  border-color: var(--accent);
}
.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon-cross {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon-cross {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.75rem;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* 10. Final Conversion Card (Type B Full-Width) */
.final-cta-section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.final-cta-full-wrap {
  width: 100%;
  max-width: none;
  padding: 0;
  box-sizing: border-box;
}
.final-cta-card {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(18, 16, 14, 0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  box-sizing: border-box;
}
.final-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.final-cta-card p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.6;
}
.final-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ======================================== */
@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
  .home-page .container,
  .home-page .why-us-container {
    width: 95%;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .builds-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 280px;
  }
}

/* Mobile & Small Tablet (<= 768px) */
@media (max-width: 768px) {
  .home-page .container,
  .home-page .why-us-container,
  .new-arrivals-section .container {
    width: 94% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-left: clamp(0.25rem, 1vw, 0.75rem) !important;
    padding-right: clamp(0.25rem, 1vw, 0.75rem) !important;
    box-sizing: border-box !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
  }
  .comp-card {
    width: 100%;
    padding: 1.75rem 1.25rem;
    box-sizing: border-box;
  }
  .comp-vs {
    margin: -0.25rem 0;
  }
  .comp-vs-circle {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }
  
  .upgrade-full-layout {
    flex-direction: column;
    width: 100%;
  }
  .upgrade-media-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    max-height: 320px;
  }
  .upgrade-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .upgrade-visual-graphic {
    min-height: 220px;
    padding: 2rem 1rem;
  }
  .upgrade-visual-wheel {
    max-width: 160px;
  }
  .upgrade-content-col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.25rem;
    box-sizing: border-box;
  }
  .upgrade-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .upgrade-btns a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    box-sizing: border-box;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  .process-card {
    width: 100%;
    padding: 1.5rem 1.25rem;
    box-sizing: border-box;
  }

  /* One review card at a time on mobile */
  .reviews-track {
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 0 1rem 0;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
    padding: 1.75rem 1.25rem;
    box-sizing: border-box;
  }
  .reviews-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .review-arrow-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .builds-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
  }
  .build-card {
    width: 100%;
    box-sizing: border-box;
  }

  .final-cta-card {
    padding: 2.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
  .final-cta-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 0.75rem;
  }
  .final-cta-btns a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    box-sizing: border-box;
  }

  .promo-banner-img,
  .promo-banner {
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 160px;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  .faq-accordion {
    width: 100%;
    padding: 0;
  }
  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    min-height: 48px;
    gap: 0.75rem;
  }
  .faq-answer {
    padding: 0 1.25rem;
  }
  .faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .brand-card-box {
    padding: 1.25rem 0.5rem;
  }
}

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 400px;
    height: auto;
    padding: 70px 0 50px 0;
  }
}

/* ====================================================
   FEATURED PRODUCT SHOWCASE SECTION (ONE PRODUCT AT A TIME)
   ==================================================== */
.featured-showcase-section .section-header {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.featured-showcase-section .section-title {
  text-align: center !important;
}

.featured-showcase-section .section-subtitle {
  text-align: center !important;
}

.featured-showcase-container {
  width: 100%;
  position: relative;
}

/* Slider Wrapper */
.showcase-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg, 16px);
}

.showcase-slider-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.showcase-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Main Showcase Card */
.showcase-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  background: var(--panel, #111827);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 117, 0, 0.08);
  align-items: center;
  box-sizing: border-box;
}

/* Mobile Header (Hidden on Desktop) */
.showcase-mobile-header {
  display: none;
}

.showcase-desktop-header {
  display: block;
}

/* Left Side: Image Gallery */
.showcase-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.showcase-main-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: radial-gradient(circle at center, #29231f 0%, #12100e 100%);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-main-link {
  display: block;
  width: 100%;
  height: 100%;
}

.showcase-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.showcase-card:hover .showcase-main-img {
  transform: scale(1.03);
}

/* Badges on Main Image */
.featured-badge-trending {
  background: linear-gradient(135deg, #ea580c, #ff7500) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(255, 117, 0, 0.4);
}

/* Thumbnail Grid */
.showcase-thumbs-grid {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.showcase-thumb-btn {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm, 8px);
  border: 2px solid transparent;
  background: #181512;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.25s ease;
}

.showcase-thumb-btn:hover {
  opacity: 1;
  border-color: rgba(255, 117, 0, 0.5);
  transform: translateY(-2px);
}

.showcase-thumb-btn.active {
  opacity: 1;
  border-color: var(--accent, #ff7500);
  box-shadow: 0 0 12px rgba(255, 117, 0, 0.45);
}

.showcase-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Side: Product Details */
.showcase-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}

.showcase-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.showcase-cat-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent, #ff7500);
  background: rgba(255, 117, 0, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 117, 0, 0.25);
  display: inline-block;
}

.showcase-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted, #94a3b8);
  background: var(--panel-solid, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.showcase-share-btn:hover {
  color: var(--accent, #ff7500);
  border-color: var(--accent, #ff7500);
  transform: translateY(-1px);
}

.showcase-title-link {
  text-decoration: none;
}

.showcase-card-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--text, #f8fafc);
  line-height: 1.25;
  margin: 0;
  transition: color 0.2s ease;
}

.showcase-title-link:hover .showcase-card-title {
  color: var(--accent, #ff7500);
}

/* Stock Status */
.showcase-status-row {
  display: flex;
  align-items: center;
}

.showcase-stock-status {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.showcase-stock-status.stock-in {
  color: var(--success, #10b981);
}

.showcase-stock-status.stock-out {
  color: var(--danger, #ef4444);
}

.showcase-stock-status .stock-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Specs Box (Brand, Size, Dimensions) */
.showcase-specs-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-sm, 8px);
  padding: 0.85rem 1rem;
}

.showcase-spec-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.showcase-spec-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted, #94a3b8);
  min-width: 95px;
}

.showcase-spec-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text, #f8fafc);
}

.showcase-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
}

.showcase-brand-logo {
  height: 20px;
  max-width: 55px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 3px;
  padding: 2px 4px;
}

.showcase-brand-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text, #f8fafc);
}

/* Description Preview */
.showcase-desc-preview {
  font-size: 0.92rem;
  color: var(--muted, #94a3b8);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price Box */
.showcase-price-box {
  margin-top: 0.25rem;
}

.showcase-price-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text, #f8fafc);
}

.showcase-price-group {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.showcase-price-current {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent, #ff7500);
}

.showcase-price-old {
  font-size: 1rem;
  color: var(--muted, #94a3b8);
  text-decoration: line-through;
}

/* Inquire CTA Button */
.showcase-action-box {
  margin-top: 0.5rem;
}

.btn-showcase-inquire {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--success, #10b981);
  border: 1px solid var(--success, #10b981);
  color: #ffffff;
  border-radius: var(--radius-sm, 8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-showcase-inquire:hover:not(.disabled) {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
}

.btn-showcase-inquire.disabled {
  background: var(--panel-solid, #1c1815) !important;
  color: var(--muted, #94a3b8) !important;
  border-color: var(--border, rgba(255, 255, 255, 0.1)) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.btn-showcase-inquire .inquire-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Navigation Controls (Arrows) */
.showcase-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.showcase-nav-btn.prev {
  left: -22px;
}

.showcase-nav-btn.next {
  right: -22px;
}

.showcase-nav-btn:hover {
  background: var(--accent, #ff7500);
  border-color: var(--accent, #ff7500);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 18px rgba(255, 117, 0, 0.5);
}

/* Navigation Dots */
.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.showcase-dot.active {
  width: 32px;
  background: var(--accent, #ff7500);
  box-shadow: 0 0 12px rgba(255, 117, 0, 0.6);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .showcase-card {
    gap: 2rem;
    padding: 1.75rem;
  }
  .showcase-nav-btn.prev {
    left: 10px;
  }
  .showcase-nav-btn.next {
    right: 10px;
  }
}

@media (max-width: 860px) {
  .showcase-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 3vw, 1.35rem);
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .showcase-mobile-header {
    display: none !important;
  }

  .showcase-desktop-header {
    display: block !important;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .showcase-gallery-col {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .showcase-details-col {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: 0.85rem;
  }

  .showcase-nav-btn {
    display: none !important; /* Mobile navigation uses touch swipe and dots */
  }

  .showcase-main-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .showcase-thumbs-grid {
    width: 100%;
    margin-top: 0.75rem;
  }

  .btn-showcase-inquire {
    width: 100%;
    min-height: 48px;
  }

  .showcase-dots {
    margin-top: 1.25rem;
  }

  .showcase-dot {
    min-height: 36px;
    padding: 10px 4px;
    box-sizing: content-box;
  }
}

/* ====================================================
   NEW ARRIVALS — CONTINUOUS SHOWROOM MARQUEE
   ==================================================== */
.new-arrivals-section .container {
  width: 95%;
  max-width: none;
  margin-inline: auto;
  padding-left: clamp(0.5rem, 1.5vw, 1.5rem);
  padding-right: clamp(0.5rem, 1.5vw, 1.5rem);
}

.new-arrivals-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.75rem 0 1.25rem 0;
  margin: -0.75rem 0;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.new-arrivals-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  width: max-content;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: newArrivalsMarquee 65s linear infinite;
}

@keyframes newArrivalsMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Hover & Pause States */
.new-arrivals-marquee-viewport:hover .new-arrivals-marquee-track,
.new-arrivals-marquee-track:hover,
.new-arrivals-marquee-track.is-paused {
  animation-play-state: paused !important;
}

/* New Arrivals Product Cards — Compact Catalog Card */
.new-arrivals-marquee-track .product-card {
  flex: 0 0 clamp(225px, 15vw, 285px) !important;
  width: clamp(225px, 15vw, 285px) !important;
  max-width: 285px !important;
  min-width: 225px !important;
  box-sizing: border-box;
}

/* Mobile: ~1.2 - 1.5 cards visible (75% to 82% of mobile slider viewport) */
@media (max-width: 768px) {
  .new-arrivals-marquee-track {
    gap: 0.85rem;
  }
  .new-arrivals-marquee-track .product-card {
    flex: 0 0 clamp(240px, 78vw, 280px) !important;
    width: clamp(240px, 78vw, 280px) !important;
    max-width: 280px !important;
    min-width: 240px !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .new-arrivals-marquee-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .new-arrivals-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Responsive Google Map Wrapper */
.map-wrapper {
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 220px;
  border: 0;
  display: block;
}
