/* ==========================================================================
   SHRI RANI CARS — MASTER ROYAL LUXURY AUTOMOTIVE STYLESHEET
   Dark Forest Emerald (#061A13) & Metallic Royal Gold (#D4AF37)
   Warm Luxury Alabaster (#FAF8F2) Customer Theme
   ========================================================================== */

:root {
  /* Brand Luxury Palette — Dark Forest Emerald & Royal Gold */
  --primary: #061A13;              /* Primary Dark Forest Emerald */
  --primary-navy: #061A13;
  --secondary-navy: #0B251D;        /* Elevated Forest Emerald */
  --navy-card: #0F3025;
  --forest-header: #061A13;
  
  --gold: #D4AF37;                 /* Metallic Royal Gold */
  --gold-light: #F3D78A;
  --gold-bright: #FFDF73;
  --gold-accent: #E5C378;
  --gold-dark: #A67C1E;
  --gold-glow: 0 4px 20px rgba(212, 175, 55, 0.4);
  --gold-border: rgba(212, 175, 55, 0.45);

  --lime: #84D400;                 /* Electric Accent for verified badges */
  --lime-hover: #72b800;
  --lime-bright: #A3E635;
  --lime-subtle: rgba(132, 212, 0, 0.12);

  --bg-page: #FAF8F2;              /* Warm Luxury Alabaster / Cream (Image 1) */
  --bg-surface: #FFFFFF;
  --bg-subtle: #F4F1E8;

  --text-main: #0B1E17;            /* Deep Forest Charcoal */
  --text-muted: #5A6B63;           /* Muted Olive/Slate Gray */
  --text-light: #8E9E96;
  --text-white: #FFFFFF;
  --text-gold: #D4AF37;

  --border-light: #E7E3D8;
  --border-subtle: #EFECE3;
  --border-gold: rgba(212, 175, 55, 0.4);

  /* Status Colors */
  --accent-emerald: #059669;
  --accent-emerald-light: #ECFDF5;
  --accent-amber: #D97706;
  --accent-amber-light: #FEF3C7;
  --accent-red: #DC2626;
  --accent-red-light: #FEE2E2;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #20ba59;

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 18px -2px rgba(6, 26, 19, 0.06);
  --shadow-hover: 0 16px 32px -4px rgba(6, 26, 19, 0.12);
  --shadow-modal: 0 25px 50px -12px rgba(6, 26, 19, 0.4);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility & SEO Heading Helper */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-page);
  padding-bottom: 68px; /* Space for Mobile Bottom Nav */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.92rem;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 0.85rem;
  }
}

/* Global Text Colors */
.text-primary { color: var(--gold-accent) !important; }
.text-navy { color: var(--primary-navy) !important; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ==========================================================================
   HEADER & NAVBAR (DARK FOREST EMERALD & METALLIC GOLD — MATCHES IMAGE 1)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #061A13;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.25rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 4px 0;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  display: block;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  border: 2px solid #D4AF37;
  transition: var(--transition);
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.6);
}

