/* ═══════════════════════════════════════════════════
   AUKETRA GROUP — Design System V2
   Professional automotive ecommerce
   ═══════════════════════════════════════════════════ */

:root {
  --navy:   #0b3d91;
  --blue:   #0d1f3c;
  --blue-h: #162d52;
  --gold:   #C9A84C;
  --dark:   #0d1f3c;
  --green:  #16a34a;
  --red:    #dc2626;
  --bg:     #f1f5f9;
  --white:  #ffffff;
  --text:   #1e293b;
  --muted:  #64748b;
  --border: #e2e8f0;
  --card:   #ffffff;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--blue); text-decoration: none; }
a:not([class]):hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ── Typography ── */
h1 { font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem); font-weight: 800; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.2rem, 1.5vw + .5rem, 1.6rem); font-weight: 700; color: var(--text); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff !important;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  text-decoration: none !important;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(13,31,60,.35);
}
.btn-primary:hover { background: var(--blue-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,31,60,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-cta-large {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: #fff !important;
  padding: 18px 36px; border-radius: var(--radius);
  font-size: 17px; font-weight: 800; border: none; cursor: pointer;
  text-decoration: none !important; width: 100%;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(13,31,60,.4);
  letter-spacing: .02em;
}
.btn-cta-large:hover { background: var(--blue-h); box-shadow: 0 6px 20px rgba(13,31,60,.5); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--blue); color: var(--blue) !important; background: transparent;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none !important; transition: background .2s;
}
.btn-outline:hover { background: rgba(13,31,60,.06); }

.btn-pro {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  text-decoration: none !important;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-pro:hover {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
}
.btn-pro:hover .pro-discount {
  background: var(--dark);
  color: var(--gold);
}
.pro-discount {
  background: var(--gold); color: var(--text);
  font-size: 10px; font-weight: 800;
  padding: 1px 5px; border-radius: 3px;
}
.btn--full { width: 100%; }

/* ── TOP BAR ── */
.topbar {
  background: #0d1f3c;
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  min-height: 32px;
}
.topbar__inner span:not(.topbar__sep) { padding: 2px 10px; }
.topbar__sep {
  color: var(--gold);
  opacity: 1;
  font-size: 12px;
  font-weight: 600;
  padding: 0 4px;
  user-select: none;
}
@media (max-width: 640px) { .topbar__sep { display: none; } .topbar__inner span:not(.topbar__sep) { padding: 2px 6px; } }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .2s, border-color .2s;
}
.site-header.is-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }
.site-header__inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 1240px; margin: 0 auto; padding: 12px 24px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 36px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 2px; flex: 1; margin-left: 12px; }
.nav-link {
  padding: 7px 14px 5px; border-radius: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text) !important;
  text-decoration: none !important; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.nav-link:hover { background: #f0f4ff; color: var(--navy) !important; }
.nav-link--active {
  color: var(--navy) !important;
  font-weight: 500;
  border-bottom-color: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-account {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text) !important;
  padding: 7px 10px; border-radius: 6px; text-decoration: none !important;
  transition: background .15s;
}
.header-account:hover { background: #f0f4ff; color: var(--navy) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
  font-size: 15px; font-weight: 500; color: var(--text) !important;
  text-decoration: none !important;
}
.nav-mobile__divider { border-top: 2px solid var(--border); margin: 8px 0; }
.nav-mobile__logout { background: none; border: none; cursor: pointer; padding: 12px 0; font-size: 15px; color: var(--red); width: 100%; text-align: left; }
@media (max-width: 768px) { .nav-desktop { display: none; } .nav-toggle { display: flex; } }
@media (max-width: 480px) { .btn-pro span:not(.pro-discount) { display: none; } }

/* ── PROMO BAR ── */
.promo-bar {
  background: #0d1f3c;
  color: rgba(232,224,204,.9);
  border-bottom: 2px solid var(--gold);
  text-align: center; padding: 8px 16px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em;
}
.promo-bar--gold {
  background: var(--gold);
  color: var(--dark);
  border-bottom: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── SECTION ── */
.section { max-width: 1240px; margin: 0 auto; padding: 48px 24px; }
.section--tight { padding: 24px 24px; }
.section--gray { background: var(--bg); }

/* Editorial section titles */
.section > h2 {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ── HOMEPAGE HERO ── */
.hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #0b3d91 55%, #162d52 100%);
  color: #fff; min-height: 500px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(13,31,60,.85) 40%, rgba(13,31,60,.3) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 60px 24px;
  width: 100%;
}
.hero__inner > div:first-child::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero p { opacity: .9; font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.hero__stats {
  display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.hero__stat {
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 14px 20px; text-align: center;
}
.hero__stat strong { display: block; font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero__stat span { font-size: 12px; opacity: .85; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero__visual img { width: 100%; height: 380px; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: 380px; }
}

/* ── PILLS / TRUST BAR ── */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.trust-bar {
  background: #0d1f3c;
  border-bottom: none;
  padding: 12px 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 28px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: rgba(232,224,204,.85);
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 20px;
  background: rgba(201,168,76,.35);
}
.trust-item svg { color: #C9A84C; flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-bar { display: grid; }
  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,.15); padding: 0; }
  .trust-item { background: #0d1f3c; justify-content: center; padding: 10px 12px; font-size: 11px; }
  .trust-item + .trust-item::before { display: none; }
}

/* ── PROMO STRIP HOME ── */
.promo-strip-home {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 20px 24px; flex-wrap: wrap;
}

/* ── CARDS ── */
.card {
  background: var(--card); border-radius: var(--radius);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

/* Why/feature card icon wrapper */
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  margin: 0 auto 16px;
}

/* ── GRID ENGINES (product listing) ── */
.grid-engines {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── ENGINE CARD ── */
.engine-card {
  background: var(--white); border-radius: 10px;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.engine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
}
.engine-card__img {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f8fafc;
}
.engine-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.engine-card:hover .engine-card__img img { transform: scale(1.04); }
.engine-card__badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.95);
  color: var(--text);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px 4px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.engine-card__badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 5px;
  flex-shrink: 0;
}
.engine-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.engine-card__title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.engine-card__specs { display: flex; flex-wrap: wrap; gap: 6px; }
.engine-card__spec {
  background: transparent;
  color: var(--muted);
  font-size: 10px; font-weight: 600;
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.engine-card__price {
  font-size: 1.5rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.02em;
  margin-top: auto;
}
.engine-card__price small { font-size: 12px; font-weight: 500; color: var(--muted); }
.engine-card__footer { padding: 12px 16px; border-top: 1px solid var(--border); }
.engine-card__footer .btn-primary {
  width: 100%;
  background: var(--dark) !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 12px 16px;
  box-shadow: none;
}
.engine-card__footer .btn-primary:hover {
  background: #0a1628 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* ── STORE HERO ── */
.store-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: #fff; padding: 0;
}
.store-hero__inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 40px 24px 32px;
}
.store-hero__shield svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.store-hero__text h1 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.store-hero__text p { opacity: .9; margin-top: 8px; font-size: 15px; }
.store-hero__boxes {
  display: flex; gap: 16px;
  max-width: 1240px; margin: 0 auto; padding: 0 24px 24px;
  flex-wrap: wrap;
}
.store-hero__box {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 220px;
}
.store-hero__box-left { display: flex; align-items: center; gap: 10px; }
.store-hero__box-right { display: flex; align-items: center; gap: 8px; }
.store-hero__box-sep { width: 1px; height: 32px; background: rgba(255,255,255,.2); margin: 0 4px; }
.store-hero__box-bold { font-size: 13px; font-weight: 700; color: #fff; }
.store-hero__box-sub { font-size: 11px; color: rgba(255,255,255,.7); display: block; }
.store-hero__box-label { font-size: 13px; font-weight: 700; color: #fff; }
.store-discount-pill {
  background: var(--gold); color: var(--dark);
  font-size: 18px; font-weight: 900;
  padding: 6px 12px; border-radius: 6px;
}
@media (max-width: 768px) { .store-hero__inner { grid-template-columns: 1fr; } }

/* ── STORE BENEFITS BAR ── */
.store-benefits-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.store-benefits-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  max-width: 1240px; margin: 0 auto; padding: 10px 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text);
}
.store-benefits-bar__inner span {
  padding: 4px 20px;
  position: relative;
}
.store-benefits-bar__inner span + span::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 16px;
  background: var(--border);
}
.store-benefits-bar__inner span::before { display: none; }
.store-benefits-bar__inner span + span::before { display: block; }
.sbb-sep { display: none; }

/* ── STOCK COUNT BAR ── */
.store-count-bar { max-width: 1240px; margin: 0 auto; padding: 12px 24px 0; }

/* ── FILTER BAR ── */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.filter-form {
  display: flex; align-items: flex-end; flex-wrap: wrap;
  gap: 12px; max-width: 1240px; margin: 0 auto; padding: 16px 24px;
}
.filter-form label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 600; color: var(--muted); min-width: 140px; }
.filter-form select, .filter-form input {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  background: #f8f9fc;
  color: var(--text);
  box-shadow: inset 0 1px 3px rgba(13,31,60,.06);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.filter-form select:focus, .filter-form input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,61,145,.1), inset 0 1px 3px rgba(13,31,60,.04);
  background: #fff;
}
input[type="text"]:not(.vin-search__input),
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select:not(.filter-form select),
textarea {
  font-family: 'Outfit', sans-serif;
  background: #f8f9fc;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  padding: 10px 13px;
  box-shadow: inset 0 1px 3px rgba(13,31,60,.05);
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
input[type="text"]:not(.vin-search__input):focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:not(.filter-form select):focus,
textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,61,145,.1), inset 0 1px 3px rgba(13,31,60,.04);
  background: #fff;
}
@media (max-width: 600px) { .filter-form { flex-direction: column; } .filter-form label { min-width: 100%; } }

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE — Reference design from client
   ═══════════════════════════════════════════════════ */

