﻿/* ==========================================================================
   CEAT Tire Finder ("Know Your Tire") â€” Design System & Stylesheet
   Modern, dynamic, responsive web design with dark/light mode, glassmorphism,
   animated multi-angle carousels, gamification wheel, and BRTA plate lookup.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root {
  /* Brand Tokens */
  --ceat-orange: #FF6600;
  --ceat-orange-hover: #E55C00;
  --ceat-blue: #003399;
  --ceat-blue-light: #1A53FF;
  --ceat-yellow: #FFCC00;
  --ceat-green: #00CC66;

  /* Dark Theme Default */
  --bg-primary: #0A0E1A;
  --bg-secondary: #121829;
  --bg-input-solid: #0A0E1A;
  --bg-menu-solid: #121829;
  --bg-card: rgba(22, 30, 51, 0.75);
  --bg-card-hover: rgba(30, 41, 71, 0.85);
  --border-color: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(255, 102, 0, 0.5);
  --text-main: #FFFFFF;
  --text-muted: #A0AEC0;

  /* Glassmorphism */
  --glass-bg: rgba(18, 24, 41, 0.85);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

  /* Layout & Animations */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glow-orange: 0 0 25px rgba(255, 102, 0, 0.4);
  --glow-blue: 0 0 25px rgba(0, 83, 255, 0.3);
}

[data-theme="light"] {
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-input-solid: #FFFFFF;
  --bg-menu-solid: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --border-color: rgba(0, 51, 153, 0.15);
  --border-highlight: #FF6600;
  --text-main: #0F172A;
  --text-muted: #475569;

  /* Premium Platinum Metallic Glassmorphism for Light Mode */
  --glass-bg: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(0, 51, 153, 0.2);
  --glass-shadow: 0 20px 45px rgba(0, 31, 94, 0.1), 0 4px 15px rgba(0, 0, 0, 0.04);
  --glow-orange: 0 10px 25px rgba(255, 102, 0, 0.3);
  --glow-blue: 0 10px 25px rgba(0, 51, 153, 0.2);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ceat-logo {
  height: 42px;
  object-fit: contain;
}

.logo-badge {
  background: linear-gradient(135deg, var(--ceat-blue), var(--ceat-blue-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0, 51, 153, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--ceat-orange);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: var(--ceat-orange);
  color: #fff;
  border-color: var(--ceat-orange);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ceat-orange), #ff4700);
  color: #ffffff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7714, var(--ceat-orange));
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Showcase Slider Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 2rem 5% 4rem;
  overflow: hidden;
}

/* Slider Nav Header Bar */
.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  z-index: 10;
  position: relative;
}

.slider-series-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.series-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.series-tab:hover {
  color: var(--text-main);
  border-color: var(--text-main);
}

.series-tab.active {
  background: var(--ceat-orange);
  color: #ffffff;
  border-color: var(--ceat-orange);
  box-shadow: var(--glow-orange);
}

.series-tab[data-slide="1"].active {
  background: #00bcd4;
  border-color: #00bcd4;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.4);
}

.series-tab[data-slide="2"].active {
  background: #00cc66;
  border-color: #00cc66;
  box-shadow: 0 0 25px rgba(0, 204, 102, 0.4);
}

.series-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  letter-spacing: 0.05em;
}

.slider-progress-wrap {
  flex: 1;
  max-width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ceat-orange);
  transition: width 0.1s linear;
}

.hero-slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow-btn:hover {
  background: var(--ceat-orange);
  color: #fff;
  border-color: var(--ceat-orange);
  box-shadow: var(--glow-orange);
}

/* Hero Slides Layout */
.hero-slides-wrapper {
  position: relative;
}

.hero-slide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 102, 0, 0.15);
  color: var(--ceat-orange);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

  0%,
  100% {
    border-color: rgba(255, 102, 0, 0.3);
  }

  50% {
    border-color: rgba(255, 102, 0, 0.8);
  }
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.highlight-text {
  background: linear-gradient(135deg, #FF6600 0%, #FFCC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text-cyan {
  background: linear-gradient(135deg, #00bcd4 0%, #1A53FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text-green {
  background: linear-gradient(135deg, #00cc66 0%, #FFCC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-btn-main {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 204, 102, 0.15);
  color: var(--ceat-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Visual Column */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-car-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.hero-car-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  filter: blur(50px);
  z-index: -1;
  animation: float-glow 6s ease-in-out infinite alternate;
}

.orb-glow-orange {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, rgba(0, 51, 153, 0.2) 60%, transparent 80%);
}

.orb-glow-cyan {
  background: radial-gradient(circle, rgba(0, 188, 212, 0.4) 0%, rgba(0, 51, 153, 0.2) 60%, transparent 80%);
}

.orb-glow-green {
  background: radial-gradient(circle, rgba(0, 204, 102, 0.4) 0%, rgba(255, 204, 0, 0.2) 60%, transparent 80%);
}

.hero-tire-img {
  width: 85%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
  transition: all var(--transition-smooth);
}

.hero-tire-img:hover {
  transform: scale(1.05) rotate(3deg);
}

/* Interactive Hotspots */
.spec-hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 20;
}

.hotspot-tread {
  top: 22%;
  right: 15%;
}

.hotspot-shoulder {
  bottom: 28%;
  left: 12%;
}

.hotspot-pulse {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ceat-orange);
  box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  animation: hotspotPulse 1.8s infinite;
}

@keyframes hotspotPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(255, 102, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}

.hotspot-label {
  position: absolute;
  white-space: nowrap;
  left: 24px;
  top: -4px;
  background: var(--bg-menu-solid);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--glass-shadow);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.spec-hotspot:hover .hotspot-label {
  opacity: 1;
  background: var(--ceat-orange);
  color: #fff;
  border-color: var(--ceat-orange);
  transform: translateX(4px);
}

/* Tooltip popover on hover */
.spec-hotspot[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid var(--ceat-orange);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 100;
  pointer-events: none;
}

/* Multi-Angle Inspect Selector */
.angle-inspect-bar,
.angle-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 10;
}

.inspect-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.2rem;
}

.angle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.angle-btn:hover {
  color: var(--text-main);
}

.angle-btn.active {
  background: var(--bg-primary);
  color: var(--ceat-orange);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Live Performance HUD Card */
.performance-hud-card {
  width: 100%;
  max-width: 440px;
  margin-top: 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--glass-shadow);
  z-index: 10;
}

.hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hud-model-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hud-score-badge {
  background: rgba(0, 204, 102, 0.15);
  color: var(--ceat-green);
  border: 1px solid rgba(0, 204, 102, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
}

.hud-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hud-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.m-label {
  font-size: 0.82rem;
  color: var(--text-main);
  min-width: 140px;
}

.m-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.m-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ceat-orange), var(--ceat-yellow));
  border-radius: 4px;
  transition: width 0.6s ease;
}

@keyframes bounce-subtle {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

.qr-code-img {
  background: #fff;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qr-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.qr-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Finder Section & Interactive Controls
   ========================================================================== */
.finder-section {
  position: relative;
  padding: 5rem 5%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: visible;
  /* Must be visible so dropdowns are not clipped */
}

/* Floating Ambient Neon Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  transition: all 1s ease;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--ceat-orange) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: orb-float-1 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--ceat-blue-light) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: orb-float-2 15s ease-in-out infinite alternate;
}

@keyframes orb-float-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(150px, 80px) scale(1.2);
  }
}

@keyframes orb-float-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-150px, -80px) scale(1.15);
  }
}

.finder-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.finder-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.finder-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Interactive Lifestyle & Vehicle Category Tabs */
.lifestyle-selector {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lifestyle-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lifestyle-tab:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.lifestyle-tab.active {
  background: linear-gradient(135deg, var(--ceat-blue), var(--ceat-blue-light));
  color: #fff;
  border-color: #66a3ff;
  box-shadow: 0 6px 20px rgba(0, 83, 255, 0.35);
}

.lifestyle-icon {
  font-size: 1.15rem;
  color: var(--ceat-orange);
}

.lifestyle-tab.active .lifestyle-icon {
  color: #fff;
}

/* Finder Glassmorphic Container */
.finder-container {
  position: relative;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  max-width: 1050px;
  margin: 0 auto 2rem;
  transition: all var(--transition-smooth);
}

.finder-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.finder-header .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 102, 0, 0.15);
  color: var(--ceat-orange);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.finder-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.finder-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Search Mode Navigation Tabs inside Container */
.search-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mode-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

[data-theme="light"] .mode-tab {
  background: rgba(0, 51, 153, 0.05);
}

.mode-tab:hover {
  color: var(--text-main);
  border-color: var(--text-main);
}

.mode-tab.active {
  background: var(--ceat-orange);
  color: #fff;
  border-color: var(--ceat-orange);
  box-shadow: var(--glow-orange);
}

/* Search Mode Tab Content Display Engine */
.search-tab-content {
  display: none;
}

.search-tab-content.active {
  display: block;
  animation: fadeInTab 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Cascading Dropdowns Layout */
.dropdowns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .dropdowns-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.dropdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #A0AEC0;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-dropdown {
  position: relative;
  width: 100%;
  z-index: 1;
  /* Base stacking context */
}

/* When open, elevate above all siblings in the grid */
.custom-dropdown.open {
  z-index: 100;
}

.dropdown-trigger {
  width: 100%;
  height: 58px;
  background: #0A0E1A !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0 1.25rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.dropdown-trigger:hover:not(.disabled) {
  border-color: #FF6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.25);
  transform: translateY(-2px);
}

.dropdown-trigger.active {
  border-color: #FF6600;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
}

.dropdown-trigger.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(10, 14, 26, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.08);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #121829 !important;
  border: 1px solid rgba(255, 102, 0, 0.4);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9) !important;
  z-index: 9999 !important;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.custom-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-search {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0A0E1A;
}

.dropdown-search-input {
  width: 100%;
  padding: 0.65rem 1rem;
  background: #121829;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.dropdown-search-input:focus {
  border-color: #FF6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.dropdown-options-list {
  overflow-y: auto;
  max-height: 240px;
  padding: 0.4rem 0;
}

.dropdown-option {
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-option:hover {
  background: rgba(255, 102, 0, 0.2);
  color: #FF6600;
}

.dropdown-option.selected {
  background: rgba(255, 102, 0, 0.3);
  color: #FF6600;
  font-weight: 700;
}

/* Big High-Impact Search Trigger Button */
.finder-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

/* Dimension Search Inputs Grid */
.dimension-inputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .dimension-inputs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.dim-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dim-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.standard-select {
  width: 100%;
  height: 58px;
  background: #0A0E1A !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0 1.25rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
}

.standard-select:focus {
  border-color: #FF6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

/* Bangladesh BRTA License Plate Modern Frame */
.plate-lookup-box {
  background: rgba(10, 14, 26, 0.95);
  border: 2px solid #006a4e;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 106, 78, 0.2);
}

.plate-input-wrap {
  display: flex;
  align-items: center;
  background: #060911;
  border: 2px solid #FF6600;
  border-radius: 16px;
  padding: 0.4rem;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.35);
  max-width: 580px;
  width: 100%;
}

@media (max-width: 768px) {
  .plate-input-wrap {
    flex-direction: column;
    gap: 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .plate-input-wrap>* {
    width: 100%;
    text-align: center;
  }

  #plate-input {
    background: #060911;
    border: 2px solid #FF6600;
    border-radius: 16px;
    padding: 0.75rem 1rem;
  }
}

.plate-country {
  background: linear-gradient(135deg, #006a4e, #00a877);
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 106, 78, 0.4);
}

#plate-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  outline: none;
}

/* Fitment Guarantee Footer Bar inside Card */
.fitment-guarantee-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.fitment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


/* ==========================================================================
   Recommendation Results Section
   ========================================================================== */
.results-section {
  padding: 5rem 2%;
  background: var(--bg-primary);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.results-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.results-header-bar.cyber-hud-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 22, 38, 0.9) 0%, rgba(8, 12, 22, 0.95) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-left: 5px solid #00E5FF;
  padding: 1.25rem 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hud-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hud-radar-pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 2px solid #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.2rem;
  color: #00E5FF;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  flex-shrink: 0;
}