.brand-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name-gold {
  font-size: clamp(1rem, 3.8vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #E5C378;
  background: linear-gradient(135deg, #FFF0B8 0%, #D4AF37 50%, #B4831B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  white-space: nowrap;
  margin: 0;
}

.brand-divider-cars {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #E5C378;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.1;
  margin: 1px 0;
}

.brand-divider-cars span {
  color: rgba(212, 175, 55, 0.75);
}

.brand-tagline-gold {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #D4AF37;
  line-height: 1.1;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .header-container {
    height: 64px;
    gap: 0.5rem;
  }
  .brand-logo-img {
    width: 44px;
    height: 44px;
  }
  .brand-name-gold {
    font-size: 1.05rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.75rem;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E2E8F0;
  transition: var(--transition);
  padding: 0.5rem 0.2rem;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link:hover, .nav-link.active {
  color: #E5C378;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: #D4AF37;
  transition: var(--transition);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px #D4AF37;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.header-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1.5px solid #D4AF37;
  color: #E5C378;
  font-size: 0.92rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.mobile-only-btn {
  display: inline-flex;
}

.desktop-only-btn {
  display: none;
}

@media (min-width: 992px) {
  .mobile-only-btn {
    display: none !important;
  }
  .desktop-only-btn {
    display: inline-flex !important;
  }
}

.header-action-btn:hover {
  transform: translateY(-2px);
  background: #D4AF37;
  color: #061A13;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.header-action-btn.header-call-btn {
  color: #E5C378;
  border-color: #D4AF37;
}

.header-action-btn.header-wa-btn {
  color: #E5C378;
  border-color: #D4AF37;
}

.header-action-btn.header-fav-btn {
  color: #EF4444;
  border-color: #D4AF37;
}

.header-action-btn.header-admin-btn {
  color: #E5C378;
  border-color: #D4AF37;
}

.header-action-btn.header-wa-btn:hover {
  background: #16A34A;
  color: #FFFFFF;
  border-color: #16A34A;
}

.header-action-btn.header-fav-btn {
  color: #EF4444;
  background: #FEF2F2;
  border-color: #FECACA;
}

.header-action-btn.header-fav-btn:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

.header-action-btn.header-admin-btn {
  color: #071426;
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.header-action-btn.header-admin-btn:hover {
  background: #071426;
  color: var(--lime);
  border-color: #071426;
}

.header-action-btn .fav-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
}

@media (max-width: 640px) {
  .header-container {
    height: 62px;
    gap: 0.4rem;
  }
  .header-right {
    gap: 0.4rem;
  }
  .header-action-btn {
    width: 35px;
    height: 35px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(132, 212, 0, 0.3);
}

.btn-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132, 212, 0, 0.45);
}

.btn-navy {
  background: var(--primary-navy);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(7, 20, 38, 0.2);
}

.btn-navy:hover {
  background: var(--secondary-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 20, 38, 0.3);
}

.btn-outline {
  border: 1px solid var(--border-light);
  background: white;
  color: var(--primary-navy);
}

.btn-outline:hover {
  border-color: var(--primary-navy);
  background: #F8FAFC;
  color: var(--primary-navy);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--primary-navy);
  color: white;
}

.btn-call:hover {
  background: var(--secondary-navy);
  box-shadow: 0 4px 14px rgba(7, 20, 38, 0.3);
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HERO BANNER (PREMIUM LUXURY SHOWCASE)
   ========================================================================== */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0 2.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime-subtle);
  color: #3b7400;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-lime);
  margin-bottom: 1rem;
}

.hero-heading {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.hero-heading span {
  color: #559100;
  background: linear-gradient(135deg, #74b800 0%, #4a8000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.85rem;
  max-width: 520px;
}

@media (max-width: 640px) {
  .hero-text {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-showcase-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
  height: 380px;
  background: var(--primary-navy);
}

@media (max-width: 640px) {
  .hero-showcase-box {
    height: 240px;
    border-radius: var(--radius-lg);
  }
}

.hero-showcase-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-showcase-box:hover img {
  transform: scale(1.04);
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 20, 38, 0.9) 0%, rgba(7, 20, 38, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: white;
}

.hero-showcase-overlay h3 {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

/* ==========================================================================
   BRAND FILTER BAR
   ========================================================================== */
.brand-bar-section {
  padding: 1rem 0 0.5rem;
}

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

.brand-bar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.01em;
}

.brand-filters-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.brand-filters-link-btn:hover {
  border-color: var(--lime);
  color: var(--primary-navy);
}

.brand-scroller {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.75rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.brand-scroller::-webkit-scrollbar {
  height: 4px;
}
.brand-scroller::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.brand-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid var(--border-light);
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.brand-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-pill:hover {
  border-color: var(--gold);
  color: var(--primary-navy);
  background: var(--bg-subtle);
}

.brand-pill.active {
  background: #061A13;
  color: #FFFFFF;
  border-color: #061A13;
  box-shadow: 0 4px 14px rgba(6, 26, 19, 0.3);
}

.brand-pill .pill-count {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
}

.brand-pill.active .pill-count {
  background: #D4AF37;
  color: #061A13;
}

/* ==========================================================================
   INVENTORY & CAR GRID (2-COLUMNS ON MOBILE!)
   ========================================================================== */
.inventory-section {
  padding: 1rem 0 3rem;
}

.section-head-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-main-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .section-main-title {
    font-size: 1.85rem;
  }
}

.section-sub-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 2-Columns on Mobile, 3-Columns on Desktop */
.car-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .car-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.car-item-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.car-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
  border-color: #CBD5E1;
}

.car-thumb-wrap {
  position: relative;
  width: 100%;
  height: 125px; /* Compact image height for 2-column mobile cards */
  background: #0B1E36;
  overflow: hidden;
}

@media (min-width: 640px) {
  .car-thumb-wrap {
    height: 175px;
  }
}

@media (min-width: 992px) {
  .car-thumb-wrap {
    height: 210px;
  }
}

.car-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-item-card:hover .car-thumb-wrap img {
  transform: scale(1.05);
}

.card-badge-status {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: capitalize;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.status-badge-avail {
  background: #22C55E;
  color: white;
}

.status-badge-res {
  background: #F59E0B;
  color: white;
}

.status-badge-sold {
  background: #EF4444;
  color: white;
}

.btn-card-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-card-fav.active,
.btn-card-fav:hover {
  color: #EF4444;
  background: #FFFFFF;
}

.card-content-area {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .card-content-area {
    padding: 1rem;
  }
}

.card-brand-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.card-car-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 0.45rem;
  min-height: 1.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-variant-inline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.card-specs-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.45rem;
  margin-bottom: 0.65rem;
}

.spec-mini-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spec-mini-item i {
  font-size: 0.75rem;
  color: #64748B;
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}

.card-price-arrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.4rem;
  border-top: 1px dashed #E2E8F0;
}

.card-price-text {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .card-price-text {
    font-size: 1.2rem;
  }
}

.btn-card-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #061A13;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.car-item-card:hover .btn-card-arrow-circle {
  background: #D4AF37;
  color: #061A13;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   FULL-PAGE PRODUCT VIEW (FLIPKART / AMAZON STYLE)
   ========================================================================== */
.product-page-view {
  display: none;
  padding: 1.5rem 0 4rem;
  background: #FFFFFF;
  min-height: 80vh;
}

.product-page-view.active {
  display: block;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--primary-navy);
  font-weight: 700;
}

.product-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .product-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.product-gallery-main {
  position: relative;
  width: 100%;
  height: 390px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-navy);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 640px) {
  .product-gallery-main {
    height: 260px;
  }
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }

.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.product-thumb-item {
  width: 76px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-thumb-item.active, .product-thumb-item:hover {
  border-color: var(--lime);
  opacity: 1;
  box-shadow: 0 0 10px rgba(132, 212, 0, 0.4);
}

.product-price-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-price-big {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.product-cta-cluster {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .product-cta-cluster {
    flex-direction: row;
  }
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .product-specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-tile {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.spec-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--lime-subtle);
  color: #4a8000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.spec-tile-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.spec-tile-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.product-features-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lime-subtle);
  color: #3b7400;
  border: 1px solid var(--border-lime);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.related-cars-section {
  padding-top: 2.5rem;
  border-top: 2px solid var(--border-light);
}

/* ==========================================================================
   PWA INSTALL BANNER (NAVY & LIME LUXURY THEME)
   ========================================================================== */
.pwa-install-banner {
  position: fixed;
  bottom: 60px; /* Above mobile bottom bar */
  left: 10px;
  right: 10px;
  background: #071426;
  color: white;
  padding: 0.65rem 0.85rem;
  display: none; /* Hidden by default until prompted on eligible browser */
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  z-index: 998;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(132, 212, 0, 0.45);
  animation: slideUp 0.3s ease;
}

/* Hide permanently in Standalone PWA / Desktop App / Mobile App Mode */
@media all and (display-mode: standalone), 
       all and (display-mode: window-controls-overlay), 
       all and (display-mode: fullscreen), 
       all and (display-mode: minimal-ui) {
  .pwa-install-banner,
  #pwa-install-banner {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .pwa-install-banner {
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 460px;
    width: 90%;
  }
}

.pwa-banner-text {
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.pwa-banner-icon {
  width: 44px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 2px 4px;
  flex-shrink: 0;
  border: 1px solid rgba(132, 212, 0, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pwa-banner-text strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.2;
}

.pwa-banner-text p {
  font-size: 0.7rem;
  color: #94A3B8;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

@media (min-width: 640px) {
  .pwa-banner-text p {
    max-width: none;
  }
}

.pwa-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.pwa-btn-install,
.pwa-install-btn {
  background: #84D400 !important;
  color: #071426 !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  padding: 0.42rem 0.85rem !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(132, 212, 0, 0.4) !important;
  transition: all 0.2s ease !important;
  font-family: inherit;
}

.pwa-btn-install:hover,
.pwa-install-btn:hover {
  background: #A3E635 !important;
  transform: scale(1.04) !important;
}

.pwa-btn-close,
.pwa-close-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  border: none !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.82rem !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.pwa-btn-close:hover,
.pwa-close-btn:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(7, 20, 38, 0.08);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mob-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 0.2rem;
  flex: 1;
  padding: 0.4rem 0;
  transition: var(--transition);
}

.mob-nav-btn i {
  font-size: 1.15rem;
}

.mob-nav-btn.active, .mob-nav-btn:hover {
  color: var(--primary-navy);
}

/* Floating Quick Actions */
.floating-dial {
  position: fixed;
  bottom: 80px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 99;
}

@media (min-width: 992px) {
  .floating-dial {
    bottom: 25px;
  }
}

.fab-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.fab-circle:hover {
  transform: scale(1.1);
}

.fab-whatsapp-btn { background: var(--whatsapp); }
.fab-call-btn { background: var(--primary-navy); }

/* ==========================================================================
   MODALS & DRAWERS
   ========================================================================== */
.modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 20, 38, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-layer.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: scale(0.95) translateY(10px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.modal-layer.active .modal-window {
  transform: scale(1) translateY(0);
}

.modal-top {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.modal-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.modal-dismiss {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 1rem;
  transition: var(--transition);
}

.modal-dismiss:hover {
  background: #E2E8F0;
  color: var(--primary-navy);
}

.modal-content-body {
  padding: 1.5rem;
}

.modal-actions-bar {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  background: #F8FAFC;
}

/* Forms */
.form-field-group {
  margin-bottom: 1.1rem;
}

.form-field-lbl {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.form-input-ctrl {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  color: var(--primary-navy);
  outline: none;
  transition: var(--transition);
}

.form-input-ctrl:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(7, 20, 38, 0.08);
}

.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Toast Shelf */
.toast-shelf {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast-pill {
  background: var(--primary-navy);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-modal);
  animation: slideInRight 0.3s ease;
}

.toast-pill.success {
  border-left: 4px solid var(--lime);
}

.toast-pill.error {
  border-left: 4px solid var(--accent-red);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   THE SRI RANI CARS ADVANTAGE / PERKS GRID
   ========================================================================== */
.features-container {
  padding: 3.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .perks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.perk-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  text-align: left;
}

.perk-box:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: var(--shadow-hover);
  background: #FFFFFF;
}

.perk-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--lime-subtle);
  color: #4a8000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-lime);
}

.perk-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.perk-box p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SHOWROOM LOCATION & CONTACT
   ========================================================================== */
.contact-block {
  padding: 3.5rem 0 4rem;
  background: #FAF8F2;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
  }
}

.showroom-details-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(6, 26, 19, 0.05);
}

@media (max-width: 640px) {
  .showroom-details-box {
    padding: 1.25rem;
    border-radius: 14px;
  }
}

.contact-row-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #061A13;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1.5px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(6, 26, 19, 0.15);
}

.map-frame-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 26, 19, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 640px) {
  .map-frame-wrap {
    height: 260px;
    min-height: 260px;
    border-radius: 14px;
  }
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER (DEEP NAVY & ELECTRIC LIME ACCENTS)
   ========================================================================== */
.site-footer {
  background: var(--primary-navy);
  color: #CBD5E1;
  padding: 3.5rem 0 5.5rem;
  border-top: 3px solid var(--lime);
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .site-footer {
    padding: 4rem 0 2.5rem;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-columns {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--lime);
  border-radius: var(--radius-full);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-list li a {
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav-list li a:hover {
  color: var(--lime);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #CBD5E1;
}

.footer-social-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
  transform: translateY(-3px);
}

.footer-social-icon.icon-youtube:hover {
  background: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  border-color: #FF0000;
}

.footer-social-icon.icon-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
  border-color: transparent;
}

.footer-social-icon.icon-facebook:hover {
  background: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  border-color: #1877F2;
}

.footer-social-icon.icon-maps:hover {
  background: #EA4335;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
  border-color: #EA4335;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (MATCHES IMAGE 1: DARK FOREST EMERALD & GOLD)
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #061A13;
  border-top: 1.5px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
  padding: 0 0.25rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mob-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #CBD5E1;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 2px 4px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.mob-nav-btn i {
  font-size: 1.15rem;
  color: #CBD5E1;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.mob-nav-btn.active {
  color: #E5C378;
}

.mob-nav-btn.active i {
  color: #E5C378;
}

.mob-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
  box-shadow: 0 0 6px #D4AF37;
}

.mob-nav-btn:hover {
  color: #FFFFFF;
}

.mob-nav-btn:hover i {
  color: #FFFFFF;
}

.mob-nav-btn:active i {
  transform: scale(0.88);
}

.mob-nav-btn:hover {
  color: var(--primary-navy);
}

.mob-nav-btn:hover i {
  color: var(--primary-navy);
}

.mob-nav-btn:active i {
  transform: scale(0.88);
}

/* ==========================================================================
   MODALS, SEARCH OVERLAY & BOTTOM DRAWERS
   ========================================================================== */
.modal-layer {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 38, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-layer.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(0.94) translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-layer.active .modal-window {
  transform: scale(1) translateY(0);
}

.modal-top {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-dismiss {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.modal-dismiss:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.modal-content-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-actions-bar {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: #F8FAFC;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

/* Omni Search Styles */
.omni-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.omni-search-input-wrap i {
  position: absolute;
  left: 1.1rem;
  color: #071426;
  font-size: 1.15rem;
}

.omni-search-field {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #071426;
  background: #F8FAFC;
  border: 2px solid var(--primary-navy);
  border-radius: var(--radius-lg);
  outline: none;
  transition: var(--transition);
}

.omni-search-field:focus {
  background: #FFFFFF;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(132, 212, 0, 0.25);
}

.search-chips-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.search-chip {
  padding: 0.35rem 0.75rem;
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
}

.search-chip:hover {
  background: var(--lime-subtle);
  border-color: var(--lime);
  color: var(--primary-navy);
}

.pill-tag-btn {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: white;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.pill-tag-btn:hover,
.pill-tag-btn.active {
  background: var(--primary-navy);
  color: var(--lime);
  border-color: var(--primary-navy);
}

/* ==========================================================================
   DEDICATED FULL-PAGE PRODUCT DETAILS VIEW (FLIPKART / AMAZON STYLE)
   ========================================================================== */
.product-page-view {
  display: none;
  background: #F8FAFC;
  padding: 1.5rem 0 4rem;
  min-height: 85vh;
  position: relative;
}

.product-page-view.active {
  display: block;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  color: #64748B;
  flex-wrap: wrap;
}

.breadcrumb-nav button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: 0.88rem;
  transition: var(--transition);
}

.breadcrumb-nav button:hover {
  color: var(--lime-dark);
  text-decoration: underline;
}

/* Product Main Grid Layout */
.product-layout-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .product-layout-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

/* Left Column: Sticky Gallery */
.product-left-gallery {
  position: relative;
}

@media (min-width: 992px) {
  .product-left-gallery {
    position: sticky;
    top: 90px;
  }
}

/* Product Page View (Warm Luxury Alabaster Theme) */
.product-page-view {
  background: #FAF8F2;
  padding: 1.5rem 0 4rem;
}

.main-image-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #061A13;
  box-shadow: 0 8px 24px rgba(6, 26, 19, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
}

@media (min-width: 992px) {
  .main-image-viewport {
    aspect-ratio: 4 / 3;
  }
}

.main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: #BACF54;
  color: #061A13;
  border: none;
  z-index: 2;
}

.product-status-badge.status-sold {
  background: #DC2626;
  color: #FFFFFF;
}

.btn-fav-round {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E293B;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.btn-fav-round:hover,
.btn-fav-round.active {
  transform: scale(1.08);
  color: #EF4444;
  border-color: #FECACA;
}

/* Thumbnails */
.product-thumbnails-carousel {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.product-thumbnails-carousel::-webkit-scrollbar {
  height: 4px;
}
.product-thumbnails-carousel::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.product-thumb-item {
  width: 78px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  background: #FAF8F2;
}

.product-thumb-item:hover,
.product-thumb-item.active {
  opacity: 1;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px #061A13;
  transform: translateY(-2px);
}

/* Right Column Details Card */
.product-right-details {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(6, 26, 19, 0.06);
}

@media (max-width: 640px) {
  .product-right-details {
    padding: 1.25rem;
    border-radius: 14px;
  }
}

.product-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: #FAF8F2;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #061A13;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-chip i {
  color: #A67C1E;
}

.product-price-card {
  background: #FDFBF7;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.product-price-big {
  font-size: 1.85rem;
  font-weight: 800;
  color: #8F6813;
  letter-spacing: -0.02em;
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .product-price-big {
    font-size: 1.6rem;
  }
}

.product-cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.product-cta-cluster .btn {
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .product-cta-cluster {
    flex-direction: column;
  }
  .product-cta-cluster .btn {
    width: 100%;
  }
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .product-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.spec-tile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: #FAF8F2;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  min-width: 0;
}

.spec-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #061A13;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.spec-tile-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: #5A6B63;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spec-tile-val {
  font-size: 0.86rem;
  font-weight: 800;
  color: #061A13;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-features-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #166534;
}

.related-cars-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--border-light);
}

/* ==========================================================================
   ULTRA-RESPONSIVE VIEWPORT POLISH (FROM 320PX TO 480PX MOBILE)
   ========================================================================== */
@media (max-width: 480px) {
  .site-header .container {
    padding: 0 0.75rem;
  }
  
  .brand-titles h1 {
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
  
  .header-right {
    gap: 0.3rem;
  }
  
  .header-right .btn-sm {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
  }

  .car-grid-container {
    gap: 0.65rem;
  }

  .card-content-area {
    padding: 0.65rem;
  }

  .card-car-title {
    font-size: 0.82rem;
    min-height: 2.3em;
  }

  .card-specs-matrix {
    padding: 0.3rem 0.15rem;
    gap: 0.15rem;
  }

  .matrix-val {
    font-size: 0.65rem;
  }

  .matrix-lbl {
    font-size: 0.55rem;
  }

  .price-val-main {
    font-size: 0.95rem;
  }

  .price-emi-text,
  .owner-pill-badge {
    font-size: 0.62rem;
  }

  .btn-card-view {
    padding: 0.38rem 0.25rem;
    font-size: 0.68rem;
  }

  .btn-card-wa {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .product-layout-grid {
    gap: 1.15rem;
  }

  #product-title-main {
    font-size: 1.35rem !important;
  }

  .product-price-big {
    font-size: 1.45rem !important;
  }

  .product-specs-grid {
    gap: 0.45rem;
  }

  .spec-tile {
    padding: 0.6rem 0.65rem;
    gap: 0.5rem;
  }

  .spec-tile-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .spec-tile-val {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .brand-titles h1 {
    font-size: 0.88rem;
  }
  
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .car-grid-container {
    gap: 0.45rem;
  }

  .card-content-area {
    padding: 0.5rem;
  }

  .price-val-main {
    font-size: 0.88rem;
  }

  .btn-card-view span {
    font-size: 0.62rem;
  }
}

/* ==========================================================================
   WISHLIST / FAVORITES SYSTEM & HEADER FAVORITE BUTTON
   ========================================================================== */
.btn-fav-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: #F8FAFC;
  color: #EF4444;
  font-size: 1.1rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.btn-fav-header:hover {
  background: #FEE2E2;
  transform: scale(1.06);
  border-color: #FCA5A5;
}

.fav-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #DC2626;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Card Wishlist Heart Button */
.btn-card-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: var(--transition);
  cursor: pointer;
}

.btn-card-fav:hover {
  transform: scale(1.1);
  color: #DC2626;
  background: #FFFFFF;
}

.btn-card-fav.active {
  color: #DC2626;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.25);
}

@media (max-width: 480px) {
  .btn-card-fav {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    top: 6px;
    right: 6px;
  }
}

/* Favorites Modal List Items */
.fav-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 0.65rem;
  transition: var(--transition);
}

.fav-item-row:hover {
  background: #FFFFFF;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.fav-item-thumb {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.fav-item-info {
  flex: 1;
  min-width: 0;
}

.fav-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #071426;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

.fav-item-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #16A34A;
}

.fav-item-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.fav-remove-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #FEE2E2;
  color: #DC2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid #FECACA;
  transition: var(--transition);
}

.fav-remove-btn:hover {
  background: #DC2626;
  color: #FFFFFF;
}

.fav-view-btn {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.fav-view-btn:hover {
  background: #0B1F3A;
  color: var(--lime);
}

/* ==========================================================================
   QUICK APP-STYLE OMNI SEARCH CONTAINER
   ========================================================================== */
.quick-omni-search-container {
  padding: 0.75rem 0 0.25rem;
  background: transparent;
}

.quick-search-box {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.1rem;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(6, 26, 19, 0.04);
  max-width: 900px;
  margin: 0 auto;
}

.quick-search-box:hover {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
  transform: translateY(-1px);
}

.quick-search-icon {
  color: #061A13;
  font-size: 1rem;
}

.quick-search-placeholder {
  flex: 1;
  font-size: 0.88rem;
  color: #5A6B63;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-search-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: #061A13;
  color: #E5C378;
  border: 1px solid #D4AF37;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   HERO BANNER CAROUSEL (STYLED IN SECTION 2 BELOW)
   ========================================================================== */


/* ==========================================================================
   ABOUT SRI RANI CARS SECTION
   ========================================================================== */
.about-section {
  padding: 3.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.about-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #071426;
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}

.about-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .about-points-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.about-point-card {
  display: flex;
  gap: 0.85rem;
  background: #F8FAFC;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.about-point-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--primary-navy);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.about-point-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #071426;
  margin-bottom: 0.25rem;
}

.about-point-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.about-visual-card {
  background: linear-gradient(145deg, #071426 0%, #0B1F3A 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 16px 36px rgba(7, 20, 38, 0.25);
  border: 1px solid var(--border-lime);
}

.about-brand-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  margin: 0 auto 1rem;
  border: 2px solid var(--lime);
}

.about-visual-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stats-row strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--lime);
}

.about-stats-row span {
  font-size: 0.72rem;
  color: #CBD5E1;
  text-transform: uppercase;
}

.about-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   CUSTOMER REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 3.5rem 0;
  background: var(--bg-page);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(7, 20, 38, 0.15);
}

