/* ============ GEARHAUS shared design system ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --steel:    #0d1b2a;
  --steel-mid:#1c2e42;
  --steel-lt: #2a4057;
  --accent:   #f59e0b;
  --accent-lt:color-mix(in oklab, var(--accent) 85%, white);
  --accent-dk:color-mix(in oklab, var(--accent) 82%, black);
  --chalk:    #f0f4f8;
  --muted:    #8fa3b8;
  --ink-2:    #3a4f62;
  --white:    #ffffff;
  --red:      #ef4444;
  --green:    #16a34a;
  --line:     #e5eaf0;
  --radius:   8px;
  --pad:      1;
}
body { font-family: 'Inter', sans-serif; background: var(--chalk); color: var(--steel); font-size: 14px; line-height: 1.5; overflow-x: hidden; }
body.density-compact { --pad: 0.72; }
a { color: inherit; }
.icon { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.cond { font-family: 'Barlow Condensed', sans-serif; }

/* TOP BAR */
.topbar { background: var(--steel); color: var(--muted); font-size: 12px; padding: 6px 16px; text-align: center; letter-spacing: 0.04em; }
.topbar span { color: var(--accent); font-weight: 600; }

/* NAVBAR */
nav.gh-nav { background: var(--steel-mid); padding: 0 40px; display: flex; align-items: center; gap: 20px; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--white); letter-spacing: 0.06em; text-decoration: none; flex-shrink: 0; }
.logo span { color: var(--accent); }
.nav-search { flex: 1; max-width: 480px; display: flex; background: var(--steel-lt); border-radius: calc(var(--radius) - 2px); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.nav-search input { flex: 1; background: transparent; border: none; outline: none; color: var(--white); padding: 0 14px; font-size: 13px; font-family: 'Inter', sans-serif; min-width: 0; }
.nav-search input::placeholder { color: var(--muted); }
.nav-search button { background: var(--accent); border: none; padding: 0 16px; cursor: pointer; color: var(--steel); display: flex; align-items: center; transition: background 0.2s; }
.nav-search button:hover { background: var(--accent-lt); }
.nav-vehicle { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: calc(var(--radius) - 2px); padding: 6px 12px; color: var(--white); font-size: 12px; cursor: pointer; white-space: nowrap; text-decoration: none; transition: background 0.2s; }
.nav-vehicle:hover { background: rgba(255,255,255,0.12); }
.nav-vehicle .icon { color: var(--accent); }
.nav-vehicle em { font-style: normal; color: var(--muted); font-size: 11px; }
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-link { color: var(--muted); font-size: 13px; padding: 8px 12px; border-radius: 5px; cursor: pointer; transition: color 0.2s, background 0.2s; display: flex; align-items: center; gap: 6px; text-decoration: none; white-space: nowrap; }
.nav-link:hover { color: var(--white); background: var(--steel-lt); }
.cart-btn { background: var(--accent); color: var(--steel); font-weight: 600; font-size: 13px; padding: 8px 16px; border-radius: calc(var(--radius) - 3px); border: none; cursor: pointer; display: flex; align-items: center; gap: 7px; transition: background 0.2s; text-decoration: none; }
.cart-btn:hover { background: var(--accent-lt); }
.cart-badge { background: var(--red); color: white; font-size: 10px; font-weight: 700; border-radius: 99px; padding: 1px 6px; line-height: 1.4; }

/* CATEGORY NAV */
.cat-section { background: var(--white); padding: 0 40px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.cat-row { display: flex; gap: 0; }
.cat-item { padding: calc(14px * var(--pad)) 16px; font-size: 13px; font-weight: 500; color: #4a5e72; cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.15s, border-color 0.15s; text-decoration: none; display: block; }
.cat-item:hover { color: var(--steel); border-bottom-color: var(--accent); }
.cat-item.active { color: var(--steel); border-bottom-color: var(--accent); font-weight: 600; }

/* PROMO STRIP */
.promo-strip { background: var(--accent); padding: 10px 40px; display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.promo-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--steel); }

/* LAYOUT */
.main { padding: calc(40px * var(--pad)) 40px; max-width: 1280px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.section-head h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--steel); letter-spacing: 0.02em; }
.section-head a { font-size: 13px; color: var(--accent-dk); font-weight: 600; text-decoration: none; }
.section-head a:hover { text-decoration: underline; }

/* BREADCRUMB */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--steel); }
.crumbs .sep { color: #c3cfdb; }
.crumbs .here { color: var(--steel); font-weight: 500; }

/* PRODUCT CARD */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(14px * var(--pad)); }
.pcard { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; position: relative; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.pcard:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-2px); }
.pcard-badge { position: absolute; top: 8px; left: 8px; background: var(--red); color: white; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; letter-spacing: 0.04em; z-index: 1; }
.pcard-badge.oem { background: var(--steel); }
.pcard-badge.new { background: var(--green); }
.pcard-img { width: 100%; height: calc(160px * var(--pad)); background: #eef2f6; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard-body { padding: calc(12px * var(--pad)); flex: 1; display: flex; flex-direction: column; }
.pcard-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pcard-name { font-size: 13px; font-weight: 500; color: var(--steel); line-height: 1.4; margin-bottom: 8px; flex: 1; }
.pcard-sku { font-size: 10px; color: #aab8c6; margin-bottom: 6px; }
.stars { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.star { color: var(--accent); font-size: 12px; }
.star.empty { color: #dde3ea; }
.review-count { font-size: 11px; color: var(--muted); margin-left: 4px; }
.pcard-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.price-main { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--steel); }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: 11px; color: var(--red); font-weight: 600; }
.fit-tag { font-size: 11px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.fit-tag.unknown { color: var(--muted); }
.fit-tag.univ { color: #2563eb; }
.fit-tag.no { color: var(--red); }
.fit-tag .icon { width: 13px; height: 13px; }
.pcard-nofit { opacity: 0.72; }
.pcard-nofit:hover { opacity: 1; }
.pcard-nofit .pcard-img { filter: saturate(0.6); }
.pcard-add { width: 100%; padding: calc(9px * var(--pad)); background: var(--steel); color: white; border: none; border-radius: calc(var(--radius) - 3px); font-size: 12px; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 6px; }
.pcard-add:hover { background: var(--accent); color: var(--steel); }
.pcard-add.added { background: var(--green); color: white; }

/* SIDEBAR (listing filters + home categories) */
.sidebar-block { background: var(--white); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; border: 1px solid var(--line); }
.sidebar-head { background: var(--steel); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 14px; }
.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid #f0f4f8; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a { display: flex; align-items: center; justify-content: space-between; padding: calc(9px * var(--pad)) 14px; font-size: 13px; color: var(--ink-2); text-decoration: none; cursor: pointer; transition: background 0.15s, color 0.15s; }
.sidebar-list li a:hover { background: #f8fafc; color: var(--steel); }
.sidebar-list li a.active { background: #fff8ec; color: var(--steel); font-weight: 600; box-shadow: inset 2px 0 0 var(--accent); }
.sidebar-list li a span { font-size: 11px; color: var(--muted); }
.filter-group { padding: 12px 14px; border-bottom: 1px solid #f0f4f8; }
.filter-group:last-child { border-bottom: none; }
.filter-group h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.filter-check { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px; color: var(--ink-2); cursor: pointer; }
.filter-check input { accent-color: var(--accent-dk); width: 14px; height: 14px; cursor: pointer; }
.filter-check span.cnt { margin-left: auto; font-size: 11px; color: var(--muted); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 600; border-radius: calc(var(--radius) - 2px); transition: background 0.2s, transform 0.1s, color 0.2s; text-decoration: none; }
.btn-accent { background: var(--accent); color: var(--steel); }
.btn-accent:hover { background: var(--accent-lt); transform: translateY(-1px); }
.btn-dark { background: var(--steel); color: var(--white); }
.btn-dark:hover { background: var(--steel-lt); }
.btn-ghost { background: var(--white); color: var(--steel); border: 1.5px solid #dde3ea; }
.btn-ghost:hover { border-color: var(--steel); }
.btn-lg { padding: 13px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* FORMS */
.gh-select, .gh-input { width: 100%; padding: 9px 10px; border: 1.5px solid #dde3ea; border-radius: calc(var(--radius) - 3px); font-size: 13px; font-family: 'Inter', sans-serif; color: var(--steel); background: #f8fafc; transition: border-color 0.2s; }
.gh-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238fa3b8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px; }
.gh-select:focus, .gh-input:focus { outline: none; border-color: var(--accent); }
.gh-input::placeholder { color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* QTY STEPPER */
.qty { display: inline-flex; align-items: center; border: 1.5px solid #dde3ea; border-radius: calc(var(--radius) - 3px); overflow: hidden; background: var(--white); }
.qty button { width: 34px; height: 36px; border: none; background: #f8fafc; cursor: pointer; font-size: 16px; color: var(--ink-2); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty button:hover { background: var(--line); }
.qty input { width: 44px; height: 36px; border: none; text-align: center; font-size: 14px; font-weight: 600; color: var(--steel); font-family: 'Inter', sans-serif; outline: none; }

/* CARDS / PANELS */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.panel-pad { padding: calc(20px * var(--pad)); }

/* FITMENT BANNER */
.fit-banner { display: flex; align-items: center; gap: 12px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 10px 16px; font-size: 13px; color: #166534; margin-bottom: 18px; }
.fit-banner .icon { color: var(--green); width: 18px; height: 18px; }
.fit-banner strong { font-weight: 700; }
.fit-banner a { margin-left: auto; font-size: 12px; color: #166534; font-weight: 600; }
.fit-banner.none { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.fit-banner.none .icon { color: var(--accent-dk); }
.fit-banner.none a { color: #92400e; }

/* FOOTER */
footer.gh-footer { background: var(--steel); color: var(--muted); padding: 40px 40px 20px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col p { font-size: 13px; line-height: 1.7; color: #6b8099; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li { font-size: 13px; color: #6b8099; cursor: pointer; transition: color 0.15s; }
.footer-col ul li:hover { color: var(--muted); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px; display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 11px; color: #3d5166; max-width: 760px; }
.payment-icons { display: flex; gap: 8px; margin-top: 14px; }
.pay-chip { background: rgba(255,255,255,0.06); border-radius: 4px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: #8fa3b8; letter-spacing: 0.04em; }

/* TOAST */
.gh-toast { position: fixed; bottom: 24px; right: 24px; background: var(--steel); color: white; padding: 12px 18px; border-radius: var(--radius); font-size: 13px; display: flex; align-items: center; gap: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.35); z-index: 500; opacity: 0; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s; pointer-events: none; }
.gh-toast.show { opacity: 1; transform: translateY(0); }
.gh-toast .icon { color: var(--green); }

@media (max-width: 980px) {
  nav.gh-nav { padding: 0 16px; flex-wrap: wrap; height: auto; row-gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .main { padding: 24px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ TRUST BAR (injected above footer site-wide) ============ */
.gh-trustbar { background: var(--white); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 1280px; margin: 48px auto 0; padding: 0 40px; }
.trust-cell { display: flex; align-items: center; gap: 12px; padding: 22px 18px; }
.trust-cell + .trust-cell { box-shadow: -1px 0 0 var(--line); }
.trust-ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: color-mix(in oklab, var(--accent) 12%, white); display: flex; align-items: center; justify-content: center; }
.trust-ic .icon { width: 20px; height: 20px; color: var(--accent-dk); }
.trust-cell strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: var(--steel); letter-spacing: 0.01em; }
.trust-cell span { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ============ MOBILE CHROME (hidden on desktop) ============ */
.gh-burger, .gh-mobile-actions, .gh-msearch, .gh-vehbar { display: none; }
.gh-burger { width: 38px; height: 38px; border: none; background: rgba(255,255,255,0.06); border-radius: 7px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; cursor: pointer; flex-shrink: 0; }
.gh-burger span { width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s; }
.gh-mobile-actions { align-items: center; gap: 6px; margin-left: auto; }
.m-act { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--white); cursor: pointer; position: relative; text-decoration: none; border-radius: 7px; }
.m-act:active { background: rgba(255,255,255,0.08); }
.m-act .icon { width: 22px; height: 22px; }
.m-cart .cart-badge { position: absolute; top: 4px; right: 2px; }

.gh-msearch { background: var(--steel-mid); padding: 10px 16px; position: sticky; top: 56px; z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.gh-msearch.show { display: flex; gap: 0; }
.gh-msearch input { flex: 1; min-width: 0; background: var(--steel-lt); border: 1px solid rgba(255,255,255,0.1); border-right: none; border-radius: 7px 0 0 7px; color: var(--white); padding: 11px 14px; font-size: 15px; font-family: 'Inter', sans-serif; outline: none; }
.gh-msearch input::placeholder { color: var(--muted); }
.gh-msearch button { background: var(--accent); border: none; border-radius: 0 7px 7px 0; padding: 0 16px; cursor: pointer; color: var(--steel); display: flex; align-items: center; }

/* sticky vehicle bar under nav */
.gh-vehbar { width: 100%; align-items: center; gap: 11px; text-align: left; background: var(--white); border: none; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 var(--line); padding: 10px 16px; cursor: pointer; position: sticky; top: 56px; z-index: 90; }
.gh-msearch.show + .gh-vehbar { top: 56px; }
.vb-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--steel); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vb-ic .icon { width: 18px; height: 18px; color: var(--accent); }
.vb-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.vb-txt em { font-style: normal; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.vb-txt strong { font-size: 13px; font-weight: 600; color: var(--steel); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vb-act { font-size: 12px; font-weight: 700; color: var(--accent-dk); flex-shrink: 0; padding: 5px 12px; border: 1.5px solid color-mix(in oklab, var(--accent) 40%, white); border-radius: 99px; }
.vb-act-cta { background: var(--accent); color: var(--steel); border-color: var(--accent); }

/* slide-in drawer */
.gh-overlay { position: fixed; inset: 0; background: rgba(7,14,22,0.55); opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 600; }
.gh-overlay.show { opacity: 1; pointer-events: auto; }
.gh-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 340px); background: var(--white); z-index: 601; transform: translateX(-100%); transition: transform 0.28s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; display: flex; flex-direction: column; box-shadow: 4px 0 40px rgba(0,0,0,0.3); }
.gh-drawer.show { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--steel-mid); position: sticky; top: 0; z-index: 2; }
.drawer-head .logo { font-size: 22px; }
.drawer-close { background: rgba(255,255,255,0.08); border: none; width: 34px; height: 34px; border-radius: 7px; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.drawer-veh { display: flex; align-items: center; gap: 11px; width: calc(100% - 28px); margin: 14px; padding: 12px 14px; background: #f6f9fc; border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; text-align: left; }
.drawer-veh .dv-ic { width: 36px; height: 36px; border-radius: 50%; background: var(--steel); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.drawer-veh .dv-ic .icon { width: 19px; height: 19px; color: var(--accent); }
.drawer-veh .dv-txt { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.3; }
.drawer-veh .dv-txt em { font-style: normal; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.drawer-veh .dv-txt strong { font-size: 13px; color: var(--steel); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer-veh .dv-act { font-size: 11px; font-weight: 700; color: var(--accent-dk); flex-shrink: 0; }
.drawer-account { display: flex; align-items: center; gap: 10px; margin: 0 14px 4px; padding: 12px 14px; font-size: 14px; font-weight: 600; color: var(--steel); text-decoration: none; border-bottom: 1px solid var(--line); }
.drawer-account .icon { width: 19px; height: 19px; color: var(--ink-2); }
.drawer-sec { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 16px 18px 6px; }
.drawer-cats { display: flex; flex-direction: column; }
.drawer-cats a { padding: 11px 18px; font-size: 14px; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid #f3f6f9; }
.drawer-cats a:active { background: #f6f9fc; }
.drawer-cats .drawer-all { color: var(--accent-dk); font-weight: 600; border-bottom: none; }
.drawer-brands { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 18px 8px; }
.drawer-brands a { font-size: 12px; font-weight: 600; color: var(--ink-2); text-decoration: none; padding: 7px 12px; background: #f1f5f9; border-radius: 99px; }
.drawer-support { margin-top: auto; padding: 18px; background: var(--steel); display: flex; flex-direction: column; gap: 4px; }
.drawer-support .ds-q { font-size: 12px; color: var(--muted); }
.drawer-support .ds-phone { display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; color: var(--white); text-decoration: none; }
.drawer-support .ds-phone .icon { width: 18px; height: 18px; color: var(--accent); }
.drawer-support .ds-hours { font-size: 11px; color: #6b8099; }

/* ============ VEHICLE PICKER MODAL ============ */
.gh-vpick { position: fixed; inset: 0; z-index: 700; display: flex; align-items: center; justify-content: center; padding: 20px; }
.vpick-overlay { position: absolute; inset: 0; background: rgba(7,14,22,0.6); opacity: 0; transition: opacity 0.2s; }
.gh-vpick.show .vpick-overlay { opacity: 1; }
.vpick-sheet { position: relative; background: var(--white); border-radius: 14px; width: 100%; max-width: 440px; padding: 28px 26px 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.45); transform: translateY(16px) scale(0.98); opacity: 0; transition: transform 0.24s cubic-bezier(0.4,0,0.2,1), opacity 0.24s; max-height: calc(100vh - 40px); overflow-y: auto; }
.gh-vpick.show .vpick-sheet { transform: translateY(0) scale(1); opacity: 1; }
.vpick-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none; background: #f1f5f9; border-radius: 7px; cursor: pointer; color: var(--ink-2); display: flex; align-items: center; justify-content: center; }
.vpick-close:hover { background: var(--line); }
.vpick-eyebrow { display: flex; align-items: center; gap: 7px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 8px; }
.vpick-eyebrow .icon { width: 16px; height: 16px; }
.vpick-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--steel); line-height: 1.05; margin-bottom: 6px; }
.vpick-sub { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 18px; }
.vpick-current { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 10px 14px; margin-bottom: 16px; }
.vpick-current span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #16a34a; display: block; }
.vpick-current strong { font-size: 14px; color: #166534; }
.vpick-clear { background: none; border: none; font-size: 12px; font-weight: 600; color: #166534; cursor: pointer; text-decoration: underline; }
.vpick-fields { display: grid; grid-template-columns: 0.8fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.vpick-fields .gh-select { padding: 12px 10px; font-size: 14px; }
#vp-go { margin-bottom: 4px; }
.vpick-recent { margin-top: 18px; }
.vpick-recent-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; margin-bottom: 8px; }
.vpick-chips { display: flex; flex-direction: column; gap: 6px; }
.vpick-chip { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; background: #f6f9fc; border: 1px solid var(--line); border-radius: var(--radius); padding: 9px 12px; font-size: 13px; font-weight: 500; color: var(--steel); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.vpick-chip:hover { border-color: var(--accent); background: #fffcf5; }
.vpick-chip .icon { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }

@media (max-width: 860px) {
  nav.gh-nav { flex-wrap: nowrap; height: 56px; padding: 0 12px; gap: 10px; }
  nav.gh-nav .nav-search, nav.gh-nav .nav-vehicle, nav.gh-nav .nav-links { display: none; }
  nav.gh-nav .logo { font-size: 22px; }
  .gh-burger, .gh-mobile-actions { display: flex; }
  .gh-vehbar { display: flex; }
  .gh-trustbar { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 0; }
  .trust-cell { padding: 16px 12px; }
  .trust-cell:nth-child(odd) { box-shadow: none; }
  .trust-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .vpick-sheet { align-self: flex-end; max-width: none; border-radius: 16px 16px 0 0; }
  .gh-vpick { padding: 0; align-items: flex-end; }
  .gh-vpick.show .vpick-sheet { transform: translateY(0); }
  .vpick-sheet { transform: translateY(100%); }
}
@media (max-width: 420px) {
  .vpick-fields { grid-template-columns: 1fr; }
  .gh-trustbar { grid-template-columns: 1fr; }
  .trust-cell:nth-child(n+2) { border-top: 1px solid var(--line); }
}

/* ════════════════════════════════════════════════════════════════════
   KEYHAUS — single-category (car remote keys) component layer
   ════════════════════════════════════════════════════════════════════ */

/* FCC line on product cards (replaces SKU) */
.pcard-fcc { display: flex; align-items: center; gap: 5px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; color: var(--ink-2); margin-bottom: 8px; letter-spacing: -0.01em; }
.pcard-fcc .icon { width: 12px; height: 12px; color: var(--accent-dk); }

/* ---- HERO ---- */
.kh-hero { background: linear-gradient(150deg, #0d1b2a 0%, #16273a 60%, #1c2e42 100%); border-radius: 16px; padding: 48px 44px; position: relative; overflow: hidden; margin-bottom: 14px; }
.kh-hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; background: radial-gradient(circle, color-mix(in oklab, var(--accent) 16%, transparent), transparent 62%); pointer-events: none; }
.kh-hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }
.kh-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); padding: 5px 12px; border-radius: 99px; margin-bottom: 18px; }
.kh-eyebrow .icon { width: 15px; height: 15px; }
.kh-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 46px; line-height: 1.02; color: #fff; letter-spacing: 0.01em; margin-bottom: 16px; }
.kh-hero h1 span { color: var(--accent); }
.kh-hero p.lede { font-size: 15px; line-height: 1.6; color: #aebfd0; max-width: 460px; margin-bottom: 22px; }
.kh-hero-points { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.kh-hero-points li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #c7d4e2; list-style: none; }
.kh-hero-points .icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.kh-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero finder card */
.kh-finder { background: var(--white); border-radius: 14px; padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.kh-finder h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 19px; color: var(--steel); margin-bottom: 3px; }
.kh-finder .kh-finder-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.kh-finder .field { margin-bottom: 11px; }
.kh-finder .gh-select { padding: 11px 10px; background: #f8fafc; }
.kh-finder-or { text-align: center; font-size: 11px; color: var(--muted); margin: 14px 0 12px; position: relative; }
.kh-finder-or::before, .kh-finder-or::after { content: ''; position: absolute; top: 50%; width: calc(50% - 22px); height: 1px; background: var(--line); }
.kh-finder-or::before { left: 0; } .kh-finder-or::after { right: 0; }
.kh-fcc-row { display: flex; gap: 8px; }
.kh-fcc-row .gh-input { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ---- confidence components ---- */
.conf-meter { display: inline-flex; align-items: center; gap: 9px; }
.conf-track { width: 90px; height: 7px; border-radius: 99px; background: var(--line); overflow: hidden; }
.conf-track i { display: block; height: 100%; border-radius: 99px; }
.conf-num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; font-weight: 600; }
.conf-high i { background: var(--green); } .conf-high .conf-num { color: var(--green); }
.conf-likely i { background: var(--accent-dk); } .conf-likely .conf-num { color: var(--accent-dk); }
.conf-check i { background: #64748b; } .conf-check .conf-num { color: #64748b; }

.conf-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 99px; }
.conf-pill .icon { width: 14px; height: 14px; }
.conf-pill.high { color: var(--green); background: #e7f6ed; }
.conf-pill.likely { color: var(--accent-dk); background: #fdf0d9; }
.conf-pill.check { color: #475569; background: #eef2f6; }
.conf-pill.no { color: var(--red); background: #fdecec; }

/* big confidence ring (PDP) */
.conf-ring-wrap { display: flex; align-items: center; gap: 16px; }
.conf-ring { --p: 0; --c: var(--green); width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(var(--c) calc(var(--p) * 1%), var(--line) 0); display: flex; align-items: center; justify-content: center; }
.conf-ring::after { content: ''; position: absolute; }
.conf-ring b { width: 54px; height: 54px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 21px; color: var(--steel); }

/* ---- spec grid (PDP) ---- */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-grid .spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 13px; }
.spec-grid .spec-row:nth-child(odd) { border-right: 1px solid var(--line); }
.spec-grid .spec-row dt { color: var(--muted); font-size: 12px; }
.spec-grid .spec-row dd { font-weight: 600; color: var(--steel); text-align: right; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; }

/* programming badge */
.prog-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 7px; }
.prog-badge .icon { width: 15px; height: 15px; }
.prog-obd { color: #166534; background: #e7f6ed; }
.prog-dealer { color: #92400e; background: #fef3e2; }
.prog-locksmith { color: #1e40af; background: #e8f0fe; }
.prog-pnp { color: #155e63; background: #d9f2f0; }

/* fitment table (PDP) */
.fit-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fit-table th { text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding: 9px 12px; border-bottom: 1px solid var(--line); background: #fafcfe; }
.fit-table td { padding: 11px 12px; border-bottom: 1px solid #f1f4f8; }
.fit-table tr:last-child td { border-bottom: none; }
.fit-table .ft-veh { font-weight: 600; color: var(--steel); }
.fit-table .ft-yr { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; color: var(--ink-2); }
.fit-table tr.match { background: #f0fdf4; }
.fit-table tr.match .ft-veh { color: #166534; }

/* what's in the box */
.box-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.box-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.box-list .icon { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }

/* key-type rail (home) */
.kh-types { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.kh-type { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; display: flex; flex-direction: column; gap: 9px; }
.kh-type:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: color-mix(in oklab, var(--accent) 40%, white); }
.kh-type-ic { width: 44px; height: 44px; border-radius: 11px; background: color-mix(in oklab, var(--accent) 12%, white); display: flex; align-items: center; justify-content: center; }
.kh-type-ic .icon { width: 23px; height: 23px; color: var(--accent-dk); }
.kh-type h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--steel); letter-spacing: 0.01em; }
.kh-type p { font-size: 12px; color: var(--muted); line-height: 1.4; }
.kh-type .kh-type-cnt { font-size: 11px; font-weight: 700; color: var(--accent-dk); margin-top: auto; }

/* how-it-works strip */
.kh-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kh-how-step { display: flex; gap: 14px; }
.kh-how-num { width: 38px; height: 38px; border-radius: 50%; background: var(--steel); color: var(--accent); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kh-how-step h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--steel); margin-bottom: 3px; }
.kh-how-step p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* fcc helper callout */
.kh-callout { display: flex; gap: 16px; align-items: center; background: #fff8ec; border: 1px solid #fde68a; border-radius: var(--radius); padding: 18px 20px; }
.kh-callout .icon { width: 26px; height: 26px; color: var(--accent-dk); flex-shrink: 0; }
.kh-callout h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--steel); margin-bottom: 2px; }
.kh-callout p { font-size: 12.5px; color: #92400e; line-height: 1.5; }

/* section subtitle */
.section-head .sub-line { font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.section-head .hgroup h2 { margin-bottom: 0; }

/* PDP layout */
.pdp-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.pdp-media { position: sticky; top: 84px; }
.pdp-imgbox { background: #eef2f6; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1/1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pdp-imgbox img { width: 100%; height: 100%; object-fit: cover; }
.pdp-tier { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: 6px; }
.pdp-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 30px; line-height: 1.08; color: var(--steel); margin-bottom: 10px; }
.pdp-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 34px; color: var(--steel); }
.pdp-sec-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 24px 0 12px; display: flex; align-items: center; gap: 10px; }
.pdp-sec-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.pdp-buybar { display: flex; gap: 12px; align-items: center; margin: 18px 0; }
.verify-row { display: flex; flex-wrap: wrap; gap: 8px; }
.verify-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); background: #f1f5f9; border-radius: 7px; padding: 5px 10px; }
.verify-chip .icon { width: 13px; height: 13px; color: var(--green); }
.verify-chip.off { color: var(--muted); }
.verify-chip.off .icon { color: #cbd5e1; }

@media (max-width: 980px) {
  .kh-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .kh-hero { padding: 32px 24px; }
  .kh-hero h1 { font-size: 36px; }
  .kh-types { grid-template-columns: repeat(2, 1fr); }
  .kh-how { grid-template-columns: 1fr; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-media { position: static; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid .spec-row:nth-child(odd) { border-right: none; }
}
