/* ============================================================
   Used Car Store — Design System
   Fonts: Poppins (headings/nav/buttons), Inter (body/vehicle names)
   Accent: EchoPark-style teal (#0aa89e) on deep navy ink
   ============================================================ */

:root {
  --accent: #1763e6;
  --accent-dark: #0f4cba;
  --accent-soft: #e8f0fe;

  --ink: #0c1a33;
  --ink-2: #16263f;
  --ink-3: #2e425c;

  --bg: #eef1f6;
  --bg-alt: #e7ebf2;
  --bg-soft: #f5f7fb;

  --text: #14181f;
  --muted: #5d6b7e;
  --line: #dde3ec;
  --line-2: #cbd3e0;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(16, 18, 23, .08);
  --shadow: 0 6px 22px rgba(16, 18, 23, .10);
  --shadow-lg: 0 18px 50px rgba(16, 18, 23, .18);

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1760px;
  --nav-h: 70px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; }

/* EchoPark-style friendly headings: sentence/title case instead of condensed caps.
   (Small micro-labels — eyebrows, nav, chips, badges, stat labels — keep their caps.) */
.hero__title, .section__title, .pagehead__title, .invhead__title, .cta-band__title,
.block-title, .form__legend, .success-state h2, .order-success h2, .modal__title,
.drawer__head h3, .order__name, .reserve__name, .why h3, .finance-box h3,
.empty h3, .admin-login .block-title {
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}

.container {
  width: 100%;
  /* Fill the viewport (minus a small gutter) up to a generous cap, so wide
     monitors don't leave large empty white bands on the sides. */
  max-width: min(94vw, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 1000px; }

.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round; flex: none; }

.hidden { display: none !important; }
/* Make the HTML `hidden` attribute authoritative even when a class sets display
   (e.g. .field / .address-fields use display:flex, which would otherwise win). */
[hidden] { display: none !important; }
.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; text-transform: none;
  letter-spacing: .01em; font-size: 14.5px;
  padding: 11px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }
.btn-lg { padding: 14px 30px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ───────────── Announcement bar ───────────── */
.announce { background: linear-gradient(90deg, #081a3d 0%, var(--ink) 45%, #0e3270 100%);
  color: #c4d2ec; font-size: 13px; border-bottom: 2px solid var(--accent); }
.announce__inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.announce__msg { font-family: var(--font-head); letter-spacing: .16em; color: #fff;
  text-transform: uppercase; font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; }
.announce__msg::before { content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(23,99,230,.30); margin-right: 11px; flex: none; }
.announce__contact { display: flex; gap: 22px; }
.announce__link { display: inline-flex; align-items: center; gap: 7px; color: #c4d2ec; font-weight: 500; }
.announce__link:hover { color: #fff; }
.announce__link .ic { width: 15px; height: 15px; color: var(--accent); }

/* ───────────── Nav ───────────── */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav--solid { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 18px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__emblem { width: 38px; height: 38px; }
.brand__word { font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: 21px; color: var(--ink); line-height: 1; }
.brand--footer .brand__word { color: #fff; }

.mega__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mega__item { position: relative; }
.mega__top {
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .03em; font-size: 15px; color: var(--ink-2);
  background: none; border: 0; cursor: pointer; padding: 10px 14px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.mega__top:hover { color: var(--accent); background: var(--bg-alt); }
.mega__panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s ease; display: flex; flex-direction: column;
}
.has-panel:hover .mega__panel,
.has-panel:focus-within .mega__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__link { padding: 10px 14px; border-radius: 6px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.mega__link:hover { background: var(--accent-soft); color: var(--accent); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.saved-btn { position: relative; background: var(--bg-alt); border: 1px solid var(--line);
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--ink-2); transition: all .15s ease; }
.saved-btn:hover { color: var(--accent); border-color: var(--accent); }
.saved-btn .ic { width: 20px; height: 20px; }
.saved-btn__count { position: absolute; top: -4px; right: -4px; background: var(--accent);
  color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 600;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 18px;
  border-top: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em;
  padding: 10px 6px; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 8px; border-bottom: 0; }

/* ───────────── Trust strip ───────────── */
.trust { background: var(--ink-2); color: #c3c7cf; }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; min-height: 40px; padding: 9px 0; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .06em; font-size: 12.5px; }
.trust__inner i { color: var(--accent); font-style: normal; }

/* ───────────── Chip filter bar ───────────── */
.chipbar { background: #fff; border-bottom: 1px solid var(--line); }
.chipbar__inner { display: flex; align-items: center; gap: 8px; padding: 12px 24px; }
.chipbar__arrow { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink-2); }
.chipbar__arrow:hover { border-color: var(--accent); color: var(--accent); }
.chipbar__track { display: flex; gap: 9px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding: 2px; }
.chipbar__track::-webkit-scrollbar { display: none; }
.chip { flex: none; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em;
  font-size: 13.5px; padding: 8px 16px; border-radius: 999px; background: var(--bg-alt);
  border: 1px solid var(--line); color: var(--ink-2); transition: all .15s ease; }
.chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent);
  font-weight: 600; box-shadow: 0 4px 12px rgba(23,99,230,.30); }

/* ───────────── Sections ───────────── */
.section { padding: 64px 0; background: #fff; }
.section--alt { background: var(--bg-alt); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.section__head--center { justify-content: center; text-align: center; }
.section__eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 6px; }
.section__title { font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 34px; letter-spacing: .01em; color: var(--ink); line-height: 1.05; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .03em; font-size: 14px; color: var(--accent); font-weight: 600; }
.link-arrow:hover { gap: 11px; }
.block-title { font-family: var(--font-head); text-transform: uppercase; font-weight: 600;
  font-size: 22px; color: var(--ink); margin-bottom: 16px; letter-spacing: .02em; }

/* ───────────── Hero ───────────── */
.hero { position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #0a2a66 0%, #0f4cba 52%, #1763e6 100%); }
.hero--noimg { background: linear-gradient(120deg, #0a2a66 0%, #0f4cba 60%, #1763e6 100%); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center right; z-index: 0; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; z-index: 1; }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(5,14,34,.93) 0%, rgba(8,26,66,.80) 38%, rgba(12,46,110,.52) 70%, rgba(12,46,110,.34) 100%),
    radial-gradient(900px 520px at 84% 12%, rgba(120,170,255,.16), transparent 60%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
  align-items: center; padding: 84px 24px; }
.hero__eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-size: 13px; color: rgba(255,255,255,.9); font-weight: 600; }
.hero__title { font-family: var(--font-head); font-weight: 800; text-transform: none;
  font-size: 78px; line-height: .98; letter-spacing: -0.02em; margin: 14px 0 18px; }
.hero__title-alt { color: #6aa8ff; }
.hero__sub { font-size: 18px; color: rgba(255,255,255,.92); max-width: 540px; line-height: 1.6; }
.hero__cta { display: flex; gap: 14px; margin: 28px 0 36px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: 26px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: 32px; color: #fff; line-height: 1; }
.stat__label { font-size: 13px; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.hero__cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); padding: 10px;
  backdrop-filter: blur(6px); transition: transform .18s ease, background .18s ease; }
.hero-card:hover { transform: translateX(-4px); background: rgba(255,255,255,.26); }
.hero-card img { width: 108px; height: 72px; object-fit: cover; border-radius: 8px; background: #fff; }
.hero-card__info { display: flex; flex-direction: column; }
.hero-card__name { font-weight: 700; font-size: 14.5px; }
.hero-card__price { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 18px; }
/* On the photo hero, the primary CTA is solid accent blue — bold and clearly visible. */
.hero__cta .btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero__cta .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: var(--shadow-lg); }

/* ───────────── Brand pills ───────────── */
.brands { border-bottom: 1px solid var(--line); background: #fff; padding: 26px 0; }
.brands__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 30px 24px; }
.brand-pill { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px 10px;
  border: 1px solid var(--line); border-radius: var(--radius); transition: all .18s ease; background: var(--bg-soft); }
.brand-pill:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-pill__name { font-family: var(--font-head); text-transform: uppercase; font-weight: 600;
  font-size: 19px; color: var(--ink); letter-spacing: .03em; }
.brand-pill__count { font-size: 13px; color: var(--muted); }

/* ───────────── Grids ───────────── */
.grid { display: grid; gap: 24px; }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--why { grid-template-columns: repeat(4, 1fr); }

/* ───────────── Vehicle card ───────────── */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.07); }
.card__save { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: var(--ink-2); box-shadow: var(--shadow-sm); transition: all .15s ease; }
.card__save:hover { color: var(--accent); }
.card__save.is-saved { background: var(--accent); color: #fff; }
.card__save.is-saved .ic { fill: #fff; }
.card__save .ic { width: 19px; height: 19px; }
.card__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--ink); line-height: 1.25; }
.card__title:hover { color: var(--accent); }
.card__mileage { font-size: 13.5px; color: var(--muted); margin-top: -4px; }
.card__meta { font-size: 12.5px; color: var(--muted); font-weight: 500; letter-spacing: .01em; }
.card__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip { font-size: 12px; font-weight: 600; color: var(--ink-3); background: var(--bg-alt);
  border: 1px solid var(--line); padding: 4px 9px; border-radius: 6px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 6px; }
.card__price { font-family: var(--font-head); font-weight: 700; font-size: 25px; color: var(--accent); line-height: 1; }

/* ───────────── Badges ───────────── */
.badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .05em; font-size: 11.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 6px; color: #fff; background: var(--ink); box-shadow: var(--shadow-sm); }
.badge--reduced { background: var(--accent); }
.badge--low-miles { background: #0a7d3a; }
.badge--new-arrival { background: #0a5cff; }
.badge--hpi-clear { background: var(--ink-2); }
.badge--sold { background: #555; }

/* ───────────── Why blocks ───────────── */
.why { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.section--alt .why { box-shadow: var(--shadow-sm); }
.why__icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 14px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; }
.why__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 18px; color: var(--ink); margin-bottom: 8px; letter-spacing: .02em; }
.why p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ───────────── CTA band ───────────── */
.cta-band { background: linear-gradient(100deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 50px 24px; flex-wrap: wrap; }
.cta-band__title { font-family: var(--font-head); text-transform: uppercase; font-size: 32px; letter-spacing: .01em; }
.cta-band__sub { color: #c3c7cf; margin-top: 8px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ───────────── Footer ───────────── */
.footer { background: var(--ink); color: #aeb2bb; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding: 56px 24px 40px; }
.footer__col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
  color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer__col a { display: block; color: #aeb2bb; padding: 5px 0; font-size: 14.5px; }
.footer__col a:hover { color: var(--accent); }
.footer__about { font-size: 14.5px; line-height: 1.7; margin-top: 14px; }
.footer__line { margin: 6px 0; font-size: 14.5px; }
.footer__hours-h { margin-top: 20px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; padding: 18px 24px; font-size: 13px; color: #888d97; }

/* ───────────── Drawer (saved) ───────────── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(10,12,16,.5); opacity: 0; visibility: hidden;
  transition: .25s; z-index: 200; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw; background: #fff;
  z-index: 201; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg); }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px;
  border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 20px; }
.drawer__close { background: none; border: 0; font-size: 28px; cursor: pointer; color: var(--muted); line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 14px 18px; }
.drawer__foot { padding: 16px 18px; border-top: 1px solid var(--line); }
.drawer-empty { text-align: center; color: var(--muted); padding: 40px 10px; }
.saved-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.saved-item img { width: 84px; height: 58px; object-fit: cover; border-radius: 8px; background: var(--bg-alt); }
.saved-item__info { flex: 1; min-width: 0; }
.saved-item__name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.saved-item__price { font-family: var(--font-head); color: var(--accent); font-weight: 600; font-size: 17px; }
.saved-item__remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 13px; padding: 0; }
.saved-item__remove:hover { color: var(--accent); }

/* ───────────── Modal ───────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,12,16,.55); display: flex; align-items: center;
  justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .22s; z-index: 300; }
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: var(--radius-lg); padding: 30px; width: 100%; max-width: 480px;
  position: relative; box-shadow: var(--shadow-lg); transform: translateY(14px); transition: transform .22s ease; }
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 28px;
  cursor: pointer; color: var(--muted); line-height: 1; }
.modal__title { font-family: var(--font-head); text-transform: uppercase; font-size: 24px; }
.modal__sub { color: var(--muted); margin: 6px 0 18px; font-size: 14.5px; }

/* ───────────── Toast ───────────── */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 400; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--ink); color: #fff; padding: 14px 18px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); font-size: 14.5px; font-weight: 500; display: flex; align-items: center; gap: 10px;
  transform: translateX(120%); transition: transform .3s ease; max-width: 340px; }
.toast.show { transform: translateX(0); }
.toast--success { border-left: 4px solid #0a7d3a; }
.toast--error { border-left: 4px solid var(--accent); }
.toast__ic { width: 20px; height: 20px; flex: none; }

/* ───────────── Forms ───────────── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 13.5px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--text); padding: 11px 13px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: #fff; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; }
.field__help { font-size: 12.5px; color: var(--muted); margin: 2px 0 0; }
.form__legend { font-family: var(--font-head); text-transform: uppercase; font-size: 16px; color: var(--ink);
  letter-spacing: .03em; margin-top: 6px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.form__fineprint { font-size: 12.5px; color: var(--muted); text-align: center; margin: 0; }
.form-error { color: var(--accent); font-size: 13.5px; font-weight: 600; text-align: center; }
.radio-row { display: flex; gap: 16px; flex-wrap: wrap; }
.radio, .checkbox { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14.5px; cursor: pointer; }
.radio input, .checkbox input { width: auto; accent-color: var(--accent); }
.check-field { justify-content: flex-end; }
.card-surface { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }

/* ───────────── Success state ───────────── */
.success-state { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 48px 30px;
  text-align: center; box-shadow: var(--shadow-sm); }
.success-state__icon { width: 70px; height: 70px; border-radius: 50%; background: #e7f7ee; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 18px; }
.success-state__icon svg { width: 36px; height: 36px; fill: none; stroke: #0a7d3a; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.success-state h2 { font-family: var(--font-head); text-transform: uppercase; font-size: 28px; margin-bottom: 10px; }
.success-state p { color: var(--muted); max-width: 460px; margin: 0 auto 22px; }
.success-state__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ───────────── Page heads ───────────── */
.pagehead, .invhead { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 46px 0; }
.invhead { padding: 40px 0 30px; }
.pagehead__title, .invhead__title { font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  font-size: 40px; color: var(--ink); letter-spacing: .01em; }
.invhead__title { font-size: 34px; }
.pagehead__sub, .invhead__sub { color: var(--muted); margin-top: 8px; max-width: 640px; font-size: 16px; }

/* ───────────── Inventory layout ───────────── */
.inv { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.filters { position: sticky; top: calc(var(--nav-h) + 12px); }
.filters__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.filters__head { display: flex; align-items: center; justify-content: space-between; }
.filters__head h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 19px; }
.filters__clear { font-size: 13px; color: var(--accent); font-weight: 600; }
.filters__group { display: flex; flex-direction: column; gap: 6px; }
.filters__label { font-weight: 600; font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: .03em; }
.filters__form input, .filters__form select { font-family: var(--font-body); font-size: 14.5px; padding: 10px 12px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); width: 100%; background: #fff; }
.filters__form input:focus, .filters__form select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.filters__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.inv__results { min-width: 0; }
.inv__toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.inv__count { font-weight: 600; color: var(--ink-2); }
.inv__sort { display: flex; align-items: center; gap: 8px; }
.inv__sort label { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.inv__sort select { padding: 8px 12px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: var(--font-body); }
.empty { text-align: center; padding: 60px 20px; background: #fff; border: 1px dashed var(--line-2); border-radius: var(--radius); }
.empty h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 22px; margin-bottom: 8px; }
.empty p { color: var(--muted); margin-bottom: 18px; }

/* ───────────── Breadcrumbs ───────────── */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--line-2); }
.crumbs__current { color: var(--ink-2); font-weight: 600; }

/* ───────────── Vehicle detail ───────────── */
.detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; }
.gallery__main { position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); border: 1px solid var(--line); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.gallery__thumb { aspect-ratio: 16 / 11; border-radius: 8px; overflow: hidden; border: 2px solid var(--line);
  background: var(--bg-alt); cursor: pointer; padding: 0; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--accent); }

.detail__title { font-family: var(--font-body); font-weight: 800; font-size: 30px; color: var(--ink); line-height: 1.15; }
.detail__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.detail__price-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail__price { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: var(--accent); line-height: 1; }
.detail__fin { font-size: 14px; color: var(--muted); }
.detail__fin a { color: var(--accent); font-weight: 600; }
.detail__actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.detail__actions .btn-ghost { background: var(--bg-alt); color: var(--ink-2); border-color: var(--line-2); }
.detail__actions .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.detail__highlights { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail__highlights li { display: flex; flex-direction: column; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }
.detail__highlights span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.detail__highlights strong { font-size: 15px; color: var(--ink); }

.detail__lower { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; margin-top: 48px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.spec-table th { color: var(--muted); font-weight: 600; width: 16%; }
.spec-table td { color: var(--ink); font-weight: 600; }
/* On phones/small tablets the 4-column spec rows would overflow — restack each
   row as two aligned label/value pairs so nothing is cut off. */
@media (max-width: 680px) {
  .spec-table, .spec-table tbody { display: block; width: 100%; }
  .spec-table tr { display: grid; grid-template-columns: minmax(96px, auto) 1fr;
    column-gap: 12px; border-bottom: 1px solid var(--line); padding: 4px 0; }
  .spec-table th, .spec-table td { border: 0; width: auto; padding: 7px 2px; }
  .spec-table th { font-size: 13px; }
}
.detail__desc { color: var(--ink-3); line-height: 1.75; }
.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--ink-2); }
.feature-list .ic { color: var(--accent); width: 17px; height: 17px; margin-top: 3px; }
.finance-box { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 24px; }
.finance-box h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 18px; margin-bottom: 10px; }
.finance-box__est { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: #fff; line-height: 1; }
.finance-box__est span { font-size: 18px; color: #aeb2bb; }
.finance-box__note { font-size: 12.5px; color: #aeb2bb; margin: 10px 0 18px; }

/* ───────────── Reserve ───────────── */
.reserve { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; margin-top: 14px; }
.reserve__summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  position: sticky; top: calc(var(--nav-h) + 12px); }
.reserve__media { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-alt); margin-bottom: 14px; }
.reserve__media img { width: 100%; height: 100%; object-fit: cover; }
.reserve__name { font-family: var(--font-body); font-weight: 800; font-size: 19px; margin-bottom: 14px; }
.reserve__rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.reserve__rows > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; }
.reserve__rows span { color: var(--muted); }
.reserve__rows strong { color: var(--ink); }
.reserve__vin { font-size: 12px; letter-spacing: .03em; }

/* ───────────── Financing ───────────── */
.fin { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: start; }
.fin__left { display: flex; flex-direction: column; gap: 20px; position: sticky;
  top: calc(var(--nav-h) + 12px); align-self: start; }
.fin-perks__list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.fin-perks__list li { display: flex; gap: 12px; align-items: flex-start; }
.fin-perks__list .ic { flex: none; width: 26px; height: 26px; color: var(--accent);
  background: var(--accent-soft); border-radius: 50%; padding: 5px; }
.fin-perks__list strong { display: block; color: var(--ink); font-size: 14.5px; }
.fin-perks__list span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.calc__result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 22px; margin-top: 8px; }
.calc__label { font-size: 13px; color: #aeb2bb; text-transform: uppercase; letter-spacing: .06em; }
.calc__value { display: block; font-family: var(--font-head); font-weight: 700; font-size: 46px; color: #fff; line-height: 1.1; margin: 6px 0 14px; }
.calc__breakdown { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; font-size: 13.5px; color: #c3c7cf; }
.calc__breakdown strong { color: #fff; }
.calc__note { font-size: 12px; color: var(--muted); margin: 12px 0 0; }

/* ───────────── Contact ───────────── */
.contact { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__block h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 16px; color: var(--ink); margin-bottom: 4px; letter-spacing: .03em; }
.contact__block p { color: var(--ink-3); margin: 0; font-size: 15px; }
.contact__block a:hover { color: var(--accent); }

/* ───────────── About ───────────── */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.about-copy p { color: var(--ink-3); line-height: 1.8; margin: 14px 0; }
.about-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px 18px; text-align: center; }
.about-stat__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 34px; color: var(--accent); }
.about-stat span:last-child { font-size: 13px; color: #c3c7cf; text-transform: uppercase; letter-spacing: .05em; }

/* ───────────── Admin ───────────── */
.admin-body { background: var(--bg-alt); }
.admin { padding: 40px 0 80px; }
.admin-tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; font-size: 13px; color: var(--muted); }
.admin-login { max-width: 420px; margin: 40px auto; }
.admin-login p { margin-bottom: 18px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.admin-stats { display: flex; gap: 14px; }
.admin-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 22px; text-align: center; min-width: 92px; }
.admin-stat span { display: block; font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--accent); }
.admin-stat label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.tab { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-size: 15px;
  background: none; border: 0; border-bottom: 3px solid transparent; padding: 12px 18px; cursor: pointer; color: var(--muted); }
.tab.is-active { color: var(--ink); border-color: var(--accent); }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 760px; }
.data-table th { text-align: left; background: var(--bg-alt); color: var(--ink-2); font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .03em; font-size: 12.5px; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.data-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-3); }
.data-table tr:last-child td { border-bottom: 0; }
.data-table a:hover { color: var(--accent); }
.status { font-family: var(--font-head); text-transform: uppercase; font-size: 11.5px; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px; background: #fff4e5; color: #9a6300; }
.status--pending { background: #fff4e5; color: #9a6300; }
.status--contacted { background: #e7f0ff; color: #1a4fb5; }
.status--closed { background: #e7f7ee; color: #0a7d3a; }
.pill { display: inline-block; font-size: 11px; font-weight: 600; background: var(--accent-soft); color: var(--accent); padding: 2px 8px; border-radius: 999px; }
.empty-msg { text-align: center; color: var(--muted); padding: 40px; }

/* ───────────── Scroll reveal & page transitions ───────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
body.is-leaving .page { opacity: 0; transition: opacity .2s ease; }
.page { transition: opacity .25s ease; }

/* ───────────── Order flow (checkout) ───────────── */
.order { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; margin-top: 14px; }
.order__summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  position: sticky; top: calc(var(--nav-h) + 12px); }
.order__media { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-alt); margin-bottom: 14px; }
.order__media img { width: 100%; height: 100%; object-fit: cover; }
.order__name { font-family: var(--font-body); font-weight: 800; font-size: 19px; margin-bottom: 14px; }
.order__rows { display: flex; flex-direction: column; gap: 9px; }
.order__rows > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; }
.order__rows span { color: var(--muted); }
.order__rows strong { color: var(--ink); }
.order__live { margin: 14px 0; padding: 14px 0; border-top: 1px dashed var(--line-2); border-bottom: 1px dashed var(--line-2);
  display: flex; flex-direction: column; gap: 9px; }
.order__live-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; }
.order__live-row span { color: var(--muted); }
.order__live-row strong { color: var(--ink); }
.order__live-due { padding-top: 4px; }
.order__live-due span { color: var(--ink-2); font-weight: 600; }
.order__live-due strong { font-family: var(--font-head); font-size: 22px; color: var(--accent); }

.order__main { min-width: 0; }
.order__form { padding: 26px; }

/* Stepper */
.stepper { margin-bottom: 26px; }
.stepper__bar { height: 5px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.stepper__fill { display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ff5b73); transition: width .45s cubic-bezier(.4,0,.2,1); }
.stepper__dots { list-style: none; display: flex; justify-content: space-between; padding: 0; margin: 14px 0 0; }
.stepper__dot { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; color: var(--muted); }
.stepper__dot span { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; background: var(--bg-alt); color: var(--muted);
  border: 2px solid var(--line); transition: all .25s ease; }
.stepper__dot em { font-style: normal; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.stepper__dot.is-active span { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.08); }
.stepper__dot.is-active { color: var(--ink); }
.stepper__dot.is-done span { background: var(--ink); color: #fff; border-color: var(--ink); }
.stepper__dot.is-done { cursor: pointer; }

/* Steps */
.step { display: none; }
.step.is-active { display: block; }
.step.slide-in { animation: stepIn .34s cubic-bezier(.4,0,.2,1) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(calc(var(--dir, 1) * 26px)); } to { opacity: 1; transform: none; } }
.step__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }

/* Choice cards */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice { position: relative; display: flex; flex-direction: column; gap: 7px; padding: 18px 18px 16px;
  border: 2px solid var(--line-2); border-radius: var(--radius); cursor: pointer; background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.choice:hover { border-color: var(--line); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice.is-selected { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.choice__head { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .02em; font-weight: 600; font-size: 16px; color: var(--ink); }
.choice__head .ic { color: var(--accent); width: 20px; height: 20px; }
.choice__desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.choice__price { font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: 15px; margin-top: auto; }

.deposit-field { margin-top: 16px; animation: stepIn .3s ease both; }
.deposit-input { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  overflow: hidden; max-width: 220px; }
.deposit-input:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.deposit-input__sign { padding: 0 10px; color: var(--muted); font-weight: 700; background: var(--bg-alt); align-self: stretch; display: flex; align-items: center; }
.deposit-input input { border: 0 !important; box-shadow: none !important; }

.address-fields { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; animation: stepIn .3s ease both; }
.field--zip { max-width: 180px; }
.is-invalid { border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-soft) !important; }

/* Review */
.review { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.review__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 11px 16px;
  border-bottom: 1px solid var(--line); font-size: 14.5px; }
.review__row:nth-child(odd) { background: var(--bg-soft); }
.review__row:last-child { border-bottom: 0; }
.review__row span { color: var(--muted); flex: none; }
.review__row strong { color: var(--ink); text-align: right; }

/* Success */
.order-success { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 30px;
  text-align: center; box-shadow: var(--shadow-sm); }
.order-success__check { width: 84px; height: 84px; margin: 0 auto 18px; }
.order-success__check svg { width: 84px; height: 84px; }
.order-success__check circle { stroke: #0a7d3a; stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: drawCircle .5s ease forwards; }
.order-success__check path { stroke: #0a7d3a; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 48; stroke-dashoffset: 48; animation: drawCheck .35s .45s ease forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.order-success h2 { font-family: var(--font-head); text-transform: uppercase; font-size: 30px; margin-bottom: 6px; }
.order-success__num { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 14px; }
.order-success__num strong { color: var(--accent); font-size: 20px; }
.order-success__msg { color: var(--ink-3); max-width: 520px; margin: 0 auto 26px; line-height: 1.7; }
.next-steps { list-style: none; padding: 0; margin: 0 auto 26px; max-width: 520px; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.next-steps li { display: flex; gap: 14px; align-items: flex-start; }
.next-steps__n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.next-steps strong { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: 15px; }
.next-steps p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.order-success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ───────────── Motion: scroll progress bar ───────────── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 500;
  background: linear-gradient(90deg, var(--accent), #ff5b73); transition: width .1s linear; }

/* ───────────── Motion: hero entrance + sweep ───────────── */
.hero__eyebrow, .hero__title, .hero__sub, .hero__cta, .hero__stats {
  animation: heroRise .7s cubic-bezier(.2,.7,.2,1) both;
}
.hero__title { animation-delay: .08s; }
.hero__sub { animation-delay: .16s; }
.hero__cta { animation-delay: .24s; }
.hero__stats { animation-delay: .32s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.06) 48%, rgba(255,91,115,.10) 50%, transparent 65%);
  background-size: 250% 100%; animation: heroSweep 7s ease-in-out infinite; }
@keyframes heroSweep { 0% { background-position: 140% 0; } 55%,100% { background-position: -40% 0; } }
.hero__cards { transition: transform .2s ease-out; }

/* ───────────── Motion: brand marquee ───────────── */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marqueeScroll 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .brand-pill { flex: none; width: 200px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───────────── Motion: button shine ───────────── */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg); }
.btn-shine:hover::after { animation: shine .8s ease; }
@keyframes shine { from { left: -120%; } to { left: 140%; } }

/* ───────────── Motion: gallery crossfade ───────────── */
.gallery__main img { transition: opacity .28s ease; }
.gallery__main img.is-swapping { opacity: 0; }
.gallery__thumb { transition: border-color .2s ease, transform .2s ease; }
.gallery__thumb.is-active { transform: translateY(-2px); }

/* ───────────── Hero search (cars.com-style) ───────────── */
.hero-search { display: flex; align-items: center; gap: 8px; margin: 26px 0 4px; max-width: 560px;
  background: rgba(255,255,255,.97); border-radius: 999px; padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-lg); animation: heroRise .7s cubic-bezier(.2,.7,.2,1) both; animation-delay: .2s; }
.hero-search__ic { width: 20px; height: 20px; color: var(--muted); flex: none; }
.hero-search__input { flex: 1; border: 0; outline: 0; background: transparent; font-family: var(--font-body);
  font-size: 15.5px; color: var(--ink); padding: 12px 4px; min-width: 0; }
.hero-search__input::placeholder { color: #9aa0aa; }
.hero-search__btn { border-radius: 999px; flex: none; }

/* ───────────── Quick-action tiles (krossmitsubishi-style) ───────────── */
.quick-tiles { background: transparent; }
.quick-tiles__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: -38px; position: relative; z-index: 3; }
.qtile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 22px 22px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 3px solid transparent; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.qtile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--accent); }
.qtile__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: flex;
  align-items: center; justify-content: center; margin-bottom: 8px; }
.qtile__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.qtile__t { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-weight: 600;
  font-size: 16.5px; color: var(--ink); }
.qtile__s { font-size: 13.5px; color: var(--muted); }

/* ───────────── Shop by body type (cars.com-style category cards) ───────────── */
.bodytypes { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.btype { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; box-shadow: var(--shadow-sm); }
.btype:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.btype__art { aspect-ratio: 16 / 10; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 14px; }
.btype__art img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
/* Real photos fill the whole tile edge-to-edge (silhouette fallback keeps padding/contain). */
.btype__art--photo { padding: 0; }
.btype__art--photo img { object-fit: cover; }
.btype:hover .btype__art img { transform: scale(1.06); }
.btype__meta { padding: 12px 16px 14px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.btype__name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-weight: 600; font-size: 17px; color: var(--ink); }
.btype__count { font-size: 12.5px; color: var(--muted); white-space: nowrap; }

/* ───────────── Testimonials carousel (krossmitsubishi-style) ───────────── */
.tcarousel { position: relative; display: flex; align-items: center; gap: 16px; max-width: 920px; margin: 0 auto; }
.tcarousel__viewport { overflow: hidden; flex: 1 1 auto; min-width: 0; width: 100%; border-radius: var(--radius-lg); }
.tcarousel__track { position: relative; width: 100%; }
/* Only the active card is in the layout — it always fills the viewport, so the
   text can never be clipped and no neighbouring card can ever peek in. */
.tcard { display: none; width: 100%; margin: 0; box-sizing: border-box;
  padding: 40px 48px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.tcard.is-active { display: block; animation: tFade .45s ease; }
@keyframes tFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tcard__stars { color: #f5a623; font-size: 20px; letter-spacing: 3px; margin-bottom: 14px; }
.tcard__quote { font-family: var(--font-body); font-size: 20px; line-height: 1.55; color: var(--ink-2);
  margin: 0 auto 20px; max-width: 60ch; font-weight: 500; overflow-wrap: break-word; hyphens: auto; }
.tcard__who { display: flex; flex-direction: column; gap: 2px; }
.tcard__who strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; color: var(--ink); font-size: 15px; }
.tcard__who span { color: var(--accent); font-size: 13.5px; font-weight: 600; }
.tcarousel__arrow { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink-2);
  box-shadow: var(--shadow-sm); transition: all .15s ease; }
.tcarousel__arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.tcarousel__arrow .ic { width: 22px; height: 22px; }
.tcarousel__dots { position: absolute; bottom: -28px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line-2); cursor: pointer; padding: 0; transition: all .2s ease; }
.tdot.is-active { background: var(--accent); transform: scale(1.25); }

/* ───────────── Rotating announce message ───────────── */
.announce__msg { transition: opacity .25s ease; }

/* ═══════════ Reference UI polish + advanced animations ═══════════ */

/* Page preloader (one-time per session) */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.preloader__logo { width: 56px; height: 56px; animation: floatY 1.6s ease-in-out infinite; }
.preloader__word { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: #fff; font-size: 16px; }
.preloader__bar { width: 168px; height: 3px; background: rgba(255,255,255,.16); border-radius: 3px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 42%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), #7fb0ff); animation: loaderBar 1s ease-in-out infinite; }
@keyframes loaderBar { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Image fade-in + skeleton shimmer */
.img-fade { opacity: 0; transition: opacity .55s ease; }
.img-fade.is-loaded { opacity: 1; }
.card__media img.img-fade { transition: transform .4s ease, opacity .55s ease; }
.btype__art { position: relative; }
.btype__art img.img-fade { transition: transform .3s ease, opacity .55s ease; }
.card__media::after, .btype__art::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, var(--bg-alt) 30%, #eceef2 50%, var(--bg-alt) 70%);
  background-size: 220% 100%; animation: shimmer 1.3s linear infinite; }
.card__media.media-loaded::after, .btype__art.media-loaded::after { opacity: 0; animation: none; transition: opacity .35s ease; }
.card__media img, .btype__art img { position: relative; z-index: 1; }
@keyframes shimmer { 0% { background-position: 220% 0; } 100% { background-position: -220% 0; } }

/* 3D tilt cards */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* Card hover "View Details" overlay + monthly payment + CTA glow */
.card__view { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 12px;
  background: linear-gradient(0deg, rgba(16,18,23,.92), rgba(16,18,23,0));
  color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
  font-size: 13.5px; font-weight: 600; transform: translateY(100%); opacity: 0;
  transition: transform .28s ease, opacity .28s ease; pointer-events: none; }
.card:hover .card__view { transform: translateY(0); opacity: 1; }
.card__view .ic { width: 17px; height: 17px; }
.card__pricing { display: flex; flex-direction: column; gap: 1px; }
.card__mo { font-size: 12px; color: var(--muted); font-weight: 600; }
.card__cta { transition: box-shadow .2s ease, transform .15s ease, background .15s ease; }
.card:hover .card__cta { box-shadow: 0 6px 18px rgba(10,168,158,.32); }

/* Microinteractions: heart pop + saved-count bump */
.card__save.pop { animation: heartPop .32s ease; }
@keyframes heartPop { 0% { transform: scale(1); } 40% { transform: scale(1.4); } 70% { transform: scale(.9); } 100% { transform: scale(1); } }
.saved-btn__count.bump { animation: countBump .4s ease; }
@keyframes countBump { 0% { transform: scale(1); } 50% { transform: scale(1.55); } 100% { transform: scale(1); } }

/* Section title accent underline */
.section__title { display: inline-block; }
.section__title::after { content: ""; display: block; width: 52px; height: 3px; margin-top: 13px;
  background: var(--accent); border-radius: 2px; }
.section__head--center .section__title::after { margin-left: auto; margin-right: auto; }

/* Hero mouse spotlight (mouse animation) */
.hero__spot { position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(420px circle at var(--mx, 78%) var(--my, 28%), rgba(255,255,255,.18), transparent 60%);
  transition: background .12s linear; }

/* Background aurora in dark CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 150%; height: 220%; top: -60%; left: -25%; z-index: 0;
  background: radial-gradient(circle at 30% 35%, rgba(23,99,230,.50), transparent 42%),
              radial-gradient(circle at 72% 60%, rgba(60,130,255,.30), transparent 46%);
  filter: blur(26px); animation: aurora 16s ease-in-out infinite alternate; }
.cta-band__inner { position: relative; z-index: 1; }
@keyframes aurora {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(5%,3%) rotate(6deg); }
  100% { transform: translate(-4%,-3%) rotate(-5deg); }
}

/* ═══════════ EchoPark-style shop page ═══════════ */
.shop-hero { background: #fff; border-bottom: 1px solid var(--line); color: var(--ink); padding: 30px 0 26px; }
.shop-hero__eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; font-weight: 600; color: var(--accent); }
.shop-hero__title { font-family: var(--font-head); font-weight: 700; font-size: 34px; margin: 4px 0; letter-spacing: -.01em; color: var(--ink); }
.shop-hero__sub { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.shop-search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 6px 6px 18px; max-width: 720px; box-shadow: var(--shadow-sm); }
.shop-search .ic { width: 20px; height: 20px; color: var(--muted); flex: none; }
.shop-search__input { flex: 1; border: 0; outline: 0; background: transparent; font-family: var(--font-body); font-size: 15.5px; color: var(--ink); padding: 12px 4px; min-width: 0; }
.shop-search .btn { border-radius: 999px; flex: none; }

/* Body-style quick picks */
.bodybar-wrap { background: #fff; border-bottom: 1px solid var(--line); }
.bodybar { display: flex; gap: 12px; padding: 18px 0; overflow-x: auto; scrollbar-width: none; }
.bodybar::-webkit-scrollbar { display: none; }
.bodychip { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2px; width: 118px; padding: 12px 10px; background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.bodychip:hover:not(:disabled) { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.bodychip.is-active { border-color: var(--accent); background: var(--accent-soft); }
.bodychip:disabled { opacity: .4; cursor: not-allowed; }
.bodychip img { width: 78px; height: 44px; object-fit: contain; }
.bodychip__name { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.bodychip__count { font-size: 12px; color: var(--muted); }

/* Faceted filter rail */
.shop .inv { align-items: start; }
.facets { position: sticky; top: calc(var(--nav-h) + 12px); }
.facets__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.facets__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.facets__head h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; }
.facets__clear { font-size: 13px; color: var(--accent); font-weight: 600; }
.facet { border-bottom: 1px solid var(--line); }
.facet:last-of-type { border-bottom: 0; }
.facet__sum { list-style: none; cursor: pointer; padding: 14px 18px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; }
.facet__sum::-webkit-details-marker { display: none; }
.facet__sum::after { content: "⌄"; font-size: 17px; line-height: 1; color: var(--muted); transition: transform .2s ease; margin-top: -4px; }
.facet[open] .facet__sum::after { transform: rotate(180deg); }
.facet__opts { padding: 2px 18px 16px; display: flex; flex-direction: column; gap: 10px; }
.facet__opt { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); cursor: pointer; }
.facet__opt input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--accent); flex: none; cursor: pointer; }
.facet__name { flex: 1; }
.facet__count { font-size: 12px; color: var(--muted); background: var(--bg-alt); border-radius: 999px; padding: 2px 9px; }
.facet__opt.is-off { opacity: .45; }
.facet__price { display: flex; align-items: center; gap: 8px; padding: 2px 18px 16px; }
.facet__price input { width: 100%; padding: 9px 10px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: var(--font-body); }
.facet__dash { color: var(--muted); }
.facet__field { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.facet__field select, .facet__field input { padding: 9px 10px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 400; }

/* Results bar + applied chips */
.results__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.results__count { font-size: 15px; color: var(--ink-2); }
.applied { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; }
.fchip { display: inline-flex; align-items: center; gap: 7px; background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #bcd4fb; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.fchip span { font-size: 16px; line-height: 1; }
.fchip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.applied__clear { font-size: 13px; color: var(--accent); font-weight: 600; margin-left: 4px; }

/* Card photo-count pill */
.card__photos { position: absolute; bottom: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; background: rgba(16,18,23,.72); color: #fff; border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 600; }
.card__photos .ic { width: 14px; height: 14px; }

/* ───────────── Promo / transparent-pricing dashboard ───────────── */
.promo { position: relative; overflow: hidden; color: #fff; padding: 60px 0;
  background: linear-gradient(120deg, #0f4cba 0%, #1763e6 58%, #2f80ff 100%); }
.promo::before { content: ""; position: absolute; width: 130%; height: 200%; top: -50%; right: -20%;
  background: radial-gradient(circle at 70% 40%, rgba(255,255,255,.16), transparent 45%); pointer-events: none; }
.promo__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 48px; align-items: center; }
.promo__eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-size: 12.5px; font-weight: 600; color: #bcd7ff; }
.promo__title { font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1.06;
  letter-spacing: -.02em; margin: 8px 0 14px; max-width: 16ch; }
.promo__sub { color: rgba(255,255,255,.9); font-size: 17px; max-width: 520px; margin: 0 0 24px; }
.promo__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.promo__cta .btn-primary { background: #fff; border-color: #fff; color: var(--accent); }
.promo__cta .btn-primary:hover { background: #e8f0fe; border-color: #e8f0fe; }
.promo__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pstat { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius); padding: 22px 20px; backdrop-filter: blur(6px); }
.pstat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 38px; line-height: 1; }
.pstat__label { display: block; margin-top: 8px; color: rgba(255,255,255,.85); font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em; }

/* ───────────── Responsive ───────────── */
@media (max-width: 1080px) {
  .hero__title { font-size: 60px; }
  .grid--why { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quick-tiles__grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
}
@media (max-width: 900px) {
  .mega, .hide-sm { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; padding: 56px 24px; }
  .hero__overlay { background: linear-gradient(180deg, rgba(5,14,34,.90) 0%, rgba(9,28,68,.80) 60%, rgba(12,46,110,.74) 100%); }
  .hero__title { font-size: 52px; }
  .hero__cards { flex-direction: row; overflow-x: auto; }
  .hero-card { flex: none; width: 240px; }
  .brands__row { grid-template-columns: repeat(2, 1fr); }
  .inv { grid-template-columns: 1fr; }
  .filters, .facets { position: static; }
  .detail, .detail__lower, .order, .fin, .contact, .about-grid { grid-template-columns: 1fr; }
  .order__summary, .calc, .fin__left { position: static; }
  .promo__grid { grid-template-columns: 1fr; gap: 28px; }
  .promo__title { font-size: 32px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .announce__contact { display: none; }
  .hero__title { font-size: 46px; }
  .hero__stats { gap: 22px; }
  .section { padding: 44px 0; }
  .section__title { font-size: 27px; }
  .form__row { grid-template-columns: 1fr; }
  .grid--why { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .feature-list, .detail__highlights { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .choice-grid, .choice-grid--2 { grid-template-columns: 1fr; }
  .stepper__dot em { display: none; }
  .quick-tiles__grid { grid-template-columns: 1fr; }
  .hero-search { flex-wrap: wrap; border-radius: var(--radius); padding: 12px; }
  .hero-search__input { flex: 1 1 100%; padding: 8px 4px; }
  .hero-search__btn { width: 100%; }
  .tcarousel { gap: 0; }
  .tcarousel__arrow { display: none; }   /* dots handle nav on phones; gives the quote full width */
  .tcard { padding: 26px 20px; }
  .tcard__quote { font-size: 16.5px; }
}

/* ───────────── Reduced motion ───────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__particles, .hero::after { display: none; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__cta, .hero__stats, .hero-search { opacity: 1; transform: none; animation: none; }
  .marquee__track { animation: none; }
  .img-fade { opacity: 1 !important; }
  .card__media::after, .btype__art::after, .cta-band::before { display: none !important; }
  .preloader { display: none !important; }
  .order-success__check circle, .order-success__check path { stroke-dashoffset: 0; animation: none; }
}