.radar-wave {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00E5FF;
  animation: radarWaveSpin 2s linear infinite;
}

@keyframes radarWaveSpin {
  to {
    transform: rotate(360deg);
  }
}

.hud-top-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.match-tag {
  background: rgba(0, 229, 255, 0.15);
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.registry-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hud-vehicle-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

.hud-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hud-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hud-size-box {
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.35);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  text-align: center;
}

.hud-size-box .size-label {
  display: block;
  font-size: 0.7rem;
  color: #FF6600;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.hud-size-box .size-val-pill {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cyber-reset {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cyber-reset:hover {
  background: linear-gradient(135deg, #FF6600, #FF3300);
  border-color: #FF6600;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

.btn-cyber-reset:hover i {
  animation: spinReset 0.6s ease;
}

@keyframes spinReset {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* Standard Size Generic Banner (Step 5) */
.standard-size-box {
  background: linear-gradient(135deg, rgba(0, 51, 153, 0.25), rgba(26, 83, 255, 0.1));
  border: 1px solid rgba(0, 83, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  overflow: hidden;
}

.standard-size-label {
  font-size: 1rem;
  font-weight: 700;
  color: #66a3ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.standard-size-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  font-family: 'Share Tech Mono', monospace;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-shadow: 0 0 25px rgba(0, 83, 255, 0.6);
}

[data-theme="light"] .standard-size-value {
  color: var(--ceat-blue);
  text-shadow: none;
}

.standard-size-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.important-note-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 204, 0, 0.15);
  color: var(--ceat-yellow);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Recommended Products Grid & Carousel (Step 6) */
.recommendation-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.recommendation-section-title h3 {
  font-size: 2rem;
  font-weight: 800;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
}

.btn-carousel {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-carousel:hover {
  background: var(--ceat-orange);
  color: #fff;
  border-color: var(--ceat-orange);
}

/* 2026 Luxury 3-Column Bento Showroom Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1250px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Liquid Glass Showroom Product Card */
.product-card {
  background: linear-gradient(145deg, rgba(22, 28, 48, 0.75) 0%, rgba(10, 14, 26, 0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0) 0%, rgba(0, 229, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 102, 0, 0.2);
}

.product-card:hover::before {
  background: linear-gradient(135deg, #FF6600 0%, #00E5FF 100%);
}

.card-top-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  z-index: 5;
}

.family-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sku-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: #a0aec0;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseLedAnim 1.5s infinite;
}

@keyframes pulseLedAnim {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* 3D Showroom Center Stage */
.tire-viewer-container {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: radial-gradient(ellipse at bottom, rgba(255, 102, 0, 0.15) 0%, rgba(0, 0, 0, 0.2) 70%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.tire-viewer-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
  bottom: -30px;
}

.tire-viewer-img {
  max-width: 90%;
  max-height: 250px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.65));
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatTire 4s ease-in-out infinite;
}

@keyframes floatTire {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.product-card:hover .tire-viewer-img {
  transform: scale(1.08) rotate(-3deg);
}

.angle-switcher {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  background: rgba(8, 12, 22, 0.9);
  backdrop-filter: blur(15px);
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  gap: 0.35rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.angle-btn {
  background: transparent;
  border: none;
  color: #a0aec0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.angle-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.angle-btn.active {
  background: linear-gradient(135deg, #FF6600, #FF3300);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.5);
}

.product-info {
  margin-bottom: 2rem;
  z-index: 5;
}

.product-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.product-size-label {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.25rem;
  color: #00E5FF;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.usp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.usp-icon {
  color: var(--ceat-green);
  font-size: 0.85rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  z-index: 5;
}

.btn-card-action {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 14px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card .btn-primary.btn-card-action {
  background: linear-gradient(135deg, #FF6600, #FF3300);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
}

.product-card .btn-primary.btn-card-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
}

.product-card .btn-secondary.btn-card-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00E5FF;
}

.product-card .btn-secondary.btn-card-action:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: #00E5FF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

/* ==========================================================================
   Tire Comparison Matrix Section
   ========================================================================== */
.section-pad {
  padding: 5rem 5%;
}

.section-title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-title-center h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-title-center p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.comparison-container {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 750px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 102, 0, 0.04);
}

.rating-bar-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.4rem;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ceat-orange), var(--ceat-yellow));
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

/* ==========================================================================
   Education Hub & Care Tips Section
   ========================================================================== */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.edu-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.edu-card:hover {
  transform: translateY(-6px);
  border-color: var(--ceat-blue-light);
  box-shadow: var(--glow-blue);
}

.edu-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 51, 153, 0.2);
  color: #66a3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.edu-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.edu-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.edu-read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ceat-orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast);
}

.edu-card:hover .edu-read-more {
  gap: 0.75rem;
}

/* ==========================================================================
   Dealer Locator Section
   ========================================================================== */
.dealer-box {
  background: linear-gradient(135deg, rgba(0, 51, 153, 0.3), rgba(26, 83, 255, 0.1));
  border: 1px solid rgba(0, 83, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.dealer-info {
  flex: 1;
  min-width: 320px;
}

.dealer-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.dealer-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.dealer-search-group {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}

.dealer-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: var(--bg-input-solid) !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.dealer-input:focus {
  border-color: var(--ceat-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* ==========================================================================
   2026 Luxury Cyber Showroom Footer Engine
   ========================================================================== */
.footer.cyber-footer {
  background: radial-gradient(circle at top, rgba(14, 20, 38, 0.95) 0%, rgba(6, 9, 18, 1) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4.5rem 5% 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer.cyber-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6600, #00E5FF, transparent);
  box-shadow: 0 0 20px #00E5FF;
}

/* Top Telemetry Newsletter CTA */
.footer-newsletter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(20, 28, 50, 0.85) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-left: 5px solid #FF6600;
  padding: 2.25rem 2.5rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.12);
}

.nl-info {
  flex: 1;
  min-width: 280px;
}

.nl-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  color: #00E5FF;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.nl-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.nl-info .highlight-cyan {
  color: #00E5FF;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.nl-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
}

.nl-form {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.nl-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nl-input-wrap:focus-within {
  border-color: #00E5FF;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nl-icon {
  color: #FF6600;
  font-size: 1.1rem;
  margin-right: 0.75rem;
}

.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.nl-input::placeholder {
  color: #64748b;
}

.nl-submit-btn {
  background: linear-gradient(135deg, #FF6600, #FF3300);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  flex-shrink: 0;
}

.nl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.7);
}

/* 4-Column Bento Footer Grid */
.footer-grid.cyber-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 44px;
  filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.6));
}

.footer-tagline {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  font-weight: 800;
  color: #00E5FF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-sys-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sys-item {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sys-item strong {
  color: #ffffff;
}

.pulse-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  display: inline-block;
}

.pulse-cyan {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 10px #00E5FF;
  display: inline-block;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 0.5rem;
  width: fit-content;
}

