/* ============================================================
   PRIMEDRIVE AUTOS — Global Design System
   Brand: Black / White / Gold | Luxury Used Cars USA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-border:#2A2A2A;
  --gold:        #C9A84C;
  --gold-light:  #E2C06E;
  --gold-dim:    #8A6E2F;
  --white:       #FFFFFF;
  --white-soft:  #F5F5F5;
  --white-dim:   #AAAAAA;
  --text-muted:  #777777;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --container:   1280px;
  --radius:      8px;
  --radius-lg:   16px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.25s;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { color: var(--white-dim); line-height: 1.7; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   PROMO BAR
   ============================================================ */
#promo-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 48px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1000;
  background: linear-gradient(90deg, #B8943E, #E2C06E, #C9A84C, #E2C06E, #B8943E);
  background-size: 300% 100%;
  animation: promoShimmer 6s ease infinite;
}
@keyframes promoShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#promo-bar .promo-code {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  font-weight: 700;
  margin: 0 4px;
  letter-spacing: 0.1em;
}
#promo-bar .promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
#promo-bar .promo-close:hover { opacity: 1; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--black-border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .prime {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text .drive {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo-text .autos {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  transition: color var(--duration);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--duration), transform var(--duration);
}
.cart-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.cart-count {
  background: var(--black);
  color: var(--gold);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ============================================================
   GOLD DIVIDER / ACCENT
   ============================================================ */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-line.center { margin: 16px auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CAR CARD
   ============================================================ */
.car-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), border-color var(--duration), box-shadow var(--duration);
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.car-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.car-card:hover .car-card-img img { transform: scale(1.04); }
.car-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.car-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.car-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.car-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.car-card-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.car-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}
.car-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--black-border);
}
.car-card-actions .btn { width: 100%; justify-content: center; }

/* ============================================================
   CARS GRID
   ============================================================ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-control {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color var(--duration);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-full { grid-column: 1 / -1; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-dim);
}
.trust-item .icon { color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 520px; margin: 0 auto; }

/* ============================================================
   FINANCE CALCULATOR
   ============================================================ */
.calc-wrapper {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.calc-result {
  background: var(--black-soft);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.calc-result .monthly {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}
.calc-result .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.range-input { width: 100%; accent-color: var(--gold); height: 4px; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 900;
  background: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
#chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.chat-toggle {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  margin-left: auto;
}
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }
.chat-bubble-label {
  position: absolute;
  right: 66px;
  bottom: 12px;
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px 20px 0 20px;
  font-size: 0.78rem;
  white-space: nowrap;
  pointer-events: none;
  animation: labelPulse 3s ease infinite;
}
@keyframes labelPulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
.chat-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  display: none;
}
.chat-panel.open { display: block; animation: chatSlideIn 0.3s var(--ease); }
@keyframes chatSlideIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
.chat-header {
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header-avatar {
  width: 36px;
  height: 36px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.chat-header-info .name { font-weight: 700; font-size: 0.9rem; }
.chat-header-info .status { font-size: 0.72rem; opacity: 0.8; }
.chat-close { margin-left: auto; background: none; border: none; color: var(--black); font-size: 1.1rem; cursor: pointer; opacity: 0.7; }
.chat-body { padding: 20px; min-height: 200px; }
.chat-message {
  background: var(--black-soft);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--white-dim);
  margin-bottom: 16px;
}
.chat-step { display: none; }
.chat-step.active { display: block; }
.chat-input-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.chat-input {
  flex: 1;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 24px;
  font-size: 0.85rem;
}
.chat-input:focus { outline: none; border-color: var(--gold); }
.chat-send {
  background: var(--gold);
  color: var(--black);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--gold-light); }
.chat-cars-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 20px 16px;
  scrollbar-width: none;
}
.chat-cars-strip::-webkit-scrollbar { display: none; }
.chat-car-thumb {
  flex-shrink: 0;
  width: 100px;
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.chat-car-thumb:hover { border-color: var(--gold); }
.chat-car-thumb img { width: 100%; height: 60px; object-fit: cover; }
.chat-car-thumb .thumb-label { font-size: 0.65rem; padding: 4px 6px; color: var(--white-dim); }
.chat-success { text-align: center; padding: 24px 20px; }
.chat-success .check { font-size: 2rem; margin-bottom: 10px; }
.chat-success p { font-size: 0.85rem; color: var(--white-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; margin-top: 12px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--black-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }
.built-by { font-size: 0.75rem; color: var(--text-muted); }
.built-by span { color: var(--gold); }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--black-border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  background: var(--black-card);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 320px;
}
#toast.show { display: flex; animation: toastIn 0.3s var(--ease); }
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
#toast .toast-icon { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Car product page: stack at tablet */
  .car-detail-layout { grid-template-columns: 1fr !important; }
  .car-sticky-panel { position: static !important; top: auto !important; }
}

/* ---- Mobile (768px and below) ---- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 998;
  }
  .nav-links.mobile-open a { font-size: 1.4rem; }
  .mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
  }
  .header-inner { height: 64px; }

  /* Hero */
  .hero-section { min-height: 80vh !important; }
  .hero-stats { gap: 24px !important; margin-top: 36px !important; }

  /* Trust bar */
  .trust-bar-inner { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 24px; }

  /* Grids */
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }

  /* Why cards, testimonials, values - all auto-fit grids behave fine but min clamp */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Finance calc */
  .calc-wrapper { padding: 20px; }
  .calc-result .monthly { font-size: 2rem; }

  /* Stock page filter bar */
  .filter-bar-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .filter-bar-grid .filter-search { grid-column: 1 / -1; }
  .filter-bar-grid .filter-reset { grid-column: 1 / -1; }
  .filter-price-row { flex-wrap: wrap; gap: 10px !important; }
  .filter-price-row input { width: 100% !important; flex: 1; min-width: 120px; }

  /* Checkout layout */
  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .checkout-summary-col { position: static !important; top: auto !important; }

  /* Car product page */
  .car-detail-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .car-sticky-panel { position: static !important; top: auto !important; }
  .car-thumb-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 6px !important; }
  .specs-grid { grid-template-columns: 1fr !important; }

  /* About page */
  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* Contact page */
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Floating buttons */
  #whatsapp-float { bottom: 84px; left: 16px; width: 46px; height: 46px; }
  #chat-widget { bottom: 16px; right: 16px; }
  .chat-toggle { width: 48px; height: 48px; font-size: 1.2rem; }
  .chat-panel { width: calc(100vw - 32px); max-width: 320px; right: 0; }
  .chat-bubble-label { display: none; }

  /* Page hero inner pages */
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

/* ---- Small mobile (480px and below) ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  #promo-bar { font-size: 0.72rem; padding: 8px 36px; }
  .btn-lg { padding: 14px 22px; font-size: 0.88rem; }
  .btn { padding: 12px 20px; }

  /* Hero tighter on small phones */
  .hero-section { min-height: 70vh !important; }

  /* Car thumbnail strip on small phones: 2x2 grid */
  .car-thumb-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* About stats: 2 col on small */
  .about-stats-grid { grid-template-columns: 1fr 1fr !important; }

  /* Filter bar single column */
  .filter-bar-grid { grid-template-columns: 1fr !important; }

  /* Chat panel full width on small */
  .chat-panel { width: calc(100vw - 24px); right: -4px; }

  /* Footer CTA banner padding */
  .cta-banner { padding: 36px 20px !important; }

  /* Promo bar text: hide "LIMITED OFFER:" prefix on tiny screens */
  .promo-prefix { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