.review-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.2rem;
}

.review-text {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #071426;
  margin-bottom: 0.1rem;
}

.review-car-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER SOCIAL BRAND ICONS
   ========================================================================== */
.footer-social-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  font-size: 1.15rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  transform: translateY(-3px) scale(1.08);
}

.icon-youtube {
  background: #FF0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
}

.icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35);
}

.icon-facebook {
  background: #1877F2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

.icon-maps {
  background: #EA4335;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.35);
}

.icon-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.icon-phone {
  background: #071426;
  color: var(--lime) !important;
  border: 1px solid var(--border-lime);
  box-shadow: 0 4px 12px rgba(7, 20, 38, 0.35);
}

/* ==========================================================================
   ROYAL GOLD & ONYX LUXURY PRELOADER (EXACT MATCH FOR IMAGE 2)
   ========================================================================== */
.luxury-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: radial-gradient(circle at 50% 45%, #080D11 0%, #030507 60%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
}

.luxury-preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}

/* Floor Reflection Spotlight (Image 2) */
.preloader-floor-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 180px;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.12) 40%, transparent 75%);
  pointer-events: none;
  filter: blur(20px);
}

/* Central Preloader Stage */
.preloader-stage-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

/* Emblem & Rotating Glowing Laser Ring Container */
.preloader-emblem-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Laser Arc Ring */
.preloader-svg-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
  filter: drop-shadow(0 0 6px #FFF490) drop-shadow(0 0 14px #FDE047) drop-shadow(0 0 28px rgba(212, 175, 55, 0.95));
}

