/* ═══════════════════════════════════════════════════════════════════
   Donegan & Curtis Autos — Storefront
   Black header, clean professional parts catalogue
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
  --black:     #0d0d0d;
  --black2:    #1a1a1a;
  --black3:    #242424;
  --border-dk: #2e2e2e;
  --blue:      #0066cc;
  --blue-dk:   #0052a3;
  --blue-lt:   #3d9bff;
  --blue-bg:   rgba(0,102,204,0.08);
  --red:       #cc2200;
  --red-dk:    #a31b00;
  --green:     #1a7a35;
  --amber:     #c87000;
  --white:     #ffffff;
  --off-white: #f7f7f7;
  --grey1:     #f0f0f0;
  --grey2:     #e0e0e0;
  --grey3:     #b0b0b0;
  --grey4:     #707070;
  --text:      #1a1a1a;
  --r:         4px;
  --r-md:      6px;
  --r-lg:      8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.10);
  --shadow:    0 2px 10px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--off-white); color: var(--text); font-family: 'Inter', system-ui, sans-serif; font-size: 14px; line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.topbar { background: #111; color: #888; font-size: 11px; padding: 5px 0; border-bottom: 1px solid #222; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 18px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-left a, .topbar-right a { color: #888; transition: color .15s; }
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }

/* ── HEADER — black background, logo full size ── */
.site-header { background: var(--black); border-bottom: 3px solid var(--blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.logo { flex-shrink: 0; display: flex; align-items: center; background: var(--black); border-radius: 4px; padding: 2px 4px; }
.logo img { height: 44px; width: auto; display: block; }
.footer-logo img { height: 36px; width: auto; }
.header-search-bar { flex: 1; display: flex; max-width: 560px; border-radius: var(--r); overflow: hidden; border: 2px solid #333; transition: border-color .15s; }
.header-search-bar:focus-within { border-color: var(--blue); }
.header-search-bar input { flex: 1; background: #1e1e1e; border: none; padding: 10px 16px; font-size: 14px; color: #fff; outline: none; }
.header-search-bar input::placeholder { color: #666; }
.header-search-bar button { background: var(--blue); color: #fff; border: none; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: .04em; transition: background .15s; white-space: nowrap; }
.header-search-bar button:hover { background: var(--blue-dk); }
.header-spacer { flex: 1; }
.header-phone { text-align: right; }
.header-phone-num { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: #fff; letter-spacing: .01em; line-height: 1; }
.header-phone-sub { font-size: 11px; color: #888; margin-top: 2px; }

/* ── NAV BAR ── */
.site-nav-bar { background: var(--black2); border-bottom: 1px solid var(--border-dk); }
.site-nav { display: flex; align-items: center; }
.site-nav a { color: #aaa; font-size: 12px; font-weight: 600; padding: 11px 16px; display: block; border-right: 1px solid var(--border-dk); transition: background .15s, color .15s; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.site-nav a:first-child { border-left: 1px solid var(--border-dk); }
.site-nav a:hover { background: var(--black3); color: #fff; }
.site-nav a.active { background: var(--blue); color: #fff; }

/* ── VEHICLE FINDER ── */
.vehicle-finder { background: var(--black3); border-bottom: 1px solid var(--border-dk); padding: 12px 0; }
.vf-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vf-label { font-size: 12px; font-weight: 700; color: #ccc; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.vf-sep { width: 1px; height: 24px; background: var(--border-dk); }
.vf-select { background: #1e1e1e; border: 1px solid #3a3a3a; color: #ddd; border-radius: var(--r); padding: 8px 12px; font-size: 13px; outline: none; cursor: pointer; min-width: 160px; transition: border-color .15s; }
.vf-select:focus { border-color: var(--blue); }
.vf-select:disabled { opacity: .4; cursor: not-allowed; }
.vf-select option { background: #1e1e1e; }
.vf-btn { background: var(--red); color: #fff; border: none; border-radius: var(--r); padding: 9px 24px; font-size: 13px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: .05em; transition: background .15s; white-space: nowrap; }
.vf-btn:hover { background: var(--red-dk); }

/* ── HERO ── */
.hero-banner { background: var(--black); padding: 52px 0 48px; border-bottom: 1px solid var(--border-dk); position: relative; overflow: hidden; }
.hero-banner::before { content: ''; position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(0,102,204,0.08) 100%); pointer-events: none; }
.hero-banner::after { content: ''; position: absolute; right: 10%; top: 50%; transform: translateY(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,102,204,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-tag { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 12px; border-radius: 2px; margin-bottom: 18px; }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(38px, 5vw, 68px); line-height: .92; color: #fff; margin-bottom: 16px; }
.hero-title em { font-style: normal; color: var(--blue-lt); }
.hero-sub { font-size: 15px; color: #999; margin-bottom: 28px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--blue); color: #fff; border: none; border-radius: var(--r); padding: 12px 28px; font-size: 14px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: .05em; transition: background .15s; }
.btn-hero-primary:hover { background: var(--blue-dk); }
.btn-hero-outline { background: transparent; color: #ccc; border: 1px solid #444; border-radius: var(--r); padding: 12px 28px; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .15s, color .15s; }
.btn-hero-outline:hover { border-color: #888; color: #fff; }
.hero-stats { display: flex; gap: 36px; margin-top: 40px; padding-top: 32px; border-top: 1px solid #222; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 11px; color: #666; margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }

/* ── TRUST BAR ── */
.trust-bar { background: #fff; border-bottom: 1px solid var(--grey2); padding: 16px 0; box-shadow: var(--shadow-sm); }
.trust-items { display: flex; align-items: center; justify-content: space-around; gap: 12px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 36px; height: 36px; background: var(--blue-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 17px; height: 17px; color: var(--blue); }
.trust-label { font-size: 13px; font-weight: 700; color: var(--text); }
.trust-sub { font-size: 11px; color: var(--grey4); }

/* ── MAKES STRIP ── */
.makes-strip { background: #fff; border-top: 1px solid var(--grey2); border-bottom: 1px solid var(--grey2); padding: 14px 0; overflow: hidden; }
.makes-scroll { display: flex; gap: 10px; animation: scroll-makes 28s linear infinite; width: max-content; }
.makes-scroll:hover { animation-play-state: paused; }
@keyframes scroll-makes { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.make-pill { display: flex; align-items: center; gap: 7px; background: #f5f5f5; border: 1px solid var(--grey2); border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text); white-space: nowrap; cursor: pointer; transition: border-color .15s, color .15s; }
.make-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.make-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 36px 0; }
.section-white { background: #fff; }
.section-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--blue); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: .02em; color: var(--text); }
.section-title span { color: var(--blue); }
.section-link { font-size: 13px; color: var(--blue); font-weight: 600; }
.section-link:hover { text-decoration: underline; }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.cat-card { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); padding: 18px 12px; text-align: center; cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
.cat-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { width: 50px; height: 50px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; background: var(--blue-bg); border-radius: 50%; }
.cat-icon svg { width: 26px; height: 26px; color: var(--blue); }
.cat-name { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .04em; }
.cat-count { font-size: 11px; color: var(--grey4); margin-top: 3px; }

/* ── PART CARDS ── */
.parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.part-card { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s; cursor: pointer; }
.part-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.part-card-img { width: 100%; height: 180px; background: var(--grey1); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.part-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.part-card:hover .part-card-img img { transform: scale(1.04); }
.part-card-img svg { width: 72px; height: 72px; color: var(--blue); opacity: .18; }
.part-card-badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.part-card-loc { position: absolute; bottom: 8px; right: 8px; }
.part-card-body { padding: 13px 14px; flex: 1; display: flex; flex-direction: column; }
.part-card-make-row { margin-bottom: 6px; }
.part-card-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 4px; flex: 1; }
.part-card-fitment { font-size: 11px; color: var(--grey4); margin-bottom: 10px; }
.part-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--grey2); }
.part-card-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; color: var(--red); line-height: 1; }
.enquire-link { display: inline-flex; align-items: center; gap: 5px; background: var(--blue); color: #fff; border-radius: var(--r); padding: 7px 12px; font-size: 11px; font-weight: 700; text-decoration: none; transition: background .15s; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.enquire-link:hover { background: var(--blue-dk); color: #fff; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 7px; border-radius: 2px; line-height: 1.5; white-space: nowrap; }
.badge-new               { background: var(--blue);  color: #fff; }
.badge-used              { background: var(--green);  color: #fff; }
.badge-grade-excellent   { background: #1a7a35;       color: #fff; }
.badge-grade-good        { background: var(--blue);   color: #fff; }
.badge-grade-fair        { background: var(--amber);  color: #fff; }
.badge-grade-poor        { background: var(--red);    color: #fff; }
.badge-location          { background: rgba(0,0,0,0.55); color: #ddd; font-size: 9px; }
.badge-make { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 2px; letter-spacing: .03em; }

/* ── CONDITION SPLIT ── */
.condition-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cond-panel { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); padding: 32px; border-top: 4px solid; }
.cond-panel.new-panel { border-top-color: var(--blue); }
.cond-panel.used-panel { border-top-color: var(--green); }
.cond-panel-icon { width: 46px; height: 46px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.new-panel .cond-panel-icon { background: rgba(0,102,204,0.1); }
.used-panel .cond-panel-icon { background: rgba(26,122,53,0.1); }
.new-panel .cond-panel-icon svg { color: var(--blue); }
.used-panel .cond-panel-icon svg { color: var(--green); }
.cond-panel h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; margin-bottom: 8px; color: var(--text); text-transform: uppercase; }
.cond-panel p { font-size: 13px; color: var(--grey4); line-height: 1.6; margin-bottom: 20px; }
.cond-btn { display: inline-flex; align-items: center; gap: 6px; border-radius: var(--r); padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; text-transform: uppercase; letter-spacing: .04em; transition: background .15s; }
.cond-btn.new  { background: var(--blue);  color: #fff; }
.cond-btn.new:hover  { background: var(--blue-dk); }
.cond-btn.used { background: var(--green); color: #fff; }
.cond-btn.used:hover { background: #155c29; }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.location-card { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); padding: 28px; border-left: 4px solid var(--blue); box-shadow: var(--shadow-sm); }
.location-tag { display: inline-block; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 2px; margin-bottom: 12px; }
.location-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; margin-bottom: 6px; color: var(--text); text-transform: uppercase; }
.location-addr { font-size: 13px; color: var(--grey4); line-height: 1.7; margin-bottom: 14px; }
.location-detail-row { display: flex; gap: 8px; font-size: 12px; margin-bottom: 4px; }
.location-detail-label { color: var(--grey4); width: 60px; flex-shrink: 0; font-weight: 600; }
.location-detail-val { color: var(--text); font-weight: 500; }
.location-stock { display: flex; gap: 10px; margin-top: 16px; }
.loc-stat { background: var(--grey1); border-radius: var(--r); padding: 10px 16px; text-align: center; border: 1px solid var(--grey2); }
.loc-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; color: var(--blue); line-height: 1; }
.loc-stat-label { font-size: 10px; color: var(--grey4); text-transform: uppercase; font-weight: 600; margin-top: 2px; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: #888; padding: 48px 0 0; margin-top: 48px; border-top: 3px solid var(--blue); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 36px; width: auto; }
.footer-brand-text { font-size: 13px; color: #555; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #ddd; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: #666; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e1e1e; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: #444; }

/* ── SEARCH PAGE ── */
.search-layout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.sidebar { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); overflow: hidden; position: sticky; top: 84px; box-shadow: var(--shadow-sm); }
.sidebar-hd { background: var(--black); color: #fff; padding: 12px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-bottom: 2px solid var(--blue); }
.sidebar-section { padding: 14px 16px; border-bottom: 1px solid var(--grey2); }
.sidebar-section:last-child { border: none; }
.sidebar-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--grey4); margin-bottom: 10px; }
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-check { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 2px 0; }
.filter-check input { width: 14px; height: 14px; accent-color: var(--blue); cursor: pointer; }
.filter-check span { font-size: 13px; color: var(--text); }
.filter-check:hover span { color: var(--blue); }
.filter-select { width: 100%; background: var(--grey1); border: 1px solid var(--grey2); color: var(--text); border-radius: var(--r); padding: 7px 10px; font-size: 13px; outline: none; cursor: pointer; }
.filter-select:focus { border-color: var(--blue); }
.price-row { display: flex; gap: 6px; align-items: center; }
.price-input { flex: 1; background: var(--grey1); border: 1px solid var(--grey2); color: var(--text); border-radius: var(--r); padding: 7px 8px; font-size: 12px; outline: none; width: 0; }
.price-input:focus { border-color: var(--blue); }
.apply-btn { width: 100%; background: var(--blue); color: #fff; border: none; border-radius: var(--r); padding: 9px; font-size: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; text-transform: uppercase; letter-spacing: .04em; }
.apply-btn:hover { background: var(--blue-dk); }
.clear-btn { width: 100%; background: none; color: var(--grey4); border: 1px solid var(--grey2); border-radius: var(--r); padding: 7px; font-size: 12px; cursor: pointer; margin-top: 6px; }
.clear-btn:hover { color: var(--text); border-color: var(--grey4); }
.results-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.results-count { font-size: 13px; color: var(--grey4); }
.results-count strong { color: var(--text); font-weight: 700; }
.sort-select { background: #fff; border: 1px solid var(--grey2); color: var(--text); border-radius: var(--r); padding: 7px 12px; font-size: 13px; outline: none; cursor: pointer; }
.search-bar-wrap { display: flex; margin-bottom: 14px; border-radius: var(--r); overflow: hidden; border: 2px solid var(--blue); }
.search-bar-wrap input { flex: 1; border: none; padding: 10px 14px; font-size: 14px; color: var(--text); outline: none; background: #fff; }
.search-bar-wrap button { background: var(--blue); border: none; color: #fff; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: .04em; transition: background .15s; }
.search-bar-wrap button:hover { background: var(--blue-dk); }
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.active-filter { display: flex; align-items: center; gap: 4px; background: #e8f0fb; border: 1px solid #b3ccf5; border-radius: 100px; padding: 3px 10px; font-size: 11px; color: var(--blue); font-weight: 600; }
.active-filter button { background: none; border: none; color: var(--blue); cursor: pointer; font-size: 14px; line-height: 1; padding: 0 0 0 2px; }
.no-results { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); grid-column: 1/-1; }
.no-results h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.no-results p { color: var(--grey4); }
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.page-btn { background: #fff; border: 1px solid var(--grey2); color: var(--text); border-radius: var(--r); padding: 7px 13px; font-size: 13px; cursor: pointer; transition: .15s; min-width: 36px; text-align: center; font-weight: 600; }
.page-btn:hover, .page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-btn:disabled { opacity: .4; cursor: default; }

/* ── PRODUCT PAGE ── */
.product-layout { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.product-img-panel { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.product-main-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--grey1); position: relative; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-main-img svg { width: 120px; height: 120px; color: var(--blue); opacity: .15; }
.product-img-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.product-tabs-wrap { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); overflow: hidden; margin-top: 16px; box-shadow: var(--shadow-sm); }
.product-tabs { display: flex; border-bottom: 1px solid var(--grey2); }
.tab-btn { background: var(--grey1); border: none; color: var(--grey4); padding: 12px 20px; font-size: 12px; font-weight: 700; cursor: pointer; border-right: 1px solid var(--grey2); transition: .15s; text-transform: uppercase; letter-spacing: .04em; }
.tab-btn.active { background: #fff; color: var(--blue); }
.tab-btn:hover:not(.active) { background: var(--grey2); }
.tab-content { display: none; padding: 20px; }
.tab-content.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) td { background: var(--grey1); }
.spec-table td { padding: 9px 12px; font-size: 13px; border-bottom: 1px solid var(--grey2); }
.spec-table td:first-child { color: var(--grey4); width: 40%; font-weight: 600; }
.product-panel { background: #fff; border: 1px solid var(--grey2); border-radius: var(--r-md); padding: 24px; position: sticky; top: 84px; box-shadow: var(--shadow-sm); }
.product-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; line-height: 1.1; color: var(--text); margin: 10px 0 8px; text-transform: uppercase; }
.product-fitment { font-size: 13px; color: var(--grey4); margin-bottom: 14px; }
.product-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; color: var(--red); line-height: 1; margin: 16px 0 20px; }
.product-price sup { font-size: 24px; vertical-align: super; }
.product-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.product-meta-item { background: var(--grey1); border-radius: var(--r); padding: 10px 12px; border: 1px solid var(--grey2); }
.product-meta-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--grey4); margin-bottom: 3px; letter-spacing: .06em; }
.product-meta-val { font-size: 13px; font-weight: 700; color: var(--text); }
.call-btn { width: 100%; background: var(--red); color: #fff; border: none; border-radius: var(--r); padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; text-decoration: none; transition: background .15s; }
.call-btn:hover { background: var(--red-dk); color: #fff; }
.email-btn { width: 100%; background: #fff; color: var(--blue); border: 2px solid var(--blue); border-radius: var(--r); padding: 12px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; transition: .15s; }
.email-btn:hover { background: var(--blue); color: #fff; }
.trust-mini-row { display: flex; gap: 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--grey2); justify-content: center; flex-wrap: wrap; }
.trust-mini { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--grey4); font-weight: 600; }
.trust-mini svg { color: var(--green); width: 13px; height: 13px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .parts-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-panel { position: static; }
}
@media(max-width:800px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .parts-grid { grid-template-columns: repeat(2,1fr); }
  .locations-grid, .condition-split { grid-template-columns: 1fr; }
  .search-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-stats { gap: 24px; }
  .header-inner { height: auto; padding: 12px 0; flex-wrap: wrap; }
  .header-search-bar { order: 3; max-width: 100%; width: 100%; }
  .header-phone { display: none; }
  .site-nav { flex-wrap: wrap; }
  .site-nav a { font-size: 11px; padding: 9px 12px; }
}
@media(max-width:540px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .parts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ── HERO LAYOUT WITH ILLUSTRATION ── */
.hero-inner { display: grid; grid-template-columns: 1fr 480px; gap: 40px; align-items: center; }
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 100%; max-width: 480px; height: auto; filter: drop-shadow(0 0 40px rgba(0,102,204,0.3)); }
@media(max-width:1000px) { .hero-inner { grid-template-columns: 1fr; } .hero-illustration { display: none; } }

/* ── SECTION WHITE ── */
.section-white { background: #fff; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.55); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-tooltip { position: absolute; right: 66px; background: #111; color: #fff;
  font-size: 12px; font-weight: 600; white-space: nowrap; padding: 6px 12px;
  border-radius: 4px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── DELIVERY BADGES ── */
.delivery-badges { display: flex; gap: 6px; flex-wrap: wrap; margin: 10px 0; }
.badge-free-delivery { background: #e8f5e9; color: #1a7a35; border: 1px solid #a5d6a7; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.badge-urgent { background: #fff3e0; color: #c87000; border: 1px solid #ffcc80; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