/* ── Product layout ── */
.product-page { max-width: 1100px; margin: 0 auto; padding: 24px 24px 60px; }

.product-page__title-bar {
  background: var(--navy); color: #fff;
  padding: 28px 32px; border-radius: 10px 10px 0 0;
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
  text-transform: none;
}
.product-page__title-bar h1 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.product-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--white);
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 10px 10px; overflow: hidden;
}
@media (max-width: 860px) { .product-top { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-main {
  position: relative; background: #f8fafc;
  aspect-ratio: 4/3; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.auketra-overlay {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,61,145,.85); color: rgba(255,255,255,.5);
  font-size: 11px; font-weight: 900; letter-spacing: .15em;
  padding: 3px 8px; border-radius: 4px;
}
.gallery-thumbs {
  display: flex; gap: 8px; padding: 10px 12px;
  border-bottom: 1px solid var(--border); background: #f8fafc;
}
.gallery-thumb {
  width: 72px; height: 52px; border-radius: 5px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer;
  transition: border-color .15s; flex-shrink: 0;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption { font-size: 10px; color: var(--muted); text-align: center; margin-top: 3px; }

/* Right side — Purchase panel */
.product-buy-panel {
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--border);
}

/* Stock checklist */
.stock-checks { display: flex; flex-direction: column; gap: 8px; }
.stock-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
}
.stock-check .check-icon { color: var(--green); flex-shrink: 0; }
.stock-check--green { color: var(--green); }

/* Price block */
.price-block {
  background: #f8fafc; border: 2px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
}
.price-main {
  font-size: 2.6rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.price-delivery { font-size: 13px; font-weight: 700; color: var(--green); margin-top: 4px; }

/* CTA buttons */
.product-buy-panel .product-actions {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.product-buy-panel .btn-cta-large {
  height: 52px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #f0fdf4; border: 1.5px solid #86efac; color: #15803d !important;
  padding: 10px 16px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; text-decoration: none !important;
  transition: background .15s;
}
.btn-whatsapp:hover { background: #dcfce7; }

/* Discount banner on product page */
.product-discount-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8952a 100%);
  border-radius: 8px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.product-discount-banner .discount-pct {
  font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1;
}
.product-discount-banner p { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.4; }

/* Trust strip on product page */
.product-trust-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  background: #f8fafc; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden;
}
.product-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 12px; font-weight: 600;
  border-right: 1px solid var(--border); flex: 1; min-width: 140px;
}
.product-trust-item:last-child { border-right: none; }
.product-trust-item svg { color: var(--navy); flex-shrink: 0; }

/* Product info sections */
.product-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 24px;
}
@media (max-width: 680px) { .product-info-grid { grid-template-columns: 1fr; } }