.svg-ring-track {
  fill: none;
  stroke: rgba(212, 175, 55, 0.18);
  stroke-width: 4;
}

.svg-ring-progress {
  fill: none;
  stroke: #FFF0B8;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 603.18;
  stroke-dashoffset: 603.18;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 8px #FFDE59);
}

/* Inner Gold Framed Disc */
.preloader-emblem-disc {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.45);
}

.preloader-emblem-disc::before {
  display: none;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5));
  animation: preloaderPulse 2.4s ease-in-out infinite alternate;
}

/* Preloader Typography (Image 2) */
.preloader-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preloader-loading-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #FDE047;
  background: linear-gradient(135deg, #FFF9D2 0%, #FDE047 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.preloader-trust-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0;
  opacity: 0.88;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.97); }
  100% { transform: scale(1.03); }
}

@media (max-width: 480px) {
  .preloader-emblem-container {
    width: 190px;
    height: 190px;
    margin-bottom: 1.5rem;
  }
  .preloader-emblem-disc {
    width: 148px;
    height: 148px;
    padding: 0;
  }
  .preloader-loading-title {
    font-size: 1rem;
    letter-spacing: 0.28em;
  }
}

/* Quick Omni Search Bar (Mobile Only) */
.quick-omni-search-container {
  display: block;
  background: #FAF8F2;
  padding: 0.55rem 0 0.15rem;
  border-bottom: none;
}