.footer-heading i {
  color: #FF6600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: #00E5FF;
  transition: transform 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links li a:hover i {
  color: #FF6600;
  transform: translateX(3px);
}

/* Contact Column */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-icon {
  color: #00E5FF;
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
  background: #00E5FF;
  border-color: #00E5FF;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

/* Bottom Copyright & Telemetry Dock */
.footer-bottom.cyber-footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.copy-left strong {
  color: #ffffff;
}

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

.copy-right a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.copy-right a:hover {
  color: #00E5FF;
}

.copy-right .sep {
  color: rgba(255, 255, 255, 0.2);
}

.admin-access-link {
  color: #FF6600;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.admin-access-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #FF6600;
}

/* ==========================================================================
   Modals & Overlay System
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.btn-close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-close-modal:hover {
  background: #ff3333;
  color: #fff;
  border-color: #ff3333;
}

/* Wheel of Fortune Gamification Wheel */
.wheel-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 1.5rem auto 2rem;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--ceat-orange);
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.wheel-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.5);
  background: conic-gradient(#FF6600 0deg 60deg,
      #003399 60deg 120deg,
      #FFCC00 120deg 180deg,
      #00CC66 180deg 240deg,
      #1A53FF 240deg 300deg,
      #FF4700 300deg 360deg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-center-cap {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--ceat-blue);
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 1.1;
  z-index: 5;
}

.prize-result-box {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 204, 102, 0.15);
  border: 2px dashed #00cc66;
  border-radius: var(--radius-md);
  animation: pop-in 0.5s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

@keyframes pop-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.coupon-code {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.75rem;
  font-weight: 900;
  color: #00ff80;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}

/* Admin Portal Specific Styles */
.admin-modal {
  max-width: 950px !important;
}

.admin-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.admin-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-tab-btn:hover {
  color: var(--text-main);
  background: var(--bg-primary);
}

.admin-tab-btn.active {
  color: var(--ceat-orange);
  background: rgba(255, 102, 0, 0.15);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-table-wrapper {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  position: sticky;
  top: 0;
  background: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-main);
  z-index: 5;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.excel-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--bg-primary);
  transition: all var(--transition-fast);
}

.excel-upload-zone:hover {
  border-color: var(--ceat-orange);
  background: rgba(255, 102, 0, 0.03);
}

.excel-upload-zone i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints (Mobile First Optimization)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle,
  .hero-cta-group,
  .trust-badges {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .btn-search-submit {
    width: 100%;
  }
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness & Mobile Menu Drawer
   ========================================================================== */

/* Navbar & Mobile Menu Drawer */
@media (max-width: 768px) {
  .navbar {
    padding: 0.85rem 1rem;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: var(--bg-menu-solid);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .finder-container {
    padding: 1.5rem 1rem;
  }

  .dealer-box {
    padding: 2rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .dealer-search-group {
    flex-direction: column;
    width: 100%;
  }
}

/* Hero Showcase Slider Breakpoints */
@media (max-width: 992px) {
  .hero-section {
    padding: 1.5rem 1rem 3rem;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-slider-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .slider-series-tabs {
    justify-content: center;
  }

  .slider-progress-wrap {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-main {
    width: 100%;
    justify-content: center;
  }

  .hero-car-wrapper {
    max-width: 100%;
  }

  .hero-tire-img {
    width: 90%;
    max-width: 310px;
  }

  /* Hotspots adjustment on small mobile */
  .spec-hotspot {
    transform: scale(0.8);
  }

  .hotspot-tread {
    top: 15%;
    right: 2%;
  }

  .hotspot-shoulder {
    bottom: 18%;
    left: 2%;
  }

  .angle-inspect-bar {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .performance-hud-card {
    padding: 0.85rem;
  }

  .m-label {
    min-width: 105px;
    font-size: 0.75rem;
  }

  /* Lifestyle Selector Horizontal Touch Scroll */
  .lifestyle-selector {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.25rem 1rem;
    gap: 0.6rem;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .lifestyle-tab {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .finder-container {
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-md);
  }

  .search-mode-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mode-tab {
    width: 100%;
    justify-content: center;
  }

  /* Product Cards & Comparison on Mobile */
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .comparison-container {
    overflow-x: auto;
  }

  .modal-content {
    padding: 1.25rem;
    max-width: 95vw;
    width: 95vw;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .wheel-wrapper {
    width: 220px;
    height: 220px;
  }
}

/* ==========================================================================
   Global Scrollbar Removal & Solid Input Backgrounds
   ========================================================================== */
/* Hide scrollbars completely while keeping touch/mouse wheel scrolling functional */
.dropdown-options-list,
.dropdown-menu,
.admin-table-wrapper,
.modal-content,
.comparison-container,
body,
* {
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE and Edge */
}

.dropdown-options-list::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar,
.admin-table-wrapper::-webkit-scrollbar,
.modal-content::-webkit-scrollbar,
.comparison-container::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari and Opera */
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* Ensure ALL input fields and select elements have solid opaque background */
input[type="text"]:not(.plate-number-input),
input[type="number"],
input[type="password"],
input[type="email"],
select,
textarea {
  background-color: var(--bg-input-solid) !important;
}

.plate-number-input {
  background-color: transparent !important;
}

/* ==========================================================================
   SweetAlert2 Custom CEAT Brand Styling
   ========================================================================== */
.swal2-popup {
  background: var(--bg-menu-solid) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8) !important;
  color: var(--text-main) !important;
  font-family: inherit !important;
}

.swal2-title {
  color: var(--text-main) !important;
  font-weight: 700 !important;
}

.swal2-html-container {
  color: var(--text-muted) !important;
  font-size: 1.05rem !important;
}

.swal2-confirm {
  background-color: var(--ceat-orange) !important;
  box-shadow: var(--glow-orange) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.75rem 2rem !important;
  font-weight: 700 !important;
}

.swal2-cancel {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   Creative Animations Suite (Scroll Reveal, 3D Hover Tilt, Shimmer & Particles)
   ========================================================================== */

/* 1. Scroll Reveal Entrance Classes */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}

/* 2. Interactive 3D Product Card & Image Hover Spin */
.product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease !important;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.2) !important;
  border-color: var(--ceat-orange) !important;
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(4deg) !important;
}

/* 3. Luminous Shimmer Effect on Action Buttons */
.btn-primary,
.series-tab.active {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg,
      transparent 30%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 70%);
  transform: rotate(30deg);
  animation: shimmerWave 4s infinite linear;
  pointer-events: none;
}

@keyframes shimmerWave {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  20%,
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* 4. Glowing Floating Ambient Background Particles */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  animation: orbMorph 12s ease-in-out infinite alternate;
}

.orb-1 {
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF6600 0%, #003399 70%);
}

.orb-2 {
  bottom: 5%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #003399 0%, #00cc66 70%);
}

@keyframes orbMorph {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  50% {
    transform: translate(40px, -30px) scale(1.15);
    border-radius: 40% 60% 70% 30%;
  }

  100% {
    transform: translate(-30px, 40px) scale(0.95);
    border-radius: 60% 40% 30% 70%;
  }
}

/* 5. Micro-Pulse for Badges and Active Tabs */
.lifestyle-tab.active {
  animation: pulse-tab 2s infinite ease-in-out;
}

@keyframes pulse-tab {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* ==========================================================================
   Ultra-Modern & Stylish Light Mode (White Theme) Overrides
   ========================================================================== */
[data-theme="light"] body {
  background-color: #F8FAFC;
  color: #0F172A;
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(0, 51, 153, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 31, 94, 0.06) !important;
}

[data-theme="light"] .hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(0, 51, 153, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
}

[data-theme="light"] .hero-title {
  color: #0F172A !important;
}

[data-theme="light"] .hero-subtitle {
  color: #334155 !important;
}

[data-theme="light"] .series-tab {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.18) !important;
  color: #1E293B !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .series-tag {
  background: rgba(0, 51, 153, 0.1) !important;
  color: #003399 !important;
}

[data-theme="light"] .series-tab.active {
  background: #FF6600 !important;
  color: #FFFFFF !important;
  border-color: #FF6600 !important;
  box-shadow: var(--glow-orange) !important;
}

[data-theme="light"] .series-tab[data-slide="1"].active {
  background: #008699 !important;
  border-color: #008699 !important;
  box-shadow: 0 0 25px rgba(0, 134, 153, 0.4) !important;
}

[data-theme="light"] .series-tab[data-slide="2"].active {
  background: #00994d !important;
  border-color: #00994d !important;
  box-shadow: 0 0 25px rgba(0, 153, 77, 0.4) !important;
}

[data-theme="light"] .series-tab.active .series-tag {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .slider-arrow-btn {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.2) !important;
  color: #0F172A !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .slider-arrow-btn:hover {
  background: #FF6600 !important;
  color: #FFFFFF !important;
  border-color: #FF6600 !important;
}

[data-theme="light"] .trust-item {
  color: #334155 !important;
}

[data-theme="light"] .trust-item span {
  color: #0F172A !important;
  font-weight: 600 !important;
}

[data-theme="light"] .btn-secondary {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.2) !important;
  color: #0F172A !important;
}

[data-theme="light"] .angle-inspect-bar {
  background: #E2E8F0 !important;
  border: 1px solid rgba(0, 51, 153, 0.15) !important;
}

[data-theme="light"] .inspect-title {
  color: #1E293B !important;
}

[data-theme="light"] .angle-btn {
  color: #475569 !important;
  background: transparent !important;
}

[data-theme="light"] .angle-btn:hover {
  color: #0F172A !important;
}

[data-theme="light"] .angle-btn.active {
  background: #FF6600 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3) !important;
}

[data-theme="light"] .performance-hud-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.15) !important;
  box-shadow: 0 15px 35px rgba(0, 31, 94, 0.08) !important;
}

[data-theme="light"] .hud-model-name {
  color: #0F172A !important;
  font-weight: 800 !important;
}

[data-theme="light"] .m-label {
  color: #0F172A !important;
  font-weight: 600 !important;
}

[data-theme="light"] .finder-container,
[data-theme="light"] .product-card,
[data-theme="light"] .dealer-box,
[data-theme="light"] .edu-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.15) !important;
  box-shadow: 0 15px 35px rgba(0, 31, 94, 0.08) !important;
}