.product-info-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.product-info-section__title {
  background: var(--navy); color: #fff;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.product-info-section__body { padding: 16px; }
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li::before { content: none; }
.product-info-section .spec-label {
  flex: 0 0 38%;
  min-width: 120px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.product-info-section .spec-value {
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}
.spec-label { color: var(--muted); min-width: 130px; }
.spec-value { font-weight: 600; }
.receives-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.receives-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.receives-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 900;
  flex-shrink: 0;
}

/* Tested section */
.product-tested-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; margin-top: 24px;
}
.tested-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.tested-checks { padding: 20px; }
.tested-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; border-left: 1px solid var(--border); }
.tested-photo { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; background: #f1f5f9; }
.tested-photo img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.check-list li::before {
  content: '✓'; color: var(--green); font-weight: 900; font-size: 16px; flex-shrink: 0;
}
@media (max-width: 680px) { .tested-grid { grid-template-columns: 1fr; } .tested-photos { border-left: none; border-top: 1px solid var(--border); } }

/* Warranty + shipping section */
.product-warranty-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px;
}
@media (max-width: 640px) { .product-warranty-row { grid-template-columns: 1fr; } }
.warranty-box, .shipping-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}

/* Customer reviews */
.reviews-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

/* Product CTA bottom */
.product-cta-bottom {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: #fff; border-radius: 12px;
  padding: 32px; text-align: center; margin-top: 32px;
}
.product-cta-bottom h2 { color: #fff; margin-bottom: 20px; font-size: 1.3rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: #fff; text-align: center; padding: 60px 24px;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.4rem, 2vw, 2rem); margin-bottom: 24px; }

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 32px;
}
.how-step { text-align: center; padding: 24px 16px; }
.how-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px; text-align: center;
  box-shadow: var(--shadow); transition: transform .2s;
}
.why-card:hover { transform: translateY(-2px); }
.why-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: #eef2ff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