.quick-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  border: 1.5px solid #E2DCD0;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.quick-search-box:hover {
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.quick-search-icon {
  color: #A67C1E;
  font-size: 0.95rem;
}

.quick-search-placeholder {
  flex: 1;
  color: #8E9E96;
  font-size: 0.85rem;
  font-weight: 500;
}

.quick-search-btn-badge {
  background: #061A13;
  color: #E5C378;
  border: 1px solid rgba(212, 175, 55, 0.4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
}

@media (min-width: 992px) {
  .quick-omni-search-container {
    display: none; /* In reference image, header transitions directly to dark hero without gap */
  }
}

/* 1. Header Contact Pills (Desktop) */
.header-contact-pill {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(4, 21, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 4px 14px 4px 5px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.header-contact-pill:hover {
  border-color: #D4AF37;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

@media (min-width: 992px) {
  .header-contact-pill {
    display: inline-flex;
  }
}

.pill-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pill-call-circle {
  background: rgba(212, 175, 55, 0.15);
  color: #E5C378;
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.pill-wa-circle {
  background: #25D366;
  color: #FFFFFF;
}

.pill-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pill-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: #8FA49B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-val {
  font-size: 0.82rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* 2. Hero Showcase Section (Warm Luxury Alabaster Theme) */
.hero-showcase-section {
  position: relative;
  background: #FAF8F2 !important;
  border-bottom: none;
  padding: 1.25rem 0 1.5rem;
  overflow: hidden;
}

.hero-showcase-section::before {
  display: none !important;
}

.hero-full-showcase {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.hero-visual-content {
  position: relative;
  width: 100%;
}

.hero-slider-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 26, 19, 0.08);
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  line-height: 0;
  font-size: 0;
}

.hero-slide {
  display: none;
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  animation: fadeInHero 0.5s ease-in-out;
}

.hero-slide.active {
  display: block;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.5;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .hero-showcase-section {
    padding: 0.6rem 0 0.85rem !important;
    background: #FAF8F2 !important;
  }
  .hero-slider-wrap {
    border-radius: 14px;
    background: transparent;
  }
  .hero-slide img {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 220px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .hero-slide img {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 220px;
    border-radius: 12px;
  }
  .hero-showcase-section {
    padding: 0.5rem 0 0.75rem !important;
    background: #FAF8F2 !important;
  }
}

.hero-car-badge-pill {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 26, 19, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.8);
  color: #E5C378;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-slider-nav-arrows {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-nav-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  background: rgba(6, 26, 19, 0.8);
  color: #D4AF37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.slider-nav-arrow:hover {
  background: #D4AF37;
  color: #04140E;
  transform: scale(1.08);
}

/* 3. 5-Feature Value Highlights Strip */
.value-strip-section {
  background: #04140E;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.4rem 0;
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .value-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-strip-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.value-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.value-text span {
  display: block;
  font-size: 0.72rem;
  color: #8FA49B;
  margin-top: 2px;
}

/* 4. Featured Cars ("Popular Picks") Grid */
/* 3. 5-Feature Value Highlights Strip */
.value-strip-section {
  background: #04140E;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.4rem 0;
}

@media (max-width: 991px) {
  .value-strip-section {
    display: none; /* In mobile screenshot, Browse by Brand comes immediately under Hero Slider */
  }
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.value-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.value-text span {
  display: block;
  font-size: 0.72rem;
  color: #8FA49B;
  margin-top: 2px;
}

.inventory-section {
  padding: 0.6rem 0 2.5rem;
  background: #FAF8F2;
}

.section-eyebrow-gold {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #A67C1E;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.section-title-divider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-main-title {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: #061A13;
  margin: 0;
}

.title-gold-line {
  height: 2.5px;
  width: 55px;
  background: #D4AF37;
  border-radius: 2px;
}

.view-all-cars-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #A67C1E;
  font-weight: 700;
  font-size: 0.92rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 8px;
}

.view-all-cars-btn:hover {
  color: #785708;
  transform: translateX(3px);
}

.car-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .car-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .car-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

/* Car Card Matching Exact Reference */
.car-card {
  background: #FFFFFF;
  border: 1px solid #E5E0D5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(6, 26, 19, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(6, 26, 19, 0.12);
  border-color: #D4AF37;
}

.car-card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 185px;
  background: #0B251D;
  overflow: hidden;
}

.car-card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-card-thumb-wrap img {
  transform: scale(1.05);
}

.car-badge-available {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #061A13;
  color: #A3E635;
  border: 1px solid rgba(163, 230, 53, 0.4);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.car-fav-btn-round {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.car-fav-btn-round:hover, .car-fav-btn-round.favorited {
  color: #EF4444;
  border-color: #FECACA;
}

.car-card-body {
  padding: 1.1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-brand-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5A6B63;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.car-title-model {
  font-size: 1.05rem;
  font-weight: 800;
  color: #061A13;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}

.car-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  padding: 0.6rem 0;
  border-top: 1px dashed #E5E0D5;
  border-bottom: 1px dashed #E5E0D5;
  margin-bottom: 0.85rem;
}

.car-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #4A5B53;
  font-weight: 600;
}

.car-spec-item i {
  color: #A67C1E;
  font-size: 0.8rem;
  width: 14px;
}

.car-price-block {
  margin-bottom: 0.85rem;
}

.car-price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #8F6813;
  letter-spacing: -0.01em;
}

.btn-card-view-details {
  background: #061A13;
  color: #E5C378;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-card-view-details:hover {
  background: #0B251D;
  border-color: #D4AF37;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(6, 26, 19, 0.2);
}

/* 5. Customer Reviews & Testimonials Section (Warm Alabaster Theme + Mobile Horizontal Slider) */
.reviews-section {
  padding: 3rem 0 3.5rem;
  background: #FAF8F2;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 2rem 0 2.25rem;
  }
  .reviews-header {
    margin-bottom: 1.25rem;
  }
  .reviews-header .section-main-title {
    font-size: 1.35rem !important;
  }
  .reviews-header .section-sub-title {
    font-size: 0.8rem !important;
  }
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-top: 0.85rem;
  box-shadow: 0 3px 10px rgba(6, 26, 19, 0.05);
}

.google-badge-stars {
  color: #F59E0B;
  font-size: 0.82rem;
  display: flex;
  gap: 2px;
}

.google-badge-score {
  font-size: 0.85rem;
  font-weight: 800;
  color: #061A13;
}

.google-badge-divider {
  color: #CBD5E1;
  font-size: 0.75rem;
}

.google-badge-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5A6B63;
}

/* Reviews Carousel: Continuous Infinite Marquee Loop on Mobile, 2-Column Grid on Desktop */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: reviewsInfiniteMarquee 30s linear infinite;
  will-change: transform;
}

.reviews-marquee-track:hover,
.reviews-marquee-track:active,
.reviews-marquee-track.is-paused {
  animation-play-state: paused;
}

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

@media (min-width: 992px) {
  .reviews-marquee-wrapper {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
    padding: 0;
  }
  .reviews-marquee-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    animation: none !important;
    transform: none !important;
  }
  .reviews-marquee-track .review-card.clone {
    display: none !important;
  }
}

.review-card {
  flex: 0 0 240px;
  max-width: 240px;
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 3px 12px rgba(6, 26, 19, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  user-select: none;
}

@media (min-width: 992px) {
  .review-card {
    flex: initial;
    max-width: 100%;
    padding: 1.25rem 1.35rem;
    border-radius: 16px;
  }
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: #D4AF37;
  box-shadow: 0 10px 25px rgba(6, 26, 19, 0.08);
}

.review-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 0.35rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reviewer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #061A13;
  color: #D4AF37;
  border: 1.2px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .reviewer-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

.reviewer-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #061A13;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .reviewer-name {
    font-size: 0.88rem;
  }
}