[data-theme="light"] .dropdown-trigger,
[data-theme="light"] .standard-select,
[data-theme="light"] .dealer-input,
[data-theme="light"] .dropdown-search-input {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.2) !important;
  color: #0F172A !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .dropdown-menu {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.2) !important;
  box-shadow: 0 20px 50px rgba(0, 31, 94, 0.15) !important;
}

[data-theme="light"] .dropdown-option {
  color: #0F172A !important;
}

[data-theme="light"] .dropdown-option:hover {
  background: rgba(255, 102, 0, 0.1) !important;
}

[data-theme="light"] .quick-pill {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 51, 153, 0.18) !important;
  color: #0F172A !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .footer {
  background: #F1F5F9 !important;
  border-top: 1px solid rgba(0, 51, 153, 0.15) !important;
}

/* ==========================================================================
   Creative CEAT 3-Second Preloader & Tachometer Engine
   ========================================================================== */
/* ==========================================================================
   2026 Creative CEAT Telemetry HUD Radar Preloader Engine
   ========================================================================== */
/* ==========================================================================
   PRELOADER â€” Full Page Responsive Layout
   Reference: centered column, gauge dominant, 3-col telemetry, terminal box
   ========================================================================== */

/* Root sizing token â€” all elements derive from this */
.ceat-preloader-overlay {
  --gauge-size: clamp(220px, 42vmin, 360px);
  --tire-size: clamp(140px, 26vmin, 230px);
  --logo-h: clamp(32px, 5vmin, 52px);
  --gap-sm: clamp(0.5rem, 1.5vmin, 1.2rem);
  --gap-md: clamp(0.8rem, 2.5vmin, 1.8rem);

  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 45%, #0d1a2e 0%, #03050a 100%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  overflow: hidden;
  padding: clamp(1rem, 3vmin, 2.5rem) clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}

.ceat-preloader-overlay.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

/* Full-width scan line on overlay top edge */
.ceat-preloader-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6600, #00E5FF, transparent);
  animation: scanLineTop 3s linear infinite;
  pointer-events: none;
}

@keyframes scanLineTop {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ---- Background Grid ---- */
.preloader-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 102, 0, 0.07) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(35px);
  }
}

/* ---- Ambient Orbs ---- */
.preloader-orb {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  filter: blur(clamp(80px, 15vw, 160px));
  opacity: 0.28;
  pointer-events: none;
  animation: orbPulse 5s ease-in-out infinite alternate;
}

.orb-orange {
  top: -10%;
  left: -10%;
  background: #FF6600;
}

.orb-blue {
  bottom: -10%;
  right: -10%;
  background: #00E5FF;
  animation-delay: -2.5s;
}

@keyframes orbPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.38;
  }
}

/* ---- Removed card â€” display:contents passes through ---- */
.preloader-card {
  display: contents;
}

/* ---- Status Chips Row ---- */
.preloader-sys-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  order: 0;
}

.sys-chip {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(0.6rem, 1.4vmin, 0.72rem);
  font-weight: 800;
  padding: 0.22rem 0.7rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sys-chip.live-chip {
  background: rgba(16, 185, 129, 0.14);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.sys-chip.ai-chip {
  background: rgba(0, 229, 255, 0.14);
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.4);
}

/* ---- Brand / Logo ---- */
.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  order: 1;
}

.preloader-logo {
  height: var(--logo-h);
  filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.75));
}

.preloader-tagline {
  font-size: clamp(0.52rem, 1.4vmin, 0.7rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #00E5FF;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  text-align: center;
}

/* Glitch effect on logo */
.glitch-container {
  position: relative;
}

.glitch-img {
  animation: glitch-anim 3s infinite;
}

@keyframes glitch-anim {
  0% {
    transform: translate(0);
    filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.75));
  }

  2% {
    transform: translate(-4px, 3px);
    filter: drop-shadow(-2px 0 20px #00E5FF);
  }

  4% {
    transform: translate(4px, -3px);
    filter: drop-shadow(2px 0 20px #FF6600);
  }

  6% {
    transform: translate(0);
    filter: drop-shadow(0 0 16px rgba(255, 102, 0, 0.75));
  }

  100% {
    transform: translate(0);
  }
}

/* ---- Gauge Wrapper ---- */
.preloader-gauge-wrapper {
  position: relative;
  width: var(--gauge-size);
  height: var(--gauge-size);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 2;
}

/* High-Tech 2026 Radar Scanning Rings */
.radar-scan-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  pointer-events: none;
}

.ring-outer {
  border: 2px dashed rgba(0, 229, 255, 0.45);
  animation: ringSpinRight 12s linear infinite;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.ring-inner {
  inset: 5px;
  border: 2px dotted rgba(255, 102, 0, 0.6);
  animation: ringSpinLeft 8s linear infinite;
}

.radar-sweep-beam {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 229, 255, 0.35) 0deg, transparent 70deg, transparent 360deg);
  animation: ringSpinRight 2.5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes ringSpinRight {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes ringSpinLeft {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.tachometer-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-135deg);
  z-index: 2;
}

.tacho-bg-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.tacho-progress-arc {
  fill: none;
  stroke: #FF6600;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
  transition: stroke-dashoffset 0.05s linear;
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.9));
}

.preloader-tire-container {
  position: relative;
  width: var(--tire-size);
  height: var(--tire-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.ceat-svg-tire {
  width: 100%;
  height: 100%;
  animation: tireSpin 0.7s linear infinite;
  transform-origin: center center;
  filter: drop-shadow(0 0 18px rgba(255, 102, 0, 0.45));
}

@keyframes tireSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Tire Burnout Smoke Particle Effect */
.tire-burnout-smoke {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.4) 0%, rgba(0, 229, 255, 0.25) 50%, transparent 75%);
  filter: blur(10px);
  animation: smokePulse 0.5s ease-in-out infinite alternate;
  border-radius: 50%;
}

@keyframes smokePulse {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.9);
  }

  100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Needle Speedometer Pointer */
.preloader-needle {
  position: absolute;
  width: 4px;
  height: 72px;
  bottom: 50%;
  left: calc(50% - 2px);
  background: linear-gradient(to top, #FF6600, #00E5FF, #ffffff);
  border-radius: 4px;
  transform-origin: bottom center;
  transform: rotate(-120deg);
  transition: transform 0.05s linear;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.9);
  pointer-events: none;
  z-index: 5;
}

.preloader-needle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px #FF6600, 0 0 8px #00E5FF;
}

/* Telemetry Micro-Stats Bento Grid */
.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.4rem, 1.5vmin, 0.75rem);
  width: clamp(250px, 75vw, 440px);
  background: rgba(0, 0, 0, 0.35);
  padding: clamp(0.4rem, 1vmin, 0.6rem) clamp(0.6rem, 2vmin, 0.8rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  order: 3;
}

.tel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tel-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.tel-val {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}

.tel-val.green-pulse {
  color: #10B981;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.tel-val.cyan-glow {
  color: #00E5FF;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.tel-val.orange-glow {
  color: #FF6600;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

/* ---- Terminal Box (order:4, appears after telemetry) ---- */
.preloader-telemetry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  order: 4;
}

.terminal-box {
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: clamp(0.55rem, 1.8vmin, 0.9rem) clamp(0.8rem, 3vmin, 1.4rem);
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1), 0 0 15px rgba(0, 229, 255, 0.2);
  position: relative;
  width: clamp(230px, 65vw, 400px);
  text-align: center;
}

.terminal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FF6600;
  border-left: 2px solid #FF6600;
}

.terminal-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #00E5FF;
  border-right: 2px solid #00E5FF;
}

.terminal-prompt {
  color: #10B981;
  font-weight: 900;
  margin-right: 6px;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.typewriter-text {
  display: inline-block;
  border-right: 2px solid #00E5FF;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #00E5FF;
  }
}

.preloader-counter {
  font-family: 'Share Tech Mono', monospace, sans-serif;
  font-size: clamp(2rem, 6vmin, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #00E5FF 50%, #FF6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  letter-spacing: -0.02em;
}

.preloader-counter span {
  font-size: 1.6rem;
  color: #FF6600;
  margin-left: 2px;
  -webkit-text-fill-color: #FF6600;
}

.preloader-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(0.6rem, 1.8vmin, 0.8rem);
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 1.5em;
  transition: color 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Bottom Progress Laser Track */
.preloader-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #003399, #00E5FF, #FF6600, #ffcc00);
  border-radius: 10px;
  position: relative;
  transition: width 0.05s linear;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.9), 0 0 10px rgba(255, 102, 0, 0.8);
}

.progress-glow-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #ffffff, 0 0 25px #00E5FF, 0 0 35px #FF6600;
}

/* ==========================================================================
   Ultra-Modern Stylish UI Enhancements & Cyber HUD Components
   ========================================================================== */

/* Top Announcement Ticker Bar */
.top-ticker-bar {
  background: linear-gradient(90deg, #0A0E1A 0%, #003399 50%, #0A0E1A 100%);
  border-bottom: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.45rem 5%;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1001;
  position: relative;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #E2E8F0;
}

.ticker-badge {
  background: #FF6600;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

.ticker-hotline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFCC00;
  font-weight: 700;
  font-family: 'Share Tech Mono', monospace;
}

/* Hero Stats Ribbon */
.hero-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  background: rgba(18, 24, 41, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 51, 153, 0.3));
  border: 1px solid rgba(255, 102, 0, 0.4);
  color: #FF6600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.stat-number {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Floating HUD Specs Overlay on Hero Tire */
.hero-hud-overlay {
  position: absolute;
  top: 10px;
  right: -10px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.2);
  z-index: 5;
  animation: hudFloat 3s ease-in-out infinite alternate;
}

