*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', Helvetica, Arial, sans-serif; background: #f7f7f8; color: #222; }
button { font-family: inherit; cursor: pointer; }
select, input, textarea { font-family: inherit; }
img { display: block; }

/* CSS Variables */
:root {
  --red: #b91c1c;
  --red-hover: #991b1b;
  --red-light: #fef2f2;
  --red-bg: #fee2e2;
  --dark: #111;
  --text: #222;
  --text-secondary: #555;
  --text-muted: #888;
  --bg: #f7f7f8;
  --white: #fff;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --green: #16a34a;
  --green-light: #f0fdf4;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --blue: #2563eb;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.4s ease both; }

/* ─── TOP BAR ─── */
.top-bar { background: var(--red); height: 3px; }
.promo-bar { background: var(--dark); color: #fff; text-align: center; padding: 8px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.promo-bar span { color: #fbbf24; }

/* ─── NAV ─── */
nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 20px; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { display: flex; align-items: center; gap: 6px; cursor: pointer; text-decoration: none; }
.logo-road { font-weight: 900; font-size: 14px; color: var(--red); letter-spacing: 0.5px; }
.logo-ready { font-weight: 900; font-size: 14px; color: var(--dark); }
.logo-sep { color: #ccc; margin: 0 4px; font-size: 14px; }
.logo-sub { font-size: 14px; color: var(--text-secondary); letter-spacing: 4px; font-weight: 700; }
.nav-btns { display: flex; gap: 2px; }
.nav-btn { background: transparent; color: var(--text-secondary); border: none; padding: 8px 14px; font-weight: 800; font-size: 9px; letter-spacing: 1.5px; border-radius: 4px; transition: all 0.15s; }
.nav-btn:hover { background: #f5f5f5; color: var(--dark); }
.nav-btn.active { background: var(--red); color: #fff; }
.nav-cart-count { background: var(--red); color: #fff; font-size: 9px; font-weight: 900; padding: 1px 5px; border-radius: 8px; margin-left: 4px; }

/* ─── HERO ─── */
.hero { position: relative; overflow: hidden; background: #111; padding: 60px 24px 70px; border-bottom: 1px solid var(--border); }
.hero-with-bg { min-height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('hero-bg.png') center center / cover no-repeat;
}
/* Dark overlay so text stays readable on any part of the image */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.6) 100%
  );
}
.hero-content { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-h1 { font-size: 42px; font-weight: 900; color: #fff; margin: 0 0 12px; line-height: 1.05; letter-spacing: -1.5px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-h1-accent { color: #fff; }
.hero-p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

/* Vehicle Search Box */
.vehicle-search-box { background: rgba(255,255,255,0.97); border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; padding: 20px 24px; max-width: 600px; margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.vs-title { font-size: 12px; font-weight: 800; color: var(--dark); letter-spacing: 1px; margin-bottom: 12px; }
.vs-row { display: flex; gap: 8px; }
.vs-select { flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--text); background: var(--bg); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.vs-select:focus { border-color: var(--red); outline: none; }
.vs-btn { background: var(--red); color: #fff; border: none; padding: 10px 24px; font-weight: 800; font-size: 12px; letter-spacing: 1px; border-radius: 6px; white-space: nowrap; }
.vs-btn:hover { background: var(--red-hover); }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; }
.stats-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 18px; font-weight: 900; color: var(--dark); }
.stat-label { font-size: 9px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.5px; margin-top: 2px; }

/* ─── FEATURED / DEAL CARDS ─── */
.featured-section { max-width: 1300px; margin: 0 auto; padding: 40px 20px 20px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-title { font-size: 18px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }
.section-link { color: var(--red); font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; }
.section-link:hover { text-decoration: underline; }
.make-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; margin-bottom: 32px; }
.make-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 14px 12px; text-align: center; cursor: pointer; transition: all 0.2s; }
.make-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.make-name { font-weight: 800; font-size: 13px; color: var(--dark); }
.make-count { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ─── CATALOG ─── */
.catalog { max-width: 1300px; margin: 0 auto; padding: 20px; }
.catalog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.catalog-title { font-size: 18px; font-weight: 900; color: var(--dark); }
.catalog-count { color: var(--text-muted); font-size: 12px; }
.filter-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.search-input { flex: 1 1 300px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--text); background: var(--white); }
.search-input:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(185,28,28,0.08); }
.filter-btn-toggle { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 10px 16px; font-weight: 700; font-size: 11px; letter-spacing: 0.5px; color: var(--text-secondary); }
.filter-btn-toggle:hover { border-color: var(--red); color: var(--red); }
.filter-btn-toggle.open { background: var(--red-light); border-color: var(--red); color: var(--red); }

/* Filter Panel */
.filter-panel { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 16px; margin-bottom: 12px; display: none; animation: slideDown 0.2s ease; }
.filter-panel.show { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-group { flex: 1 1 140px; min-width: 120px; }
.filter-label { font-size: 9px; font-weight: 800; color: var(--text-muted); letter-spacing: 1.5px; display: block; margin-bottom: 4px; }
.filter-select { width: 100%; padding: 8px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; color: var(--text); background: var(--bg); }
.filter-select:focus { border-color: var(--red); outline: none; }
.filter-clear { background: none; border: 1px solid var(--border); border-radius: 4px; padding: 8px 14px; font-size: 11px; font-weight: 700; color: var(--text-muted); align-self: flex-end; }
.filter-clear:hover { border-color: var(--red); color: var(--red); }

/* Stock toggle */
.stock-toggle { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.stock-toggle label { font-size: 12px; color: var(--text-secondary); font-weight: 600; cursor: pointer; }
.stock-toggle input[type=checkbox] { accent-color: var(--red); width: 16px; height: 16px; cursor: pointer; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: all 0.2s; display: flex; flex-direction: column; position: relative; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: #ddd; }
.product-card.in-cart { border-color: var(--red); }
.product-card.in-cart::after { content: '✓ IN CART'; position: absolute; top: 8px; right: 8px; background: var(--red); color: #fff; font-size: 8px; font-weight: 800; padding: 3px 8px; border-radius: 3px; z-index: 5; letter-spacing: 0.5px; }

/* Image area */
.card-img-wrap { position: relative; height: 220px; background: #fafafa; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border-light); }
.card-img { max-width: 90%; max-height: 90%; object-fit: contain; }
.card-img-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-secondary); cursor: pointer; opacity: 0; transition: opacity 0.2s; }
.card-img-wrap:hover .card-img-nav { opacity: 1; }
.card-img-nav.prev { left: 8px; }
.card-img-nav.next { right: 8px; }
.card-img-dots { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; }
.card-img-dot { width: 5px; height: 5px; border-radius: 50%; background: #ccc; }
.card-img-dot.active { background: var(--red); }

/* Condition Badge */
.cond-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 3px; letter-spacing: 0.5px; z-index: 5; }
.cond-open-box { background: #dbeafe; color: #1d4ed8; }
.cond-new { background: #dcfce7; color: #15803d; }
.cond-reconditioned { background: #fef3c7; color: #b45309; }
.cond-take-off { background: #f3e8ff; color: #7c3aed; }
.cond-nto { background: #e0e7ff; color: #4338ca; }

/* Stock Badge */
.stock-badge { font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.5px; }
.stock-in { background: var(--green-light); color: var(--green); }
.stock-low { background: var(--orange-light); color: var(--orange); }
.stock-out { background: #f5f5f5; color: #aaa; }

/* Card Info */
.card-info { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.card-sku { font-size: 10px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 2px; }
.card-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 8px; min-height: 34px; }
.card-specs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.card-spec { font-size: 10px; color: var(--text-secondary); background: var(--bg); padding: 2px 8px; border-radius: 3px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--border-light); }
.card-stock { display: flex; align-items: center; gap: 6px; }
.card-qty-note { font-size: 10px; color: var(--orange); font-weight: 700; }
.card-btn { background: var(--red); color: #fff; border: none; padding: 8px 14px; font-weight: 800; font-size: 10px; letter-spacing: 0.5px; border-radius: 4px; }
.card-btn:hover { background: var(--red-hover); }
.card-btn.in-cart { background: #333; }

/* ─── CARD PRICING ─── */
.card-pricing { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2px; }
.card-price { font-size: 18px; font-weight: 900; color: var(--red); }
.card-price-label { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.card-biz-pricing { font-size: 10px; color: var(--blue); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.2px; }

/* ─── MODAL PRICING ─── */
.modal-pricing { margin-bottom: 16px; padding: 14px 16px; background: var(--red-light); border: 1px solid var(--red-bg); border-radius: 6px; }
.modal-price { font-size: 24px; font-weight: 900; color: var(--red); }
.modal-price-label { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 1px; }
.modal-biz-pricing { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 6px; }

/* No Img Placeholder */
.no-img-placeholder { width: 120px; height: 120px; }
.no-img-placeholder svg { width: 100%; height: 100%; }

/* ─── VEHICLE LOOKUP ─── */
.vehicle-lookup { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.vl-title { font-size: 24px; font-weight: 900; color: var(--dark); text-align: center; margin-bottom: 6px; }
.vl-subtitle { font-size: 13px; color: var(--text-secondary); text-align: center; margin-bottom: 28px; }
.vl-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.vl-form-row { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.vl-form-group { flex: 1 1 200px; }
.vl-form-label { font-size: 10px; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; display: block; margin-bottom: 4px; }
.vl-form-select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--text); background: var(--white); }
.vl-form-select:focus { border-color: var(--red); outline: none; }
.vl-results-count { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }

/* ─── ABOUT ─── */
.about { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.about-hero { text-align: center; margin-bottom: 40px; }
.about-logo { width: 100px; height: auto; margin: 0 auto 20px; border-radius: 12px; }
.about-h1 { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.about-p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; max-width: 600px; margin: 0 auto 24px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.about-stat { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 16px; text-align: center; }
.about-stat-num { font-size: 22px; font-weight: 900; color: var(--red); }
.about-stat-label { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-top: 2px; }
.about-promise { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.promise-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.promise-title { font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.promise-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.about-cta { text-align: center; margin-top: 32px; }
.about-cta a { display: inline-block; background: var(--red); color: #fff; padding: 14px 36px; font-weight: 800; font-size: 12px; letter-spacing: 1px; border-radius: 6px; text-decoration: none; }
.about-cta a:hover { background: var(--red-hover); }

/* ─── CART / INQUIRY ─── */
.cart-page { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.cart-title { font-size: 24px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.cart-subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty-text { font-size: 14px; margin-bottom: 16px; }
.cart-items { margin-bottom: 24px; }
.cart-item { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 14px; display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.cart-item-img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; border-radius: 4px; background: #fafafa; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.cart-item-sku { font-size: 10px; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 6px; }
.cart-qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 4px; background: var(--white); font-size: 14px; display: flex; align-items: center; justify-content: center; }
.cart-qty-btn:hover { border-color: var(--red); color: var(--red); }
.cart-qty-val { font-size: 14px; font-weight: 700; width: 30px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 18px; padding: 4px 8px; }
.cart-item-remove:hover { color: var(--red); }

/* Inquiry Form */
.inquiry-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.inquiry-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.form-group { flex: 1 1 200px; }
.form-label { font-size: 10px; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; display: block; margin-bottom: 4px; }
.form-label .req { color: var(--red); }
.form-input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; color: var(--text); }
.form-input:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(185,28,28,0.08); }
textarea.form-input { min-height: 80px; resize: vertical; }
.inquiry-note { font-size: 11px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.inquiry-methods { display: flex; gap: 12px; flex-wrap: wrap; }
.inquiry-submit { background: var(--red); color: #fff; border: none; padding: 12px 28px; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; border-radius: 6px; }
.inquiry-submit:hover { background: var(--red-hover); }
.inquiry-submit:disabled { background: #9ca3af; cursor: not-allowed; }
.inquiry-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.inquiry-phone strong { color: var(--dark); font-size: 15px; }
.inquiry-feedback { margin-top: 12px; padding: 10px 12px; border-radius: 6px; font-size: 12px; line-height: 1.5; border: 1px solid transparent; }
.inquiry-feedback-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.inquiry-feedback-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }

/* ─── PRODUCT DETAIL MODAL ─── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal { background: var(--white); border-radius: 8px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.modal-close { position: sticky; top: 0; text-align: right; padding: 12px 16px 0; z-index: 5; }
.modal-close-btn { background: none; border: 1px solid var(--border); border-radius: 50%; width: 32px; height: 32px; font-size: 16px; color: var(--text-secondary); }
.modal-close-btn:hover { border-color: var(--red); color: var(--red); }
.modal-img-wrap { height: 300px; display: flex; align-items: center; justify-content: center; background: #fafafa; margin: 0 16px; border-radius: 6px; position: relative; }
.modal-img { max-width: 85%; max-height: 85%; object-fit: contain; }
.modal-img-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.95); border: 1px solid var(--border); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-secondary); cursor: pointer; }
.modal-img-nav:hover { border-color: var(--red); color: var(--red); }
.modal-img-nav.prev { left: 12px; }
.modal-img-nav.next { right: 12px; }
.modal-img-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.modal-img-dot { width: 7px; height: 7px; border-radius: 50%; background: #ddd; cursor: pointer; }
.modal-img-dot.active { background: var(--red); }
.modal-body { padding: 20px; }
.modal-badge-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.modal-sku { font-size: 11px; color: var(--text-muted); }
.modal-name { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.modal-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
.modal-spec { background: var(--bg); padding: 10px 12px; border-radius: 4px; }
.modal-spec-label { font-size: 9px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.modal-spec-val { font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-add-btn { background: var(--red); color: #fff; border: none; padding: 12px 28px; font-weight: 800; font-size: 13px; border-radius: 6px; flex: 1; }
.modal-add-btn:hover { background: var(--red-hover); }
.modal-add-btn.in-cart { background: #333; }
.modal-call-btn { background: var(--white); border: 1px solid var(--border); color: var(--text); padding: 12px 20px; font-weight: 700; font-size: 13px; border-radius: 6px; }
.modal-call-btn:hover { border-color: var(--red); color: var(--red); }

/* ─── FOOTER ─── */
footer { background: var(--dark); color: #aaa; padding: 32px 24px; margin-top: 40px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-road { font-weight: 900; font-size: 13px; color: var(--red); }
.footer-ready { font-weight: 900; font-size: 13px; color: #fff; }
.footer-sep { color: #444; margin: 0 4px; font-size: 13px; }
.footer-sub { font-size: 13px; color: #888; letter-spacing: 3px; font-weight: 700; }
.footer-contact { text-align: right; }
.footer-phone { font-size: 14px; font-weight: 700; color: #fff; }
.footer-email { font-size: 12px; color: #888; }
.footer-legal { font-size: 10px; color: #555; text-align: center; width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid #222; }
.footer-links { display: flex; gap: 16px; justify-content: center; margin-top: 8px; }
.footer-link { color: #888; font-size: 11px; text-decoration: none; }
.footer-link:hover { color: var(--red); }

/* ─── EMPTY STATE ─── */
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-results-icon { font-size: 48px; margin-bottom: 8px; opacity: 0.3; }
.no-results-text { font-size: 14px; }

/* ─── HERO BG RESPONSIVE ─── */
/* On wide screens, center the image to show the full road + car composition */
/* On narrower screens, shift focus toward the road/car (upper-left area) */
@media (max-width: 1200px) {
  .hero-bg-img { background-position: 35% center; }
}
@media (max-width: 900px) {
  .hero-bg-img { background-position: 30% 40%; }
}
@media (max-width: 600px) {
  .hero-bg-img { background-position: 25% 35%; }
  .hero-with-bg { min-height: 340px; }
}

/* ─── IMAGE REFERENCE NOTE ─── */
.card-img-ref { position: absolute; bottom: 2px; right: 6px; font-size: 8px; color: #bbb; letter-spacing: 0.3px; font-style: italic; z-index: 5; pointer-events: none; }
.modal-img-ref { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-size: 10px; color: #999; font-style: italic; background: rgba(255,255,255,0.85); padding: 2px 10px; border-radius: 3px; white-space: nowrap; z-index: 5; }

/* ─── OPEN BOX DISCLAIMER ─── */
.open-box-disclaimer { background: #fffbeb; border: 1px solid #fde68a; border-radius: 6px; padding: 14px 16px; margin-bottom: 20px; }
.open-box-disclaimer-title { font-size: 12px; font-weight: 800; color: #92400e; margin-bottom: 6px; letter-spacing: 0.3px; }
.open-box-disclaimer-text { font-size: 11px; color: #78350f; line-height: 1.7; }

/* ─── FOOTER DISCLAIMER ─── */
.footer-disclaimer { font-size: 9px; color: #555; line-height: 1.6; max-width: 700px; margin: 10px auto 4px; opacity: 0.8; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 40px 16px 50px; }
  .hero-h1 { font-size: 28px; }
  .vs-row { flex-direction: column; }
  .stats-inner { gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-promise { grid-template-columns: 1fr; }
  .modal { margin: 10px; max-height: 95vh; }
  .modal-specs { grid-template-columns: 1fr; }
  .make-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-sub { display: none; }
  .nav-btn { padding: 6px 8px; font-size: 8px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 24px; }
  .make-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-road, .logo-ready { font-size: 12px; }
  .nav-btn { padding: 5px 6px; font-size: 7px; letter-spacing: 1px; }
  .stats-inner { gap: 12px; }
  .stat-num { font-size: 15px; }
}