.reviewer-city {
  font-size: 0.62rem;
  color: #5A6B63;
  display: block;
  margin-top: 1px;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.68rem;
  display: flex;
  gap: 1.5px;
}

@media (min-width: 992px) {
  .review-stars {
    font-size: 0.75rem;
  }
}

.review-car-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F4F1EA;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  color: #061A13;
  margin-bottom: 0.35rem;
  width: fit-content;
}

.review-car-tag i {
  color: #A67C1E;
}

.review-text {
  font-size: 0.74rem;
  color: #334155;
  line-height: 1.4;
  margin: 0 0 0.5rem;
  flex: 1;
}

@media (min-width: 992px) {
  .review-text {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #E2E8F0;
  padding-top: 0.35rem;
  font-size: 0.65rem;
  color: #64748B;
}

.review-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-badge {
  color: #16A34A;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 7. 4-Column Luxury Footer */
.site-footer {
  background: #04140E;
  border-top: 2px solid rgba(212, 175, 55, 0.4);
  color: #E2E8F0;
  padding: 4rem 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1.3fr 0.8fr 1.3fr 1.2fr;
    gap: 2.75rem;
  }
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #D4AF37;
  object-fit: cover;
}

.footer-brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #E5C378;
  margin: 0;
}

.footer-brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #D4AF37;
  display: block;
  margin-top: 2px;
}