@keyframes hudFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.hud-spec-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00E5FF;
}

.hud-spec-chip i {
  color: #FF6600;
}

/* Tech Features Grid Section */
.tech-features-section {
  padding: 5rem 5%;
  background: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.tech-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF6600, #003399);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow-orange);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(0, 51, 153, 0.25));
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: #FF6600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.tech-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.tech-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Metallic BRTA License Plate Frame */
.plate-lookup-box {
  background: rgba(18, 24, 41, 0.9);
  border: 1px solid rgba(255, 102, 0, 0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.plate-input-wrap {
  display: flex;
  align-items: center;
  background: #0f172a;
  border: 2px solid #FF6600;
  border-radius: 14px;
  padding: 0.4rem;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.3);
  max-width: 550px;
  width: 100%;
}

.plate-country {
  background: linear-gradient(135deg, #003399, #1A53FF);
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

#plate-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  outline: none;
}

#plate-input::placeholder {
  color: #475569;
  font-size: 1.1rem;
}

/* ==========================================================================
   Ultra-Modern Stylish Lifestyle Ribbon, Dealer Radar & Modals
   ========================================================================== */

/* 2026 Floating Cyber Dock Category Selector */
.quick-vehicles {
  padding: 3rem 5% 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.cyber-dock-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
}

.dock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dock-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #00E5FF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.lifestyle-selector.cyber-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  background: rgba(12, 17, 30, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 102, 0, 0.1);
}

@media (max-width: 900px) {
  .lifestyle-selector.cyber-dock {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .lifestyle-selector.cyber-dock {
    grid-template-columns: 1fr;
  }
}

.quick-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.quick-pill .pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: #FF6600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.quick-pill .pill-text {
  display: flex;
  flex-direction: column;
}

.quick-pill .pill-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.quick-pill .pill-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.quick-pill .pill-glow-dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 40px;
  height: 3px;
  background: #00E5FF;
  border-radius: 10px;
  box-shadow: 0 0 12px #00E5FF;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 102, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.quick-pill:hover .pill-icon {
  transform: scale(1.1) rotate(5deg);
  background: #FF6600;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.quick-pill.active {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.25) 0%, rgba(255, 51, 0, 0.15) 100%);
  border-color: #FF6600;
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.25), inset 0 0 20px rgba(255, 102, 0, 0.15);
}