/* ── BENEFITS LIST ── */
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.benefits-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.benefits-list li::before { content: '✔'; color: var(--green); font-weight: 700; }

/* ── TWO COL ── */
.two-col-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
@media (max-width: 640px) { .two-col-section { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px; font-weight: 700; font-size: 14px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.faq-item summary:hover { background: #f8fafc; }
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--blue); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT / COMPARISON ── */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 640px) { .about-story-grid { grid-template-columns: 1fr; } }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14px; border-radius: 8px; overflow: hidden; }
.comparison-table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; }
.comparison-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f8fafc; }
.ct-yes { color: var(--green); font-weight: 700; }
.ct-no { color: var(--red); font-weight: 700; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  box-shadow: var(--shadow); transition: transform .2s;
}
.service-card:hover { transform: translateY(-2px); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: #eef2ff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.service-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── PRO BADGE ── */
.pro-badge {
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 4px;
  letter-spacing: .05em; text-transform: uppercase;
}
.pro-badge--lg { font-size: 13px; padding: 4px 10px; }

/* ── PRO HERO ── */
.pro-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #162d52 100%);
  color: #fff; padding: 60px 24px;
}
.pro-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
@media (max-width: 768px) { .pro-hero__inner { grid-template-columns: 1fr; } }
.pro-hero h1 { color: #fff; font-size: clamp(1.5rem, 2.5vw + .5rem, 2rem); margin: 16px 0; }
.pro-hero p { opacity: .9; font-size: 15px; line-height: 1.7; }
.pro-hero__benefits { display: flex; flex-direction: column; gap: 12px; }
.pro-benefit {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08); padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
}

/* ── AUTH ── */
.auth-page {
  display: flex; justify-content: center; align-items: flex-start;
  padding: 40px 20px 60px; min-height: 60vh;
}
.auth-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 40px; width: 100%; max-width: 440px;
}
.auth-card--wide { max-width: 680px; }
.auth-card__logo { text-align: center; margin-bottom: 24px; }
.auth-card__title { font-size: 1.5rem; font-weight: 800; margin: 0 0 4px; text-align: center; }
.auth-card__sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.auth-card__links { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select {
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; background: var(--white); color: var(--text); width: 100%;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,31,60,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 16px; cursor: pointer; }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert--error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }

/* ── DASHBOARD ── */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dashboard-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.dashboard-card h3 { margin: 0 0 16px; font-size: 15px; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.dashboard-card p { margin: 0 0 8px; font-size: 14px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); font-size: 14px; margin-top: auto; }
.site-footer__main {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px;
  max-width: 1240px; margin: 0 auto; padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 768px) { .site-footer__main { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { margin: 12px 0 16px; font-size: 13px; line-height: 1.8; opacity: .65; max-width: 260px; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.footer-payments span { background: rgba(255,255,255,.1); padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 600px) { .footer-nav { grid-template-columns: 1fr 1fr; } }
.footer-nav__col { display: flex; flex-direction: column; gap: 10px; }
.footer-nav__col strong {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  display: block;
}
.footer-nav__col a {
  color: rgba(255,255,255,.85) !important;
  font-size: 13px;
  opacity: .65;
  text-decoration: none !important;
  transition: opacity .15s, color .15s;
}
.footer-nav__col a:hover { opacity: 1; color: #fff !important; }
.site-footer__trust {
  display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1240px; margin: 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.site-footer__trust-item::before {
  content: '✓';
  color: var(--gold);
  margin-right: 6px;
  font-size: 10px;
}
.site-footer__trust-sep {
  color: var(--gold);
  opacity: .45;
  user-select: none;
  font-weight: 400;
}
.site-footer__strip {
  text-align: center; padding: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px; opacity: .45;
}

/* ── PAGINATION ── */
nav[aria-label="pagination"], .pagination { display: flex; justify-content: center; margin-top: 32px; gap: 4px; }
.pagination span, .pagination a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  font-size: 13px; font-weight: 600; border: 1px solid var(--border);
  background: var(--white); color: var(--text) !important; text-decoration: none !important;
  transition: background .15s, color .15s;
}
.pagination a:hover { background: var(--navy); color: #fff !important; border-color: var(--navy); }
.pagination .active span { background: var(--navy); color: #fff !important; border-color: var(--navy); }

/* ── Legacy Blade variable aliases ── */
:root {
  --color-primary-navy: var(--navy);
  --color-cta: var(--blue);
  --color-gold: var(--gold);
  --color-text: var(--text);
}

/* ── How-it-works icon (component uses __icon) ── */
.how-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* ── Pagination vendor view classes ── */
.pagination-nav {
  margin-top: 32px;
}

.pagination-nav .pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pagination__link,
.pagination__current,
.pagination__disabled,
.pagination__ellipsis {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text) !important;
  text-decoration: none !important;
}

.pagination__current {
  background: var(--navy);
  color: #fff !important;
  border-color: var(--navy);
}

.pagination__link:hover {
  background: var(--navy);
  color: #fff !important;
  border-color: var(--navy);
}

.pagination__disabled {
  opacity: 0.45;
}

/* ── Contact / forms ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-stack label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-stack input,
.form-stack textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
}

.form-stack input:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.flash-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About commitments ── */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.commitment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* ── Gallery thumbs (buttons) ── */
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}

.gallery-thumbs button {
  width: 72px;
  height: 52px;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
  padding: 0;
  background: none;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  border-color: var(--blue);
}

.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-label {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
  width: 72px;
}

/* ── Checkout fallback flash ── */
.checkout-fallback-flash {
  background: #fffbeb;
  border-bottom: 1px solid #fcd34d;
  color: #92400e;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

/* ── VIN search JS toggles (widget styles live in component) ── */
.vin-search__form--hidden {
  display: none !important;
}

/* ── FAQ webkit marker ── */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ── Hero inner actions (homepage) ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ── Product promo strip (legacy class if used elsewhere) ── */
.product-promo-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Guarantee list on product page ── */
.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.guarantee-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
}

.shipping-partner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Warranty / shipping section titles (nested layout) ── */
.warranty-box .product-info-section__title,
.shipping-box .product-info-section__title {
  display: block;
}