.footer-about-text {
  font-size: 0.85rem;
  color: #8FA49B;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social-row {
  display: flex;
  gap: 0.6rem;
}

.footer-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(6, 26, 19, 0.6);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-circle:hover {
  background: #D4AF37;
  color: #04140E;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #E5C378;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: #B0C4BC;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-nav-list a:hover {
  color: #E5C378;
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #B0C4BC;
  line-height: 1.4;
}

.footer-contact-list a {
  color: #B0C4BC;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: #E5C378;
}

.footer-icon-gold {
  color: #D4AF37;
  font-size: 0.92rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-hours-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #B0C4BC;
}

.footer-map-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  max-width: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-map-thumb {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.footer-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: #061A13;
  color: #E5C378;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-map-btn:hover {
  background: #D4AF37;
  color: #04140E;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #8FA49B;
}

.footer-legal-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-legal-links a {
  color: #8FA49B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #E5C378;
}

/* ==========================================================================
   MOBILE & DESKTOP ULTRA-PRECISION THEME PARITY (MATCHES MOBILE SCREENSHOT)
   ========================================================================== */

/* Hero Mobile Overlay & Badge System */
.hero-slide {
  position: relative;
}

.hero-slide-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 26, 19, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-slide-badge i {
  color: #D4AF37;
  font-size: 0.75rem;
}

.hero-slide-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 70px;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-slide-overlay-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 3px;
}

.hero-slide-overlay-text p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #D6E4DE;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Hero Carousel Dots (Mobile Screenshot) */
.hero-carousel-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 6;
  background: rgba(4, 21, 15, 0.7);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 16px;
  border-radius: 6px;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* Hide desktop text & slider arrows on mobile screens */
@media (max-width: 991px) {
  .hero-text-content {
    display: none;
  }
  .hero-showcase-section {
    padding: 0.85rem 0 1.25rem;
  }
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-slider-wrap {
    border-radius: 14px;
  }
  .hero-slide img {
    height: 220px;
    object-position: center;
  }
  .hero-car-badge-pill {
    display: none;
  }
  .hero-slider-nav-arrows {
    display: none;
  }
}