.quick-pill.active .pill-icon {
  background: linear-gradient(135deg, #FF6600, #FF3300);
  color: #ffffff;
  border-color: #FF6600;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.6);
}

.quick-pill.active .pill-title {
  color: #ffffff;
}

.quick-pill.active .pill-sub {
  color: #ffb380;
}

.quick-pill.active .pill-glow-dot {
  transform: translateX(-50%) scale(1);
  background: #FF6600;
  box-shadow: 0 0 15px #FF6600;
}

/* Nationwide Dealer Locator Command Center */
.dealers-section {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.dealer-locator-card {
  background: rgba(14, 20, 36, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 28px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 229, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.dealer-locator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00E5FF, #FF6600, #003399);
}

.dealer-info-side h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.dealer-info-side p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.dealer-search-box {
  display: flex;
  align-items: center;
  background: rgba(8, 12, 22, 0.85);
  border: 2px solid rgba(255, 102, 0, 0.5);
  border-radius: 16px;
  padding: 0.5rem 1.25rem;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.dealer-search-box:focus-within {
  border-color: #00E5FF;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.dealer-search-box i {
  color: #FF6600;
  font-size: 1.25rem;
}

.dealer-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
}

.dealer-input::placeholder {
  color: #64748b;
}

@media (max-width: 768px) {
  .dealer-locator-card {
    padding: 2rem 1.25rem;
  }

  .dealer-info-side h2 {
    font-size: 1.8rem;
  }

  .dealer-search-box {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .dealer-search-box i {
    display: none;
  }

  .dealer-input {
    width: 100%;
    background: rgba(8, 12, 22, 0.85) !important;
    border: 2px solid rgba(255, 102, 0, 0.5) !important;
    padding: 0.85rem !important;
    border-radius: 12px;
    text-align: center;
  }

  #btn-search-dealer {
    width: 100%;
    justify-content: center;
  }

  .dealer-map-mock {
    height: 300px;
  }
}

/* Cyber Radar Bangladesh Map Mockup */
.dealer-map-mock {
  position: relative;
  width: 100%;
  height: 380px;
  background: radial-gradient(circle at center, rgba(0, 51, 153, 0.25) 0%, rgba(8, 12, 22, 0.95) 75%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.dealer-map-mock::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(0, 229, 255, 0.18) 0deg, transparent 60deg, transparent 360deg);
  animation: radarSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.map-pulse-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.map-pulse-node:hover {
  transform: scale(1.15) translateY(-4px);
}

.map-pulse-node::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #FF6600;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #FF6600, 0 0 30px #FF6600;
}

.map-pulse-node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid #FF6600;
  border-radius: 50%;
  animation: nodePulse 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes nodePulse {
  0% {
    transform: translateX(-50%) scale(0.3);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) scale(1.8);
    opacity: 0;
  }
}

.map-pulse-node span {
  margin-top: 6px;
  background: rgba(10, 14, 26, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #ffffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* High-Tech Ultra Modern Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  /* Changed to allow margin auto centering */
  justify-content: center;
  overflow-y: auto;
  /* Let backdrop handle scrolling */
  padding: 3rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(14, 20, 36, 0.95);
  border: 1px solid rgba(255, 102, 0, 0.4);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  margin: auto;
  /* Centers safely without cutting off top/bottom */
  position: relative;
  z-index: 1001;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 102, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6600, #003399, #00E5FF);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #FF6600;
  border-color: #FF6600;
  transform: rotate(90deg);
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 0.4rem;
  margin-bottom: 1.25rem;
}

.modal-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Gamification Wheel Modal Styling */
.wheel-modal-card {
  text-align: center;
  max-width: 500px;
}

.wheel-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.wheel-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.wheel-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



#wheel {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.5), 0 0 60px rgba(0, 51, 153, 0.4);
  border: 8px solid rgba(18, 24, 41, 0.95);
  margin-bottom: 2rem;
}

.spin-trigger-btn {
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 9999px;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   MASTER RESPONSIVE ENGINE (PC, TABLET, MOBILE 100% OPTIMIZED)
   ========================================================================== */
/* Large Tablet & Small PC Breakpoint (< 1100px) */
@media (max-width: 1100px) {
  .footer-grid.cyber-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-newsletter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nl-form,
  .nl-info {
    width: 100%;
    max-width: 100%;
  }
}

/* Medium Tablet Breakpoint (< 900px) */
@media (max-width: 900px) {
  .dealer-locator-card {
    grid-template-columns: 1fr;
  }

  .lifestyle-selector.cyber-dock {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-header-bar.cyber-hud-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hud-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* Standard Mobile Breakpoint (< 768px) */
@media (max-width: 768px) {

  /* Top Ticker & Navbar */
  .top-ticker-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  /* Hero & Cockpit */
  .hero-slider-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .slider-series-tabs {
    justify-content: center;
  }

  .slider-progress-wrap {
    width: 100%;
    max-width: 100%;
  }

  .hero-slider-arrows {
    width: 100%;
    justify-content: space-between;
  }

  .angle-selector,
  .angle-inspect-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-hud-overlay {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 1.5rem;
    width: 100%;
  }

  .finder-container {
    padding: 1.5rem 1rem;
  }

  .vehicle-select-grid,
  .dimension-inputs-grid {
    grid-template-columns: 1fr;
  }

  .plate-input-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .plate-country,
  .plate-input,
  .btn-plate-scan {
    width: 100%;
    text-align: center;
  }

  /* Cyber Dock & Showroom Results */
  .lifestyle-selector.cyber-dock {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .hud-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .hud-right {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hud-size-box,
  .btn-cyber-reset {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer & Newsletter */
  .footer.cyber-footer {
    padding: 3rem 1.25rem 2rem;
    margin-top: 3rem;
  }

  .footer-newsletter-bar {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
    margin-bottom: 2.5rem;
  }

  .nl-input-wrap {
    position: relative;
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1rem;
  }

  .nl-icon {
    position: absolute;
    top: 1.1rem;
    left: 1.25rem;
    margin: 0;
    z-index: 5;
  }

  .nl-input {
    background: rgba(8, 12, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1rem 1rem 3.5rem;
    width: 100%;
    text-align: left;
  }

  .nl-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid.cyber-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom.cyber-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .copy-right {
    justify-content: center;
  }

  .admin-access-link {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  /* Preloader: keep sys-bar inline on narrow screens */
  .preloader-sys-bar {
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
  }

  /* telemetry-grid stays 3-col; clamp() handles sizing */

  /* preloader-gauge-wrapper and SVGs scale via clamp() â€” no overrides needed */
}

/* Small Mobile Breakpoint (< 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .hud-vehicle-title {
    font-size: 1.4rem;
  }

  .nl-info h3 {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary,
  .quick-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   GLOBAL RESPONSIVE TEXT & LAYOUT OVERRIDES (MOBILE & TABLET)
   ========================================================================== */

/* Universal Fluid Typography */
html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1,
  .hero-title,
  .standard-size-value {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.1;
  }

  h2,
  .section-title-center h2,
  .finder-header h2,
  .dealer-info-side h2,
  .recommendation-section-title h3,
  .wheel-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.2;
  }

  h3,
  .product-title,
  .nl-info h3,
  .edu-card h3,
  .hud-vehicle-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }

  p,
  .hero-subtitle,
  .finder-header p,
  .brand-desc,
  .dealer-info-side p,
  .standard-size-desc,
  .edu-card p,
  .wheel-header p {
    font-size: clamp(0.9rem, 3vw, 1.05rem) !important;
  }

  /* Global Mobile Layout Safeties */
  body,
  html {
    overflow-x: hidden;
  }

  /* Force all main sections to have proper mobile padding */
  section,
  .hero-section,
  .finder-section,
  .dealers-section,
  .results-section,
  .section-pad,
  .footer.cyber-footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Ensure structural grids stack */
  .dealer-locator-card,
  .products-grid,
  .footer-grid.cyber-footer-grid,
  .education-grid,
  .dealer-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  /* Hero slide - image on top, content below for better mobile UX */
  .hero-slide.active {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 1.5rem !important;
  }

  /* Hide inactive hero slides on mobile overriding the flex rule */
  .hero-slide:not(.active) {
    display: none !important;
  }

  /* Ensure flex containers stack if they are rows */
  .hero-cta-group,
  .trust-badges,
  .results-header-bar.cyber-hud-header,
  .footer-newsletter-bar,
  .dealer-search-group,
  .fitment-guarantee-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Full width buttons */
  .btn-primary,
  .btn-secondary,
  .btn-large,
  .btn-cyber-reset,
  .spin-trigger-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Specific container fixes */
  .hud-left,
  .hud-right,
  .dealer-info,
  .nl-form,
  .nl-info,
  .dealer-search-box {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-car-wrapper {
    max-width: 100% !important;
  }

  .hero-tire-img {
    width: 100% !important;
    height: auto !important;
  }

  .comparison-container {
    overflow-x: auto;
    width: 100%;
  }

  /* Center map nodes on mobile to prevent any clipping */
  .node-ctg {
    left: 50% !important;
    top: 78% !important;
  }

  .node-sylhet {
    left: 50% !important;
    top: 18% !important;
  }

  .node-dhaka {
    left: 50% !important;
    top: 48% !important;
  }

  .node-bogura {
    left: 50% !important;
    top: 32% !important;
  }
}


white-space: nowrap;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
}

/* ==========================================================================
   Project Brief Additions (Hero Car & QR HUD)
   ========================================================================== */

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.trust-icon {
  color: #00E5FF;
  font-size: 0.9rem;
}

.trust-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Floating QR HUD */
.floating-qr-hud {
  position: absolute;
  top: -20px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 229, 255, 0.1);
  animation: floatHUD 6s ease-in-out infinite;
}

@keyframes floatHUD {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.qr-glow-box {
  position: relative;
  width: 90px;
  height: 90px;
  padding: 5px;
  background: #0A0E1A;
  border-radius: 8px;
}

.qr-corners {
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  background: linear-gradient(to right, #00E5FF, #00E5FF) top left, linear-gradient(to bottom, #00E5FF, #00E5FF) top left, linear-gradient(to left, #00E5FF, #00E5FF) top right, linear-gradient(to bottom, #00E5FF, #00E5FF) top right, linear-gradient(to right, #00E5FF, #00E5FF) bottom left, linear-gradient(to top, #00E5FF, #00E5FF) bottom left, linear-gradient(to left, #00E5FF, #00E5FF) bottom right, linear-gradient(to top, #00E5FF, #00E5FF) bottom right;
  background-size: 15px 2px, 2px 15px;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.qr-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.qr-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: #00E5FF;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.qr-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cyber Car Silhouette */
.hero-car-wrapper {
  position: relative;
  width: 120%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  z-index: 1;
}

.hero-car-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.orb-glow-cyan {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 80%);
}

.orb-glow-orange {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, transparent 80%);
}

.orb-glow-green {
  background: radial-gradient(circle, rgba(0, 204, 102, 0.4) 0%, transparent 80%);
}

.cyber-car-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.scan-laser {
  animation: laserScan 3s linear infinite;
}

@keyframes laserScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}

/* Override existing visual to hide old controls */
/* Removed */

/* Mobile Adjustments for Hero Car & QR */
@media (max-width: 991px) {
  .hero-car-wrapper {
    width: 100%;
    margin-top: 1rem;
  }

  .floating-qr-hud {
    position: relative;
    top: 0;
    right: 0;
    margin: 2rem auto 0;
    justify-content: center;
    width: max-content;
  }
}

/* ==========================================================================
   Swipeable Product Carousel (CSS Scroll-Snap)
   ========================================================================== */

#products-container {
  display: flex !important;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 2rem;
  /* space for scrollbar */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

#products-container::-webkit-scrollbar {
  display: none;
}

#products-container .product-card {
  flex: 0 0 85%;
  /* show part of next card on mobile */
  scroll-snap-align: center;
  max-width: 480px;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  #products-container .product-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
  }
}

/* Added Card Buttons */
.card-actions-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.card-btn-view {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: #00E5FF;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.card-btn-view:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.card-btn-locate {
  flex: 1;
  background: linear-gradient(135deg, #FF6600, #ff8c00);
  border: none;
  color: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.card-btn-locate:hover {
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   Size Recommendation Modal (Step 5)
   ========================================================================== */
.size-modal-box {
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  /* Fix zoom/height issue */
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.size-modal-box::-webkit-scrollbar {
  width: 6px;
}

.size-modal-box::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 10px;
}

.size-modal-vehicle {
  font-size: 1rem;
  color: #a0aec0;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.size-display-box {
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.05), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.02);
}

.size-label {
  display: block;
  font-size: 0.85rem;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.size-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
  margin: 0;
  line-height: 1;
}

.size-modal-note {
  font-size: 0.9rem;
  color: #8892b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.size-modal-note i {
  color: #00E5FF;
  margin-right: 0.5rem;
}

/* Single Page Results Mode */
body.results-single-page .hero-section,
body.results-single-page .finder-section {
  display: none !important;
}

/* ==========================================================================
   Cyber Modal Overlay (Size Recommendation Modal)
   ========================================================================== */
.cyber-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /* Prevent touching edges */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cyber-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center title */
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.modal-title i {
  color: #00E5FF;
  margin-right: 0.8rem;
}

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  z-index: 10;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 0;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.modal-footer .btn-primary {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 700;
  background: #00E5FF;
  color: #080c16;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.2);
  transition: all 0.3s ease;
}

.modal-footer .btn-primary:hover {
  background: #fff;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   Premium Sticky Results Navigation Bar
   ========================================================================== */
.results-back-nav {
  position: sticky;
  top: 0;
  z-index: 9000;
  display: none;
  /* shown via body.results-single-page rule */
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5%;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  animation: navSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.results-single-page .results-back-nav {
  display: flex;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Breadcrumb Trail (left side) === */
.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.breadcrumb-home:hover {
  color: #FF6600;
  background: rgba(255, 102, 0, 0.08);
  border-color: rgba(255, 102, 0, 0.3);
}

.breadcrumb-home i {
  font-size: 0.8rem;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
}

.breadcrumb-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 6px;
}

.breadcrumb-current i {
  color: #FF6600;
  font-size: 0.8rem;
}

/* === Right Side: Hint + CTA Button === */
.back-nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.back-nav-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.back-nav-hint i {
  color: #00E5FF;
  font-size: 0.75rem;
}

/* === The Star: Change Vehicle Button === */
.btn-change-vehicle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem 0.65rem 1rem;
  background: linear-gradient(135deg, #FF6600, #ff8c00);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
  white-space: nowrap;
  /* Attention pulse animation on first appearance */
  animation: navSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    attentionPulse 2.5s ease-in-out 0.8s 3;
}

@keyframes attentionPulse {
  0% {
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
  }

  50% {
    box-shadow: 0 4px 35px rgba(255, 102, 0, 0.85), 0 0 0 8px rgba(255, 102, 0, 0.15);
  }

  100% {
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
  }
}

.btn-change-vehicle:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
  background: linear-gradient(135deg, #ff7a1a, #FF6600);
}

.btn-change-vehicle:active {
  transform: translateY(0) scale(0.98);
}

.btn-change-vehicle i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.btn-change-vehicle:hover i {
  transform: rotate(-45deg);
}

.change-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* === Mobile Responsive === */
@media (max-width: 640px) {
  .back-nav-hint {
    display: none;
  }

  .results-back-nav {
    padding: 0.75rem 1.2rem;
  }

  .btn-change-vehicle {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }

  .breadcrumb-current {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES — Full Site Mobile & PC
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* ----------------------------------------------
   1. NAVBAR — Mobile Drawer
   ---------------------------------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1.1rem;
    position: sticky;
    top: 0;
    z-index: 8000;
  }

  /* Hide desktop nav links; show hamburger */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 102, 0, 0.25);
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 9100;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.7);
  }

  .nav-links.mobile-open {
    display: flex;
    transform: translateX(0);
  }

  .nav-link {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link.active,
  .nav-link:hover {
    background: rgba(255, 102, 0, 0.12);
    color: #FF6600;
  }

  /* Mobile overlay backdrop */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9050;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 8px;
    color: #FF6600;
    font-size: 1rem;
  }

  /* Hide Spin & Win text on mobile to save space */
  .nav-actions .btn-primary span {
    display: none;
  }

  #nav-spin-btn {
    padding: 0.5rem 0.8rem;
    gap: 0;
  }
}

/* ----------------------------------------------
   2. HERO SLIDER — Mobile Stack
   ---------------------------------------------- */
@media (max-width: 768px) {
  .hero-section {
    padding: 1rem 1rem 2rem;
    min-height: unset;
    overflow: visible;
  }

  /* Series tabs: horizontal scroll */
  .hero-slider-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    justify-content: center;
  }

  .slider-series-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 0.4rem;
    padding-bottom: 0.25rem;
  }

  .series-tab {
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
  }

  .series-tag {
    display: none;
  }

  .slider-progress-wrap {
    display: none;
  }

  /* Stack hero slide: content top, visual below */
  .hero-slide {
    flex-direction: column !important;
    align-items: center;
    gap: 1rem;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    order: 1;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0.5rem auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  /* Visual: tire below content */
  .hero-visual {
    width: 100% !important;
    max-width: 340px;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hide QR HUD on mobile */
  .floating-qr-hud {
    display: none !important;
  }

  /* Tire image sizing */
  .tire-display-box {
    width: 100%;
    max-width: 280px;
    margin: 0 auto !important;
  }

  .hero-tire-img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
  }

  /* Angle selector: horizontal scroll */
  .angle-selector {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.4rem;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    justify-content: center;
    width: 100%;
  }

  .angle-btn {
    flex-shrink: 0;
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }

  /* Arrow buttons */
  .hero-slider-arrows {
    position: static;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.75rem;
    order: 3;
  }
}

/* ----------------------------------------------
   3. FINDER SECTION — Mobile Stack
   ---------------------------------------------- */
@media (max-width: 768px) {
  .finder-section {
    padding: 2.5rem 1.1rem 3rem;
  }

  .finder-container {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .finder-header {
    margin-bottom: 1.5rem;
  }

  .finder-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Mode tabs: wrap */
  .search-mode-tabs {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }

  .mode-tab {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  /* Dropdowns: 1 column */
  .dropdowns-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Dimension inputs: 1 column */
  .dimension-inputs-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* BRTA plate: stack */
  .plate-input-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .plate-input-wrap input,
  .plate-input-wrap .btn-primary {
    width: 100%;
  }

  .finder-btn-wrap {
    margin-top: 1rem;
  }

  .finder-btn-wrap .btn-primary,
  .finder-btn-wrap .btn-large {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
  }
}

/* ----------------------------------------------
   4. QUICK CATEGORY PILLS — Horizontal Scroll
   ---------------------------------------------- */
@media (max-width: 768px) {
  .quick-vehicles {
    padding: 1rem 0;
  }

  .cyber-dock-container {
    padding: 0.75rem 1rem;
  }

  .lifestyle-selector.cyber-dock {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.6rem;
    padding: 0.5rem 0.25rem 0.75rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }

  .lifestyle-selector.cyber-dock::-webkit-scrollbar {
    display: none;
  }

  .quick-pill {
    flex-shrink: 0;
    min-width: 150px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .quick-pill .pill-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .pill-title {
    font-size: 0.85rem;
  }

  .pill-sub {
    font-size: 0.7rem;
  }
}

/* ----------------------------------------------
   5. RESULTS SECTION — Mobile Stack
   ---------------------------------------------- */
@media (max-width: 768px) {

  /* HUD Header */
  .results-header-bar,
  .cyber-hud-header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .hud-left,
  .hud-right {
    width: 100%;
  }

  .hud-radar-pulse {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hud-vehicle-title {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 0.1rem;
  }

  .hud-meta {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .hud-top-tags {
    flex-wrap: wrap;
    gap: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .hud-top-tags .match-tag,
  .hud-top-tags .registry-tag {
    font-size: 0.45rem;
    padding: 0.15rem 0.25rem;
  }

  .hud-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.3rem;
  }

  .hud-size-box {
    padding: 0.3rem;
  }

  .hud-size-box .size-label {
    font-size: 0.55rem;
  }

  .size-val-pill {
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
  }

  .btn-cyber-reset {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .hud-top-row {
    padding-bottom: 0.5rem !important;
  }

  /* Products grid: 1-col on mobile */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    padding: 1rem;
  }

  /* Product cards */
  .product-card {
    max-width: 100%;
  }

  /* Breadcrumb nav */
  .results-back-nav {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    align-items: stretch;
  }

  .breadcrumb-trail {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .breadcrumb-trail::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb-current {
    white-space: nowrap;
  }

  .back-nav-right {
    width: 100%;
    justify-content: center;
  }

  .back-nav-hint {
    display: none;
    /* Hide redundant hint on mobile */
  }

  .btn-change-vehicle {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
  }
}

/* Products grid: 2-col on tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ----------------------------------------------
   6. DEALER SECTION — Mobile Stack
   ---------------------------------------------- */
@media (max-width: 768px) {
  .dealers-section {
    padding: 2rem 1rem;
  }

  .dealer-locator-card {
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .dealer-info-side {
    width: 100% !important;
  }

  /* Dealer search box: stack */
  .dealer-search-box {
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
  }

  .dealer-search-box input.dealer-input {
    width: 100%;
    min-width: unset;
  }

  .dealer-search-box .btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: 10px !important;
  }

  /* Show map on mobile with smaller height */
  .dealer-map-mock {
    display: block;
    height: 250px;
    margin-top: 2rem;
    border-radius: 12px;
  }
}

/* ----------------------------------------------
   7. FOOTER — Responsive Grid
   ---------------------------------------------- */

/* Tablet: 2-column footer */
@media (max-width: 1024px) {
  .footer-grid.cyber-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-newsletter-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .nl-form {
    width: 100%;
  }

  .nl-input-wrap {
    flex-direction: column;
    gap: 0.6rem;
  }

  .nl-input-wrap input,
  .nl-submit-btn {
    width: 100%;
    border-radius: 10px !important;
  }
}

/* Mobile: 1-column footer */
@media (max-width: 640px) {
  .footer-grid.cyber-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-newsletter-bar {
    padding: 1.5rem 1rem;
  }

  .footer-bottom.cyber-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }

  .copy-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .contact-details {
    gap: 0.6rem;
  }
}

/* ----------------------------------------------
   8. MODALS — Mobile Sizing
   ---------------------------------------------- */
@media (max-width: 768px) {

  /* Size recommendation modal */
  .cyber-modal-content {
    width: 95vw;
    max-width: 95vw;
    border-radius: 12px;
  }

  .size-value {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .modal-footer .btn-primary {
    font-size: 0.9rem;
    padding: 0.9rem;
  }

  /* Spec/Education modal */
  .modal-card {
    width: 95vw;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.25rem;
  }

  /* Spin Wheel modal */
  .wheel-modal-card {
    width: 95vw;
    padding: 1.5rem 1rem;
  }

  #wheel-circle {
    width: 220px !important;
    height: 220px !important;
  }
}

/* ----------------------------------------------
   9. GENERAL UTILITIES — Small Screen Polish
   ---------------------------------------------- */
@media (max-width: 480px) {

  /* Global padding tightening */
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Buttons full-width on tiny screens */
  .btn-large {
    font-size: 0.9rem;
    padding: 0.85rem 1.2rem;
  }

  /* HUD result header compact */
  .hud-vehicle-title {
    font-size: 1rem;
  }

  .hud-meta {
    font-size: 0.8rem;
  }

  /* Standard size pill compact */
  .size-val-pill {
    font-size: 0.85rem;
  }
}


/* ============================================================
   GAMIFICATION REWARDS HUB (PDF Phase 2 Features)
   ============================================================ */

.gamification-hub-card {
  width: 90vw;
  max-width: 600px;
  padding: 1.5rem;
  background: rgba(10, 15, 25, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 229, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Header & Points HUD */
.hub-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.hub-title-area h2 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

.hub-points-area {
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: right;
  min-width: 120px;
}

.points-label {
  display: block;
  font-size: 0.7rem;
  color: #FF6600;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.points-value {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}

/* Tabs */
.hub-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem;
  border-radius: 10px;
}

.hub-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hub-tab.active,
.hub-tab:hover {
  background: rgba(0, 229, 255, 0.15);
  color: #00E5FF;
}

/* Panes */
.hub-pane {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.hub-pane.active {
  display: flex;
}

.pane-desc {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* --- TAB 1: SPIN THE WHEEL --- */
.wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  /* Forces a perfect circle globally */
  flex-shrink: 0;
  /* Prevents oval distortion */
  margin: 0 auto 1.5rem;
}

.wheel-flapper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #FF6600;
  z-index: 10;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(255, 102, 0, 0.6));
}

.cyber-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #0a0e1a;
  background: conic-gradient(#FF6600 0deg 60deg,
      #002266 60deg 120deg,
      #00E5FF 120deg 180deg,
      #FFCC00 180deg 240deg,
      #10B981 240deg 300deg,
      #8B5CF6 300deg 360deg);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform cubic-bezier(0.1, 0.7, 0.1, 1);
}

.wheel-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
  border-radius: 50%;
  border: 4px solid #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
  z-index: 5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.6);
}

.wheel-slice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel-slice span {
  position: absolute;
  top: 8%;
  /* Perfect distance from the outer edge */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Slices are 60deg each. To center text in a slice, rotate to the middle of it. */
.slice-1 {
  transform: rotate(30deg);
}

.slice-2 {
  transform: rotate(90deg);
}

.slice-3 {
  transform: rotate(150deg);
}

.slice-4 {
  transform: rotate(210deg);
}

.slice-5 {
  transform: rotate(270deg);
}

.slice-6 {
  transform: rotate(330deg);
}

.spin-trigger-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  }
}

/* --- TAB 2: SCRATCH & WIN --- */
.scratch-card-container {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.scratch-prize-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #003399, #0a0e1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.prize-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.prize-icon {
  color: #FFCC00;
  margin-bottom: 0.2rem;
}

.prize-content h4 {
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
}

.prize-code {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-family: 'Share Tech Mono';
  color: #00E5FF;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.btn-claim {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

canvas#scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: crosshair;
}

/* --- TAB 3: QUIZ CHALLENGE --- */
.quiz-container {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quiz-question {
  text-align: center;
}

.q-badge {
  background: rgba(139, 92, 246, 0.2);
  color: #8B5CF6;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.quiz-question h3 {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: 'Outfit';
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: #00E5FF;
  transform: translateX(5px);
}

.quiz-btn.selected {
  background: rgba(0, 229, 255, 0.2);
  border-color: #00E5FF;
  transform: translateX(5px);
}

.quiz-btn.correct {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10B981;
  color: #10B981;
}

.quiz-btn.wrong {
  background: rgba(255, 51, 102, 0.2);
  border-color: #FF3366;
  color: #FF3366;
  animation: shakeBtn 0.4s ease;
}

@keyframes shakeBtn {

  0%,
  100% {
    transform: translateX(5px);
  }

  25% {
    transform: translateX(0px);
  }

  75% {
    transform: translateX(10px);
  }
}

.quiz-success {
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  color: #10B981;
  margin-bottom: 1rem;
}

/* --- PRIZE BOX MODAL OVERRIDE --- */
.cyber-prize-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 204, 102, 0.15), rgba(0, 204, 102, 0.05));
  border: 2px dashed rgba(0, 204, 102, 0.5);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: prizePopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-prize-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #00cc66;
  box-shadow: 0 0 20px #00cc66;
}

.prize-label {
  color: #00cc66;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.prize-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.2rem;
  color: #fff;
  margin-top: 0.6rem;
  text-shadow: 0 0 20px rgba(0, 204, 102, 0.8), 0 0 5px rgba(255, 255, 255, 0.6);
}

@keyframes prizePopIn {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive for hub */
@media (max-width: 640px) {
  .hub-tabs {
    flex-direction: column;
  }

  .hub-header {
    flex-direction: column;
    gap: 1rem;
  }

  .hub-points-area {
    width: 100%;
    text-align: center;
  }

  .gamification-hub-card {
    width: 95vw;
    padding: 1rem;
  }
}


/* Fix broken text above wheel */
.wheel-flapper i {
  display: none !important;
}



/* --- RESPONSIVE PRODUCT GRID OVERRIDE --- */
#products-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.5rem !important;
  width: 100% !important;
}

@media (max-width: 1200px) {
  #products-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  #products-container {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Technology Section & Bento Grid (2026 Design)
   ========================================================================== */
.tech-section {
  padding: 5rem 2rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.tech-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tech-badge {
  color: #00E5FF;
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.1);
  margin-bottom: 1rem;
}

.tech-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-desc {
  max-width: 600px;
  color: var(--text-muted);
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: crosshair;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
}

/* Large card spans 2 columns on desktop */
.bento-large {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.bento-small {
  grid-column: span 1;
  text-align: center;
}

/* Specific Glow Colors */
.bento-cyan {
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.bento-cyan:hover {
  border-color: #00E5FF;
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

.bento-cyan .bento-icon {
  color: #00E5FF;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.bento-cyan .bento-icon-ring {
  border-color: rgba(0, 229, 255, 0.4);
  border-top-color: #00E5FF;
}

.bento-cyan .bento-glow-orb {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
}

.bento-orange {
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.bento-orange:hover {
  border-color: #FF6600;
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
}

.bento-orange .bento-icon {
  color: #FF6600;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.bento-orange .bento-icon-ring {
  border-color: rgba(255, 102, 0, 0.4);
  border-top-color: #FF6600;
}

.bento-orange .bento-glow-orb {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
}

.bento-green {
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.bento-green:hover {
  border-color: #10B981;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.bento-green .bento-icon {
  color: #10B981;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.bento-green .bento-icon-ring {
  border-color: rgba(16, 185, 129, 0.4);
  border-top-color: #10B981;
}

.bento-green .bento-glow-orb {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.bento-red {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.bento-red:hover {
  border-color: #EF4444;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15);
}

.bento-red .bento-icon {
  color: #EF4444;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.bento-red .bento-icon-ring {
  border-color: rgba(239, 68, 68, 0.4);
  border-top-color: #EF4444;
}

.bento-red .bento-glow-orb {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.bento-purple {
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.bento-purple:hover {
  border-color: #A855F7;
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.bento-purple .bento-icon {
  color: #A855F7;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.bento-purple .bento-icon-ring {
  border-color: rgba(168, 85, 247, 0.4);
  border-top-color: #A855F7;
}

.bento-purple .bento-glow-orb {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.bento-blue {
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.bento-blue:hover {
  border-color: #3B82F6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.bento-blue .bento-icon {
  color: #3B82F6;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.bento-blue .bento-icon-ring {
  border-color: rgba(59, 130, 246, 0.4);
  border-top-color: #3B82F6;
}

.bento-blue .bento-glow-orb {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.bento-glow-orb {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.4s;
}

.bento-card:hover .bento-glow-orb {
  opacity: 1;
}

.bento-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.bento-large .bento-icon-wrapper {
  margin: 0;
  width: 120px;
  height: 120px;
  font-size: 3.5rem;
  flex-shrink: 0;
}

.bento-icon-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  animation: ring-spin 8s linear infinite;
}

.floating-icon {
  animation: floating-icon 3s ease-in-out infinite alternate;
}

.bento-heading {
  font-size: 1.4rem;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin-bottom: 0.75rem;
}

.bento-large .bento-heading {
  font-size: 1.8rem;
}

.bento-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Animations */
@keyframes ring-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floating-icon {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .bento-large .bento-icon-wrapper {
    margin: 0 auto;
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Dealer Locator Modern Animations (2026 UI Trends)
   ========================================================================== */

/* Glassmorphism Search Bar */
.dealer-search-box {
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 102, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dealer-search-box:focus-within {
  border-color: #FF6600;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4), inset 0 0 10px rgba(255, 102, 0, 0.1);
  transform: translateY(-2px);
}

.dealer-search-box .btn-primary {
  transition: all 0.3s ease;
}

.dealer-search-box .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.6);
}

/* 3D Tactile Result Card */
#dealer-result-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

#dealer-result-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #FF6600 !important;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
  background: rgba(15, 20, 35, 0.8) !important;
}

/* Cyber Radar Animation */
.dealer-map-mock {
  overflow: hidden;
  /* Keep the scanner inside the map */
}

.radar-scanner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 70%, rgba(255, 102, 0, 0.1) 90%, rgba(255, 102, 0, 0.8) 100%);
  border-radius: 50%;
  animation: radar-sweep 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes radar-sweep {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Beacon Ripple Synchronization */
.map-pulse-node::after {
  animation: beacon-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite !important;
  border-color: #FF6600 !important;
}

@keyframes beacon-ripple {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) scale(2.5);
    opacity: 0;
  }
}

/* ==========================================================================
   Modern Footer (2026 UI Trends)
   ========================================================================== */

/* 1. Immersive Liquid Glass Motion Background */
.footer-bg-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orb-float 15s infinite alternate ease-in-out;
}

.footer-orb-cyan {
  width: 500px;
  height: 500px;
  background: rgba(0, 229, 255, 0.4);
  top: -200px;
  left: -100px;
}

.footer-orb-orange {
  width: 600px;
  height: 600px;
  background: rgba(255, 102, 0, 0.3);
  bottom: -200px;
  right: -150px;
  animation-delay: -5s;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(100px, 50px) scale(1.2);
  }

  100% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

/* Layering fix so footer content sits above the animated background */
.footer-newsletter-bar,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

/* 2. Glassmorphism Newsletter Input */
.nl-input-wrap {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.nl-input-wrap:focus-within {
  background: rgba(0, 229, 255, 0.1);
  border-color: #00E5FF;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.nl-submit-btn i {
  transition: transform 0.3s ease;
}

.nl-submit-btn:hover i {
  transform: translateX(5px) scale(1.1);
}

/* 3. Magnetic Hover Micro-Interactions for Links */
.footer-links a {
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: #00E5FF;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.footer-links a:hover {
  color: #00E5FF;
  padding-left: 15px;
  /* Slide right effect */
}

.footer-links a:hover::before {
  height: 70%;
}

/* Telemetry Box Pulse Enhancements */
.footer-sys-box {
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   2026 Elegant Premium Footer Styles
   ========================================================================== */
.footer.elegant-footer {
  background: #080c16;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 5% 2rem;
  font-family: 'Inter', sans-serif;
  color: #a0aec0;
}

/* Elegant Newsletter Bar */
.elegant-newsletter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 3rem;
  margin-bottom: 4rem;
}

.elegant-nl-info h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.elegant-nl-info p {
  font-size: 0.95rem;
  margin: 0;
}

.elegant-input-wrap {
  display: flex;
  gap: 1rem;
}

.elegant-input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  color: #fff;
  width: 300px;
  transition: all 0.3s ease;
}

.elegant-input:focus {
  border-color: #00E5FF;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.elegant-submit-btn {
  background: #00E5FF;
  color: #080c16;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.elegant-submit-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* 4-Column Grid */
.elegant-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.elegant-footer-logo {
  height: 35px;
  margin-bottom: 1rem;
}

.elegant-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.elegant-status-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.8;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-dot.green {
  background: #00cc66;
  box-shadow: 0 0 8px #00cc66;
}

.status-dot.cyan {
  background: #00E5FF;
  box-shadow: 0 0 8px #00E5FF;
}

.elegant-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.elegant-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.elegant-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.elegant-links a:hover {
  color: #00E5FF;
}

.elegant-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.elegant-contact i {
  color: #00E5FF;
}

.elegant-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.elegant-social a {
  color: #a0aec0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.elegant-social a:hover {
  color: #00E5FF;
  transform: translateY(-3px);
}

/* Elegant Bottom */
.elegant-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.elegant-copy-right a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.elegant-copy-right a:hover {
  color: #fff;
}

.elegant-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .elegant-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .elegant-newsletter-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .elegant-input-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .elegant-footer-grid {
    grid-template-columns: 1fr;
  }

  .elegant-input-wrap {
    flex-direction: column;
  }

  .elegant-input {
    width: 100%;
  }

  .elegant-submit-btn {
    width: 100%;
  }

  .elegant-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}