@media (min-width: 992px) {
  .hero-slide-overlay-text,
  .hero-slide-badge {
    display: none; /* On desktop, full text is in the left hero column */
  }
  .hero-carousel-dots {
    display: none;
  }
}

/* Brand Filter Bar & Pills */
.brand-bar-section {
  padding: 0.5rem 0 0.15rem;
  background: #FAF8F2;
}

.brand-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.brand-bar-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #061A13;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-filters-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid #D8D2C4;
  color: #061A13;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-filters-link-btn:hover {
  border-color: #D4AF37;
  color: #A67C1E;
}

.brand-scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.brand-scroller::-webkit-scrollbar {
  display: none;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid #DDD6C7;
  color: #061A13;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.brand-pill img.brand-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-pill.active {
  background: #061A13;
  color: #FFFFFF;
  border-color: #D4AF37;
  box-shadow: 0 2px 10px rgba(6, 26, 19, 0.25);
}

.brand-pill .pill-count {
  background: #D4AF37;
  color: #04140E;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 2px;
}

/* 2-Column Responsive Car Card System (Exact Match to Reference Crop Image) */
.car-item-card {
  background: #FAF7F2;
  border: 1px solid #EAE3D5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(6, 26, 19, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.car-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(6, 26, 19, 0.1);
  border-color: #D4AF37;
}

.car-thumb-wrap {
  position: relative;
  width: 100%;
  height: 148px;
  background: #0B251D;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

@media (min-width: 640px) {
  .car-thumb-wrap {
    height: 185px;
  }
}

.car-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-item-card:hover .car-thumb-wrap img {
  transform: scale(1.05);
}

.card-badge-status {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.status-badge-avail {
  background: #ECC46A;
  color: #04140E;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.status-badge-sold {
  background: #DC2626;
  color: #FFFFFF;
}

.status-badge-res {
  background: #D97706;
  color: #FFFFFF;
}

.btn-card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2DCD2;
  color: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.btn-card-fav:hover,
.btn-card-fav.active {
  color: #EF4444;
  border-color: #FECACA;
  transform: scale(1.08);
}

.card-content-area {
  padding: 0.85rem 0.75rem 0.95rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 640px) {
  .card-content-area {
    padding: 1.1rem;
  }
}

.card-brand-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #061A13;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .card-brand-label {
    font-size: 0.82rem;
  }
}

.card-car-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E2E27;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .card-car-title {
    font-size: 0.94rem;
    white-space: normal;
    min-height: 2.3rem;
  }
}

/* Specs with separator pipe */
.card-specs-mini-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.45rem 0;
  border-top: 1px dashed #E2DCD0;
  border-bottom: 1px dashed #E2DCD0;
  margin-bottom: 0.65rem;
}

.specs-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #3A4E44;
  font-weight: 600;
}

.specs-sub-row i {
  color: #3A4E44;
  font-size: 0.75rem;
  margin-right: 2px;
}

.spec-pipe {
  color: #CBD5E1;
  font-size: 0.68rem;
  margin: 0 3px;
}

/* Price Row & Action Circle Arrow */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.card-price-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: #5B4012;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .card-price-text {
    font-size: 1.12rem;
    font-weight: 800;
  }
}

.btn-card-circle-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #061A13;
  color: #E5C378;
  border: 1.5px solid #D4AF37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-card-circle-arrow:hover {
  background: #D4AF37;
  color: #04140E;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .btn-card-view-details {
    display: none !important; /* Hide wide button on mobile to save height */
  }
}

@media (min-width: 768px) {
  .btn-card-circle-arrow {
    display: none; /* Hide circular arrow on desktop, show wide button */
  }
}

/* Floating WhatsApp & Call Buttons (Bottom Right) */
.floating-dial {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.fab-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.fab-whatsapp-btn {
  background: #25D366;
  color: #FFFFFF;
}

.fab-whatsapp-btn:hover {
  background: #20ba59;
  transform: scale(1.08);
}

.fab-call-btn {
  background: #061A13;
  color: #E5C378;
  border: 1.5px solid #D4AF37;
}

.fab-call-btn:hover {
  background: #D4AF37;
  color: #061A13;
  transform: scale(1.08);
}

@media (min-width: 992px) {
  .floating-dial {
    bottom: 25px;
    right: 25px;
  }
}

/* Mobile Bottom Bar (Matches Mobile Screenshot) */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #04140E;
  border-top: 1.5px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mob-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #8FA49B;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 12px;
  transition: all 0.2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.mob-nav-btn i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.mob-nav-btn:hover,
.mob-nav-btn.active {
  color: #E5C378;
}

.mob-nav-btn.active i {
  transform: translateY(-2px);
  color: #D4AF37;
}

.mob-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2.5px;
  background: #D4AF37;
  border-radius: 2px;
  box-shadow: 0 0 8px #D4AF37;
}

/* ==========================================================================
   SHOWROOM LOCATION & CONTACT SECTION (WARM LUXURY ALABASTER THEME)
   ========================================================================== */
.contact-block {
  padding: 3rem 0 3.5rem;
  background: #FAF8F2;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.25rem;
    align-items: stretch;
  }
}

.showroom-details-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 6px 22px rgba(6, 26, 19, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .showroom-details-box {
    padding: 1.25rem;
    border-radius: 14px;
  }
}

.contact-row-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  color: #A67C1E;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.map-frame-wrap {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 8px 25px rgba(6, 26, 19, 0.08), 0 0 16px rgba(212, 175, 55, 0.2);
  background: #061A13;
}

@media (min-width: 992px) {
  .map-frame-wrap {
    min-height: 380px;
    height: 100%;
  }
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* 3-Column Modal Grid */
.form-columns-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Details View Bottom Padding for Mobile Nav */
@media (max-width: 991px) {
  .product-page-view {
    padding-bottom: 95px !important;
  }
}
