/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #050505;
  --dark:       #0d0d0d;
  --dark2:      #111111;
  --dark3:      #181818;
  --dark4:      #212121;
  --dark5:      #2a2a2a;
  --border:     rgba(255,255,255,.07);
  --border2:    rgba(255,255,255,.13);
  --red:        #e01f1f;
  --red-bright: #ff2b2b;
  --red-dim:    rgba(224,31,31,.14);
  --red-border: rgba(224,31,31,.28);
  --white:      #ffffff;
  --off-white:  #e6e6e6;
  --gray:       #808080;
  --gray-lt:    #b0b0b0;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --display:    'Barlow Condensed', 'Inter', sans-serif;
  /* Tighter, premium UI chrome (nav, shop mega lists) */
  --font-nav:   'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  --header-h:   100px;
  --r:          12px;
  --r-sm:       8px;
  /* Light shell (cards keep local styles) */
  --page-bg:    #f4f4f4;
  --page-ink:   #141414;
  --chrome:     #ffffff;
  --border-ui:  rgba(0, 0, 0, 0.1);
  --border-ui2: rgba(0, 0, 0, 0.14);
  /* Scrollbars: thumb + transparent track (Firefox + WebKit) */
  --scrollbar-thumb: var(--red);
  --scrollbar-track: transparent;
  --scrollbar-size: 8px;
}

html { scroll-behavior: smooth; }

/* ─── SCROLLBARS (global — red thumb, no track fill) ───────────────────────── */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--red-bright);
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}
body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--page-ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

#app {
  flex: 1 0 auto;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--red); }

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  font-family: var(--font-nav);
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  /* No drop shadow — avoids a dark halo on the sticky quote bar directly below */
  box-shadow: none;
  transition: transform .3s ease, opacity .3s ease;
}

.site-header.nav-open {
  box-shadow: none;
}
.site-header.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

/* Mobile / touch: keep nav bar in view whenever we’re past the home hero (Safari fixed + scroll quirks). */
@media (max-width: 880px) {
  body:not(:has(#view-landing.active)) .site-header {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

.site-footer.hidden {
  display: none;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
}

@media (min-width: 881px) {
  .header-inner {
    padding: 0 clamp(28px, 4vw, 48px);
    gap: 20px 32px;
  }
}

.header-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  justify-self: end;
}

.header-search-wrap {
  flex: 1 1 200px;
  max-width: 520px;
  min-width: 160px;
}

.header-search-popover {
  position: relative;
  flex: 1 1 220px;
  max-width: 560px;
  min-width: 200px;
}

@media (min-width: 881px) {
  .header-search-wrap--desktop {
    width: 100%;
    max-width: none;
    flex: none;
  }
}

.header-search-wrap--mobile {
  display: none;
}

@media (max-width: 880px) {
  .header-search-wrap--desktop {
    display: none !important;
  }

  .header-nav-search {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .header-search-wrap--mobile {
    display: flex;
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 881px) {
  .header-nav-search {
    display: none !important;
  }

  .header-nav {
    justify-content: center;
  }
}

.search-input--header {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.search-input--header::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.search-input--header:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(224, 31, 31, 0.42);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(224, 31, 31, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.35);
}
.header-search-wrap .search-ico {
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.22s ease, opacity 0.22s ease;
}

.header-search-wrap:focus-within .search-ico {
  color: rgba(255, 200, 200, 0.95);
}

.search-input--header-lg {
  padding: 13px 18px 13px 46px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.header-search-wrap--desktop .search-ico {
  left: 15px;
}

.nav-search-results {
  margin: 0;
  padding: 0 0 12px;
  max-height: min(38vh, 280px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-self: stretch;
}

.header-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 120;
  max-height: min(52vh, 420px);
  padding: 8px 8px 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-search-results[hidden] {
  display: none !important;
}

.nav-search-hint,
.nav-search-empty {
  margin: 0;
  padding: 4px 4px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.nav-search-empty {
  color: rgba(255, 255, 255, 0.42);
}

.nav-search-hit {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 10px 8px;
  margin: 0 0 6px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, box-shadow 0.15s;
}

.nav-search-hit:last-child {
  margin-bottom: 0;
}

.nav-search-hit:hover,
.nav-search-hit:active {
  background: rgba(224, 31, 31, 0.18);
  box-shadow: inset 0 0 0 1px rgba(224, 31, 31, 0.35);
}

.nav-search-hit-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #1a1a1a;
  box-sizing: border-box;
}

img.nav-search-hit-img {
  object-fit: contain;
  object-position: center;
  padding: 4px;
}

span.nav-search-hit-img.nav-search-hit-img--ph {
  display: block;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.nav-search-hit-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.nav-search-hit-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.nav-search-hit-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.nav-search-hit-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--red-bright);
}

@media (max-width: 880px) {
  .header-search-popover {
    flex: none;
    max-width: none;
    min-width: 0;
  }

  .header-nav-search {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px max(16px, env(safe-area-inset-left)) 10px max(16px, env(safe-area-inset-right));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
    gap: 6px;
  }

  /* .header-search-wrap uses flex: 1 1 200px for desktop row — in this column that becomes
     a ~200px-tall flex item and grows, leaving huge empty space above/below the input. */
  .header-nav-search > .header-search-wrap--mobile {
    flex: 0 0 auto;
    flex-basis: auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .header-nav-search .nav-search-results {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    flex: 0 1 auto;
    min-height: 0;
    margin-top: 0;
    /* ~3 hit rows (incl. wrapped titles); rest scrolls — desktop popover unchanged */
    max-height: min(33vh, 240px);
  }

  .header-search-results {
    display: none !important;
  }

  .nav-search-hit {
    box-sizing: border-box;
    max-width: 100%;
  }

  .search-input--header-mobile {
    width: 100%;
    font-size: 16px;
    padding: 14px 16px 14px 46px;
    border-radius: 999px;
  }

  .header-search-wrap--mobile .search-ico {
    left: 14px;
    width: 18px;
    height: 18px;
  }
}

.header-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.site-header .search-input--header {
  font-family: var(--font-nav);
}

/* Logo — full wordmark (Carbon motror.png), desktop + mobile */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  border-radius: 6px;
  transition: opacity 0.22s ease, filter 0.28s ease;
}
.logo:hover {
  filter: brightness(1.06);
}
.logo:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(300px, 42vw);
  object-fit: contain;
  object-position: left center;
}
.logo-fallback-compact {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
}
.logo-fallback-compact[hidden] {
  display: none !important;
}

/* Nav */
.header-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 0;
  justify-self: center;
  min-width: 0;
}

.header-trailing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  transition: background .2s, border-color .2s;
}
.mobile-menu-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}
.mobile-menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform .22s ease, opacity .22s ease;
}
.site-header.nav-open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header.nav-open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 880px) {
  :root {
    /* Fallback until syncHeaderChromeMetrics() runs; tall black nav + padding */
    --header-h: 156px;
  }

  .site-header {
    height: auto;
    min-height: 0;
  }

  .header-inner {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
  }

  .header-left {
    order: 1;
    position: static;
    transform: none;
    z-index: auto;
    /* Share one row with quote + menu: shrink wordmark before wrapping actions */
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    pointer-events: auto;
  }

  .header-left .header-brand,
  .header-left .logo {
    min-width: 0;
  }

  .header-right {
    order: 2;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
    gap: 8px;
    justify-content: flex-end;
    margin-left: auto;
  }

  /* Keep wordmark smaller than the bar — tall padding is breathing room, not logo height */
  .header-left .logo-img {
    height: 44px;
    max-width: min(200px, calc(100vw - 210px));
    width: auto;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-height: 0;
    min-width: 0;
    background: transparent;
    border: none;
    color: #fff;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border: none;
  }

  .header-trailing {
    margin-left: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* Full-bleed panel — zero layout footprint in row; drawer is position:fixed (left/right), not flex width */
  .header-inner > .header-nav {
    order: 4;
    flex: 0 0 0;
    /* Full viewport width (drawer sits in DOM inside max-width inner — force 100vw) */
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: auto;
    box-sizing: border-box;
    padding: 0 0 calc(12px + env(safe-area-inset-bottom));
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #121212;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.22s ease,
      visibility 0.22s ease;
    z-index: 101;
    max-height: min(72vh, calc(100dvh - var(--header-h) - 16px));
    -webkit-overflow-scrolling: touch;
  }

  .site-header.nav-open .header-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .header-nav .nav-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 16px max(20px, env(safe-area-inset-left)) 16px max(20px, env(safe-area-inset-right));
    border-radius: 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav > .nav-link:last-of-type {
    border-bottom: none;
  }

  .header-nav .nav-link:hover,
  .header-nav .nav-link:active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
}

/* Dim page behind mobile menu (sibling after <header>) */
.mobile-nav-backdrop {
  display: none;
}

@media (max-width: 880px) {
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s ease, visibility 0.26s ease;
  }

  .site-header.nav-open + .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 881px) {
  body.mobile-nav-open {
    overflow: auto;
  }
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.nav-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

@media (min-width: 881px) {
  .header-nav > a.nav-link {
    position: relative;
    padding: 12px 16px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .header-nav > a.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transform: scaleX(0.55);
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 2px;
  }

  .header-nav > a.nav-link:hover,
  .header-nav > a.nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    color: #fff;
  }

  .header-nav > a.nav-link:hover::after,
  .header-nav > a.nav-link:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-nav .nav-link--shop-desktop {
    padding: 12px 15px 12px 16px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .header-nav .nav-link--shop-desktop:hover,
  .header-nav .nav-link--shop-desktop:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    color: #fff;
  }

  .header-nav .nav-link:not(.nav-shop-mobile-toggle):hover {
    transform: translateY(-1px);
  }

  .header-nav .nav-link:not(.nav-shop-mobile-toggle):active {
    transform: translateY(0);
  }
}

/* ─── Shop nav + mega menu ─────────────────────────────────────────────────── */
.nav-item--shop {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link--shop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link-chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.22s ease;
}

.nav-item--shop:hover .nav-link-chevron,
.nav-item--shop:focus-within .nav-link-chevron {
  opacity: 0.95;
}

.nav-shop-mobile-toggle {
  display: none;
}

@media (min-width: 881px) {
  .nav-link--shop-desktop {
    position: relative;
  }

  .nav-item--shop::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent
    );
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.2s, transform 0.25s ease;
    pointer-events: none;
    border-radius: 2px;
  }

  .nav-item--shop:hover::after,
  .nav-item--shop:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-item--shop:hover .nav-link-chevron,
  .nav-item--shop:focus-within .nav-link-chevron {
    transform: rotate(180deg);
  }
}

.shop-mega {
  /* Solid panel — no glass / blur or the page shows through (e.g. showroom hero). */
  --mega-border: rgba(255, 255, 255, 0.08);
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--dark);
  border-bottom: 1px solid var(--mega-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-nav);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 881px) {
  /*
   * Mega sits flush under the header (no overlap on nav text). Hover is kept by stretching
   * .nav-item--shop to the full header height and widening its hit box so the path from
   * Shop into the panel stays inside .nav-item--shop.
   */
  .header-nav {
    align-self: stretch;
  }

  .nav-item--shop {
    align-self: stretch;
    padding: 0 12px;
    margin: 0 -8px;
  }

  .shop-mega {
    top: var(--header-h);
    padding-top: 0;
  }

  .nav-item--shop:hover .shop-mega,
  .nav-item--shop:focus-within .shop-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 101;
  }

  /* After choosing a part from the mega menu, force-close even if cursor is still over the panel (:hover would otherwise keep it open). */
  .nav-item--shop.mega-dismissed .shop-mega {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
  }
}

.shop-mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 36px 12px;
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: start;
}

@media (min-width: 881px) and (max-width: 1100px) {
  .shop-mega-product-hero {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

.shop-mega-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 12px 2px;
}

.shop-mega-brandlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 31, 31, 0.35) transparent;
}

.shop-mega-brandlist::-webkit-scrollbar {
  width: 6px;
}
.shop-mega-brandlist::-webkit-scrollbar-thumb {
  background: rgba(224, 31, 31, 0.35);
  border-radius: 3px;
}

.shop-mega-brand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.shop-mega-brand-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.shop-mega-brand-btn.is-active {
  background: rgba(224, 31, 31, 0.12);
  border-color: var(--red-border);
  color: #fff;
}

.shop-mega-brand-btn .shop-mega-go {
  opacity: 0.35;
  font-size: 11px;
  transition: opacity 0.18s, transform 0.18s;
}

.shop-mega-brand-btn.is-active .shop-mega-go,
.shop-mega-brand-btn:hover .shop-mega-go {
  opacity: 0.85;
}

.shop-mega-brand-btn.is-active .shop-mega-go {
  transform: translateX(2px);
}

.shop-mega-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 4px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 4px;
  min-height: 72px;
}

.shop-mega-hero-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
/* Dark-logo brands: invert to white in the shop mega dark panel */
.shop-mega-hero-logo[data-brand="YAMAHA"],
.shop-mega-hero-logo[data-brand="KAWASAKI"],
.shop-mega-hero-logo[data-brand="SUZUKI"] {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.shop-mega-hero-fallback {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(224, 31, 31, 0.15);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.shop-mega-hero-text h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  line-height: 1.05;
}

.shop-mega-models-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 14px 4px 10px;
}

.shop-mega-models-stage,
.shop-mega-products-stage {
  min-width: 0;
}

.shop-mega-products-toolbar {
  margin-bottom: 6px;
}

.shop-mega-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 4px;
  margin: 0 0 4px -4px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: none;
  transition: color 0.18s, background 0.18s;
}

.shop-mega-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.shop-mega-back-ico {
  font-size: 14px;
  opacity: 0.85;
}

.shop-mega-product-hero {
  display: grid;
  grid-template-columns: minmax(100px, 200px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 8px 0 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-mega-ph-visual {
  background: #fff;
  border-radius: var(--r-sm);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.shop-mega-ph-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-mega-ph-fallback {
  width: 100%;
  height: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f2f2f2, #e8e8e8);
}

.shop-mega-ph-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 4px;
}

.shop-mega-ph-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.15;
}

.shop-mega-ph-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.shop-mega-ph-copy {
  min-width: 0;
}

.shop-mega-products-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 12px 4px 10px;
}

.shop-mega-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 2px;
  align-items: start;
  max-height: min(46vh, 400px);
  overflow-y: auto;
  padding: 2px 4px 10px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.shop-mega-products-hint {
  margin: 0;
  padding: 1.25rem 8px;
  text-align: center;
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.shop-mega-product-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 10px 8px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
  overflow-wrap: anywhere;
  box-shadow: inset 0 0 0 1px transparent;
}

.shop-mega-product-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 2px 0 0 0 var(--red);
  transform: translateX(2px);
}

.shop-mega-product-link:active {
  background: rgba(224, 31, 31, 0.14);
  color: var(--red-bright);
}

.shop-mega-product-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .shop-mega-product-link {
    transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }
  .shop-mega-product-link:hover {
    transform: none;
  }
}

.shop-mega-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 14px;
  align-items: start;
  max-height: min(46vh, 400px);
  overflow-y: auto;
  padding: 4px 4px 10px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.shop-mega-model-family {
  min-width: 0;
}

.shop-mega-model-family-name {
  margin: 0 0 6px;
  padding: 0 8px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.shop-mega-model-years {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.shop-mega-model-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 8px;
  border: none;
  border-radius: 4px;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.shop-mega-model-link.shop-mega-model-year-link {
  display: inline-block;
  width: auto;
  padding: 5px 8px;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.shop-mega-model-link.shop-mega-model-year-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.shop-mega-model-link.shop-mega-model-year-link:active {
  background: rgba(224, 31, 31, 0.15);
  color: var(--red-bright);
}

.shop-mega-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  padding: 8px 0;
  transition: color 0.18s, gap 0.18s;
}

.shop-mega-all:hover {
  color: #fff;
  gap: 12px;
}

/* Mobile shop accordion (inside slide-down nav) */
@media (max-width: 880px) {
  .nav-link--shop-desktop,
  .shop-mega {
    display: none !important;
  }

  .nav-shop-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 16px max(20px, env(safe-area-inset-left)) 16px max(20px, env(safe-area-inset-right));
    border-radius: 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    transition: background 0.18s;
  }

  .nav-shop-mobile-toggle:hover,
  .nav-shop-mobile-toggle:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-shop-mobile-toggle[aria-expanded="true"] .nav-shop-mobile-chevron {
    transform: rotate(180deg);
  }

  .nav-item--shop {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-shop-mobile-tree {
    width: 100%;
    background: rgba(0, 0, 0, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-shop-mobile-tree[hidden] {
    display: none !important;
  }

  .nav-shop-mobile-brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-shop-mobile-brand-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px max(24px, env(safe-area-inset-left)) 13px max(28px, env(safe-area-inset-right));
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: none;
    text-align: left;
    transition: background 0.15s;
  }

  .nav-shop-mobile-brand-toggle:hover,
  .nav-shop-mobile-brand-toggle:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-shop-mobile-brand-toggle .chev {
    opacity: 0.45;
    transition: transform 0.2s;
  }

  .nav-shop-mobile-brand-toggle[aria-expanded="true"] .chev {
    transform: rotate(90deg);
  }

  /* Shop → Brand → Model family → year row (tap year → main shop products view). */
  .nav-shop-mobile-families {
    padding: 0 0 6px;
    background: rgba(0, 0, 0, 0.2);
  }

  .nav-shop-mobile-families[hidden] {
    display: none !important;
  }

  .nav-shop-mobile-family {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-shop-mobile-family-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 10px max(28px, env(safe-area-inset-left)) 10px max(28px, env(safe-area-inset-right));
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: none;
    text-align: left;
    transition: background 0.15s;
  }

  .nav-shop-mobile-family-btn:hover,
  .nav-shop-mobile-family-btn:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-shop-mobile-family-btn .chev {
    margin-left: auto;
    opacity: 0.45;
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .nav-shop-mobile-family-btn[aria-expanded="true"] .chev {
    transform: rotate(90deg);
  }

  .nav-shop-mobile-family-name {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
  }

  .nav-shop-mobile-years {
    background: rgba(0, 0, 0, 0.12);
  }

  .nav-shop-mobile-years[hidden] {
    display: none !important;
  }

  .nav-shop-mobile-year-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-shop-mobile-year-btn {
    display: block;
    width: 100%;
    padding: 10px max(36px, env(safe-area-inset-left)) 10px max(40px, env(safe-area-inset-right));
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: none;
    text-align: left;
    transition: background 0.15s;
  }

  .nav-shop-mobile-year-btn:hover,
  .nav-shop-mobile-year-btn:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-shop-mobile-year-label {
    letter-spacing: 0.03em;
  }
}

/* Mobile header polish — brand accent, fused actions, richer drawer (≤880px) */
@media (max-width: 880px) {
  .site-header {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
    box-shadow: inset 0 1px 0 rgba(224, 31, 31, 0.28);
  }

  .header-inner {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  /* Quote: flush with nav (no grey chip), square corners; badge = white disc */
  .site-header .quote-toggle-btn {
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: 56px;
  }
  .site-header .quote-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    box-shadow: none;
    transform: none;
  }
  .site-header .quote-toggle-btn:hover svg {
    transform: none;
  }
  .site-header .quote-toggle-btn:active {
    transform: scale(0.98);
    box-shadow: none;
  }
  .site-header .quote-toggle-btn .quote-badge {
    background: #fff;
    color: var(--red);
    border-radius: 999px;
    min-width: 22px;
    height: 22px;
    font-weight: 800;
    font-size: 11px;
  }

  .site-header.nav-open .mobile-menu-btn {
    background: rgba(224, 31, 31, 0.22);
    border: none;
    color: #fff;
  }

  .site-header .header-nav {
    background: #131313;
    border-top: 1px solid rgba(224, 31, 31, 0.45);
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.65);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .header-nav-search {
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header .search-input--header-mobile {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-header .search-input--header-mobile:focus {
    border-color: rgba(224, 31, 31, 0.5);
    background: rgba(255, 255, 255, 0.11);
  }

  .site-header .header-nav > a.nav-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: max(22px, env(safe-area-inset-left));
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .site-header .header-nav > a.nav-link:hover,
  .site-header .header-nav > a.nav-link:active {
    background: rgba(255, 255, 255, 0.045);
    border-left-color: var(--red);
    color: #fff;
  }

  .site-header .nav-shop-mobile-toggle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: max(22px, env(safe-area-inset-left));
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .site-header .nav-shop-mobile-toggle:hover,
  .site-header .nav-shop-mobile-toggle:active {
    background: rgba(255, 255, 255, 0.045);
    border-left-color: var(--red);
  }

  .site-header .nav-shop-mobile-tree {
    background: rgba(0, 0, 0, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 880px) and (prefers-reduced-motion: reduce) {
  .quote-toggle-btn:active {
    transform: none;
  }
}

/* Quote button — square corners (header + products bar inherit) */
.quote-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 12px;
  min-height: 44px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.18s ease,
    color 0.2s ease;
}
.quote-toggle-btn svg {
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.22s ease;
}
.quote-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(224, 31, 31, 0.45);
  color: #fff;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(224, 31, 31, 0.12);
  transform: translateY(-1px);
}
.quote-toggle-btn:hover svg {
  opacity: 1;
  transform: scale(1.04);
}
.quote-toggle-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}
.quote-toggle-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.quote-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: none;
}

/* Desktop header quote — same look as mobile (icon + Quote + white disc / red count) */
@media (min-width: 881px) {
  .site-header .quote-toggle-btn {
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: 48px;
    padding: 0 14px 0 11px;
  }
  .site-header .quote-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    box-shadow: none;
    transform: none;
  }
  .site-header .quote-toggle-btn:hover svg {
    transform: none;
  }
  .site-header .quote-toggle-btn:active {
    transform: scale(0.98);
    box-shadow: none;
  }
  .site-header .quote-toggle-btn .quote-badge {
    background: #fff;
    color: var(--red);
    border-radius: 999px;
    min-width: 22px;
    height: 22px;
    font-weight: 800;
    font-size: 11px;
  }
}

/* ─── VIEWS & TRANSITIONS ────────────────────────────────────────────────────── */
.view {
  display: none !important;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(14px);
}
.view.active {
  display: block !important;
  animation: viewIn .38s cubic-bezier(.4, 0, .2, 1) forwards;
}
#view-landing.active {
  display: flex !important;
}
.view.exiting {
  display: block !important;
  animation: viewOut .22s cubic-bezier(.4, 0, .2, 1) forwards;
  pointer-events: none;
}
#view-landing.exiting { display: flex !important; }

@keyframes viewIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes viewOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

#view-brands.brands-view {
  background: #f0f0f0;
}

/* Shop: quote bar sits in flow above #app when items in quote — use modest slack when bar is hidden */
#view-brands, #view-models, #view-products {
  padding-top: var(--header-h);
  padding-bottom: 64px;
}

/* Same header slack as shop views — avoids a tall empty band on About / FAQ / Contact */
#view-home,
#view-reviews,
#view-about, #view-faq, #view-contact, #view-privacy, #view-terms {
  padding-top: var(--header-h);
  padding-bottom: 80px;
}
#view-home {
  padding-bottom: 0;
}

/*
 * Quote banner uses margin-top: calc(header + …) so it clears the fixed header in flow.
 * Keep modest padding here (only gap below the bar → breadcrumbs) to avoid huge layout jumps
 * when the bar appears while a product modal is open on mobile.
 */
body.sticky-quote-visible #view-models,
body.sticky-quote-visible #view-products {
  padding-top: 28px;
}

/* Home (post-portal): editorial intro, full-bleed reels, voices */
.home-wrap {
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}
@media (min-width: 881px) {
  .home-wrap {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }
}
.home-intro {
  padding: 8px 0 44px;
  max-width: 68ch;
}
.home-kicker {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.52 0.02 280);
  margin: 0 0 16px;
}
.home-display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2.05rem, 4.2vw + 0.6rem, 3.35rem);
  color: oklch(0.18 0.02 280);
  margin: 0 0 22px;
}
.home-display-line {
  display: block;
}
.home-display-line--accent {
  color: oklch(0.48 0.2 25);
  margin-top: 0.06em;
}
.home-intro-lead {
  font-size: clamp(15px, 1.1vw + 13px, 18px);
  line-height: 1.65;
  color: oklch(0.38 0.02 280);
  margin: 0 0 28px;
  max-width: 60ch;
}
.home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 22px;
}
.home-cta-primary {
  letter-spacing: 0.05em;
}
.home-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  border: 1px solid oklch(0.78 0.02 280);
  background: oklch(0.995 0.003 280);
  color: oklch(0.22 0.03 280);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-cta-ghost:hover {
  border-color: oklch(0.55 0.16 25);
  background: oklch(0.99 0.01 25);
  color: oklch(0.42 0.15 25);
}
.home-scale-line {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.55 0.02 280);
}
.home-trust-strip {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 58ch;
}
.home-trust-strip li {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid oklch(0.88 0.02 280);
  background: oklch(0.995 0.004 280);
  color: oklch(0.41 0.02 280);
}
.home-block {
  margin: 52px 0;
}
.home-block--lift {
  margin-top: 8px;
}
.home-block--bleed-soft {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  padding: 44px 0 48px;
  background: oklch(0.983 0.006 280);
  border-top: 1px solid oklch(0.9 0.01 280);
  border-bottom: 1px solid oklch(0.9 0.01 280);
}
.home-block-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: max(20px, env(safe-area-inset-left)) max(20px, env(safe-area-inset-right));
}
@media (min-width: 881px) {
  .home-block-inner {
    padding-inline: max(36px, env(safe-area-inset-left)) max(36px, env(safe-area-inset-right));
  }
}
.home-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 26px;
}
.home-block-head-text {
  flex: 1;
  min-width: min(100%, 240px);
}
.home-block-dek {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.58;
  color: oklch(0.42 0.02 280);
  max-width: 62ch;
}
.home-forward {
  font: inherit;
  border: none;
  background: none;
  padding: 10px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.43 0.18 25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-forward:hover {
  color: oklch(0.36 0.22 25);
}
.home-forward-ico {
  font-weight: 800;
}
/* ── Manufacturer tiles — premium dark strip ──────────────────────────── */
.home-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  width: 100%;
  border: none;
  background: transparent;
  justify-items: center;
  align-items: start;
}
/* Last tile centred when it's alone in its row (mobile 2-col = 7th item) */
.home-brand-tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .home-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* with 4 cols, 7 tiles: last 3 fill row fine — kill odd centring above 560 */
  .home-brand-tile:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 720px) {
  .home-brands-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 24px 10px;
  }
}
.home-brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 8px 6px 4px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  font: inherit;
  color: #111;
  position: relative;
  overflow: visible;
  transition: border-color 0.2s ease;
}
.home-brand-tile:hover,
.home-brand-tile:focus-visible {
  background: transparent;
}
.home-brand-tile:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 2px;
}
.home-brand-tile-logo {
  width: 112px;
  height: 112px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.home-brand-tile:hover .home-brand-tile-logo,
.home-brand-tile:focus-visible .home-brand-tile-logo {
  border-color: var(--red);
}
.home-brand-tile-logo img {
  max-height: 76px;
  max-width: 92px;
  width: auto;
  object-fit: contain;
}
/* Yamaha, Kawasaki, Suzuki logos are naturally dark — show as-is on the light section */
.home-brand-tile[data-brand="YAMAHA"] .home-brand-tile-logo img,
.home-brand-tile[data-brand="KAWASAKI"] .home-brand-tile-logo img,
.home-brand-tile[data-brand="SUZUKI"] .home-brand-tile-logo img {
  max-height: 80px;
  max-width: 98px;
}
.home-brand-tile-fallback {
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
}
.home-brand-tile-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
  white-space: nowrap;
}
.home-brand-tile-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0;
  line-height: 1.3;
}
.home-brand-tile-stats span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
}
.home-brand-tile-stats--muted {
  color: rgba(0, 0, 0, 0.25);
}
.home-brand-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  flex-shrink: 0;
}
.home-brand-tile-arrow {
  display: none;
  font-size: 13px;
  color: var(--red);
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.home-brand-tile:hover .home-brand-tile-arrow,
.home-brand-tile:focus-visible .home-brand-tile-arrow {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
/* ── Featured bikes — clean 5-card row ──────────────────────────── */
.home-featured-bikes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  /* Pull the grid flush with the section edges, past the section's horizontal padding */
  margin-left: calc(-1 * max(20px, env(safe-area-inset-left)));
  margin-right: calc(-1 * max(20px, env(safe-area-inset-right)));
}
#view-home .hx-section--featured {
  position: relative;
}
.home-featured-scroll-cues {
  display: none;
}
.home-featured-scroll-progress {
  display: none;
}
@media (max-width: 880px) {
  #view-home .hx-section--featured {
    overflow-x: clip;
  }

  #view-home .home-featured-scroll-cues {
    display: block;
    pointer-events: none;
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    z-index: 3;
  }

  #view-home .home-featured-scroll-cue {
    position: absolute;
    top: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    transform: none;
    transition: opacity 0.22s ease;
    pointer-events: auto;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  #view-home .home-featured-scroll-cue--left {
    left: 10px;
  }

  #view-home .home-featured-scroll-cue--right {
    right: 10px;
  }

  #view-home .hx-section--featured.home-featured-can-left .home-featured-scroll-cue--left {
    opacity: 1;
  }

  #view-home .hx-section--featured.home-featured-can-right .home-featured-scroll-cue--right {
    opacity: 1;
  }

  #view-home .home-featured-scroll-cue:disabled {
    opacity: 0;
    cursor: default;
  }

  #view-home .home-featured-scroll-progress {
    display: block;
    width: min(190px, 62vw);
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
  }

  #view-home .home-featured-scroll-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: var(--red);
    transition: transform 0.18s ease-out;
  }

  .home-featured-bikes {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.06);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    scrollbar-width: none;
  }

  .home-featured-bikes::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .home-featured-bikes .home-bike-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
@media (min-width: 680px) {
  .home-featured-bikes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 881px) {
  .home-featured-bikes {
    width: calc(100dvw + 2px);
    margin-left: calc(50% - 50dvw - 1px);
    margin-right: calc(50% - 50dvw - 1px);
  }
}
@media (min-width: 960px) {
  .home-featured-bikes {
    grid-template-columns: repeat(5, 1fr);
  }
}
.home-bike-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #111;
  cursor: pointer;
  font: inherit;
  color: #fff;
  text-align: left;
  overflow: hidden;
  transition: background 0.2s ease;
  position: relative;
}
.home-bike-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-bike-card:hover,
.home-bike-card:focus-visible {
  background: #1a1a1a;
}
.home-bike-card:hover::after,
.home-bike-card:focus-visible::after {
  transform: scaleX(1);
}
.home-bike-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.home-bike-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  overflow: hidden;
}
.home-bike-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-bike-card:hover .home-bike-img {
  transform: scale(1.04);
}
.home-bike-img-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.home-bike-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px 16px;
}
.home-bike-brand {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.home-bike-model {
  font-family: var(--display);
  font-size: clamp(14px, 1.2vw + 10px, 17px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}
.home-bike-part {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-bike-arrow {
  margin-top: 8px;
  font-size: 13px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s, transform 0.18s;
  align-self: flex-start;
}
.home-bike-card:hover .home-bike-arrow,
.home-bike-card:focus-visible .home-bike-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* ── Old .home-fit-grid (still referenced by other parts of the codebase) ─── */
.home-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}
@media (min-width: 720px) {
  .home-fit-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .home-fit--c12 {
    grid-column: span 12;
  }
  .home-fit--c6 {
    grid-column: span 6;
  }
  .home-fit--c4 {
    grid-column: span 4;
  }
}
.home-fit-empty {
  margin: 0;
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: var(--r);
  border: 1px dashed oklch(0.82 0.015 280);
  background: oklch(0.99 0.004 280);
  font-size: 14px;
  color: oklch(0.42 0.02 280);
  font-weight: 600;
}
.home-fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 1px solid oklch(0.9 0.01 280);
  border-radius: calc(var(--r) + 2px);
  background: oklch(0.997 0.003 280);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 900px) {
  .home-fit--c12 {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
  }
}
.home-fit:hover,
.home-fit:focus-visible {
  border-color: oklch(0.72 0.05 280);
  transform: translateY(-3px);
}
.home-fit:focus-visible {
  outline: 2px solid oklch(0.52 0.19 25);
  outline-offset: 2px;
}
.home-fit-img-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 132px;
  max-height: 190px;
  padding: 12px 14px;
  box-sizing: border-box;
  background: oklch(0.95 0.006 280);
}
@media (min-width: 900px) {
  .home-fit--c12 .home-fit-img-shell {
    min-height: 150px;
    max-height: 210px;
    align-self: center;
  }
}
.home-fit-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.home-fit-img-ph {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -20deg,
    oklch(0.93 0.01 280) 0 8px,
    oklch(0.89 0.01 280) 8px 16px
  );
}
.home-fit-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 16px 16px;
}
@media (min-width: 900px) {
  .home-fit-body {
    padding: 22px 20px 22px 0;
  }
  .home-fit--c12 .home-fit-body {
    padding: 26px 24px 26px 0;
  }
  .home-fit:not(.home-fit--c12) .home-fit-body {
    padding: 0 14px 16px;
  }
}
.home-fit-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.5);
}
.home-fit-title {
  font-family: var(--display);
  font-size: clamp(14px, 1vw + 12px, 17px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141414;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-fit-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(20, 20, 20, 0.62);
}
.home-fit-price {
  margin-top: 4px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(15px, 1vw + 12px, 18px);
  color: oklch(0.47 0.19 25);
}
.home-flow-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vw, 40px);
  max-width: 72ch;
}
.home-flow-li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
}
@media (max-width: 520px) {
  .home-flow-li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.home-flow-n {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: oklch(0.55 0.2 25);
}
.home-flow-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: oklch(0.21 0.02 280);
}
.home-flow-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.64;
  color: oklch(0.38 0.02 280);
}
.home-standards {
  margin: 48px auto 0;
  padding: 24px max(24px, 4vw);
  border-radius: var(--r);
  background: oklch(0.23 0.02 280);
  color: oklch(0.92 0.02 280);
  font-size: clamp(13px, 0.85vw + 11px, 15px);
  line-height: 1.72;
  text-align: center;
  letter-spacing: 0.02em;
  max-width: 62rem;
}
.home-h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.2vw + 0.85rem, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: oklch(0.19 0.02 280);
}
.home-strip {
  position: relative;
  margin: 20px calc(50% - 50vw) 32px;
  width: 100vw;
  padding: 40px 0 28px;
  background: oklch(0.975 0.006 280);
  border-top: 1px solid oklch(0.9 0.01 280);
  border-bottom: 1px solid oklch(0.9 0.01 280);
}
.home-strip-copy {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left)) 20px max(20px, env(safe-area-inset-right));
}
@media (min-width: 881px) {
  .home-strip-copy {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }
}
.home-strip-meta {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.5 0.02 280);
}
.home-reels {
  display: flex;
  gap: clamp(10px, 2vw, 18px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, env(safe-area-inset-left));
  padding: 4px max(20px, env(safe-area-inset-left)) 16px max(20px, env(safe-area-inset-right));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
#view-home section[aria-labelledby="hx-reels-h"] {
  background: #fff;
}
@media (min-width: 881px) {
  #view-home section[aria-labelledby="hx-reels-h"],
  #view-home .hx-whatsapp-proof {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  #view-home section[aria-labelledby="hx-reels-h"] .hx-section-head,
  #view-home .hx-whatsapp-proof .hx-section-head {
    justify-content: center;
    text-align: center;
  }

  #view-home section[aria-labelledby="hx-reels-h"] .hx-section-head > div,
  #view-home .hx-whatsapp-proof .hx-section-head > div {
    margin-left: auto;
    margin-right: auto;
  }

  #view-home section[aria-labelledby="hx-reels-h"] .hx-dek,
  #view-home .hx-whatsapp-proof .hx-dek {
    margin-left: auto;
    margin-right: auto;
  }

  .home-reels {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
    scroll-padding-inline: max(36px, env(safe-area-inset-left));
    overscroll-behavior-x: contain;
    scrollbar-color: rgba(224, 31, 31, 0.95) rgba(255, 255, 255, 0.16);
    cursor: grab;
  }
  .home-reels.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }
  .home-reels::-webkit-scrollbar {
    height: 10px;
  }
  .home-reels::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.16);
  }
  .home-reels::-webkit-scrollbar-thumb {
    background: rgba(224, 31, 31, 0.95);
    border-radius: 999px;
  }
}
@media (max-width: 880px) {
  #view-home section[aria-labelledby="hx-reels-h"],
  #view-home section[aria-labelledby="hx-reels-h"] .hx-section-head,
  #view-home section[aria-labelledby="hx-reels-h"] .home-reels {
    background: #fff;
  }
}
.home-reel {
  flex: 0 0 auto;
  margin: 0;
  width: min(220px, 38vw);
  scroll-snap-align: start;
}
.home-reel-chrome {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.home-reel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-reel-label {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.45 0.02 280);
}
.home-strip-hint {
  margin: 14px 0 0 max(20px, env(safe-area-inset-left));
  font-size: 12px;
  color: oklch(0.55 0.02 280);
}
@media (min-width: 881px) {
  .home-strip-hint {
    margin-left: max(36px, env(safe-area-inset-left));
    display: none;
  }
}
.home-voices {
  padding: 52px 0 40px;
}
.home-voices-head {
  max-width: 48ch;
  margin-bottom: 34px;
}
.home-voices-dek {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: oklch(0.42 0.02 280);
}
.home-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 32px);
}
@media (min-width: 720px) {
  .home-review-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 28px;
    align-items: start;
  }
  .home-review:nth-child(1) {
    grid-column: span 3;
  }
  .home-review:nth-child(2) {
    grid-column: span 3;
  }
  .home-review--span {
    grid-column: 1 / -1;
  }
  .home-review:nth-child(4) {
    grid-column: span 3;
  }
  .home-review:nth-child(5) {
    grid-column: span 3;
  }
}
.home-review {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid oklch(0.88 0.01 280);
}
@media (min-width: 720px) {
  .home-review {
    padding-bottom: 0;
    border-bottom: none;
  }
  .home-review--span {
    padding: 28px 26px 30px;
    background: oklch(0.985 0.005 280);
    border: 1px solid oklch(0.91 0.01 280);
    border-radius: var(--r);
  }
}
.home-review-quote {
  margin: 0 0 14px;
  padding: 0;
  font-family: var(--font);
  font-size: clamp(15px, 1vw + 13px, 17px);
  font-weight: 450;
  line-height: 1.62;
  color: oklch(0.29 0.02 280);
  quotes: '"' '"' ''' ''';
}
.home-review-quote::before {
  content: open-quote;
}
.home-review-quote::after {
  content: close-quote;
}
.home-review-quote--loud {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(17px, 1.2vw + 14px, 22px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: oklch(0.2 0.02 280);
}
.home-review-quote--loud::before,
.home-review-quote--loud::after {
  content: '';
}
.home-review-score {
  margin-bottom: 10px;
}
.home-review-glyphs {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: oklch(0.58 0.12 75);
}
.home-review-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: oklch(0.5 0.02 280);
}
.home-floor {
  padding: 48px 0 8px;
}
.home-floor-rule {
  height: 1px;
  margin: 0 0 36px;
  background: oklch(0.86 0.01 280);
  border: 0;
}
.home-floor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

@media (prefers-reduced-motion: reduce) {
  .home-reel-media {
    transition: none;
  }
}

/* Let catalog pages end closer to footer/card without forced empty viewport fill. */
#view-models,
#view-products {
  min-height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── STATIC PAGES (About, FAQ, Contact) ───────────────────────────────────── */
.static-page {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.faq-page.static-page,
.about-page.static-page,
.contact-page.static-page {
  max-width: min(1080px, 100%);
}
.static-page-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--page-ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.about-header {
  margin-bottom: 8px;
}
.about-tagline {
  color: #777;
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.45;
}
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 8px;
}
.about-prose.static-page-body {
  margin: 0;
}
.about-aside {
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(165deg, #fff 0%, #fafafa 100%);
  padding: 22px 22px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.about-aside-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}
.about-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.about-pillar-label {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.02em;
}
.about-pillar-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
@media (min-width: 720px) {
  .about-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
  }
}
@media (min-width: 900px) {
  .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px 40px;
    align-items: start;
  }
  .about-aside {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }
}
.static-page-body {
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}
.static-page-body p {
  margin-bottom: 1.1em;
}
.static-page-subtitle {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--page-ink);
  margin: 28px 0 14px;
}
.about-contact-hint {
  margin-top: 1.75em;
  padding-top: 1.25em;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #555;
  font-size: 15px;
}
.about-contact-hint .bc-link {
  font-weight: 600;
}
.faq-intro {
  color: #666;
  font-size: 15px;
  margin: -8px 0 24px;
  line-height: 1.5;
  max-width: 62ch;
}
.faq-list {
  display: block;
  width: 100%;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.faq-grid-divider {
  display: none;
  width: 1px;
  margin: 4px 0;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 15%,
    rgba(0, 0, 0, 0.1) 85%,
    transparent 100%
  );
}
@media (min-width: 900px) {
  .faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 0 32px;
    align-items: start;
  }
  .faq-grid-divider {
    display: block;
    align-self: stretch;
    min-height: 200px;
    margin: 0;
  }
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r-sm);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.faq-item[open] {
  border-color: rgba(224, 31, 31, 0.25);
}
.faq-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--page-ink);
  padding: 14px 44px 14px 16px;
  position: relative;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq-body {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  margin-top: 0;
}
.faq-cta {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}
.faq-cta-heading {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--page-ink);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.faq-cta-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.btn-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  border: none;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
}
.btn-contact-cta:hover {
  background: #c41a1a;
  color: #fff;
}
.btn-contact-cta:active {
  transform: scale(0.98);
}

/* Contact page */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}
.contact-intro-col .static-page-title {
  margin-bottom: 10px;
}
.contact-lead {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 52ch;
}
.contact-highlight {
  padding: 22px 24px;
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #fff, #f7f7f7);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}
.contact-highlight .contact-card-title {
  margin-bottom: 8px;
}
.contact-quick-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  max-width: 40ch;
}
.contact-card {
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-card-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 10px;
}
.contact-card-title--panel {
  margin-top: 0;
  margin-bottom: 8px;
}
.contact-panel-lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
}
.contact-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--page-ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  transition: color 0.2s;
}
@media (min-width: 880px) {
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px 44px;
    align-items: start;
  }
  .contact-page .contact-card {
    position: relative;
    padding-left: 36px;
  }
  .contact-page .contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 12%,
      rgba(0, 0, 0, 0.12) 88%,
      transparent 100%
    );
  }
}
.contact-phone:hover {
  color: var(--red);
}
.btn-whatsapp--contact {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
}
.contact-card-title--divider {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-card-title--msg {
  margin-bottom: 10px;
}
.contact-quote-block {
  margin-top: 4px;
}
.contact-include-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.45;
  color: var(--page-ink);
}
.contact-include-quote input {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--red, #e01f1f);
}
.contact-include-quote span {
  flex: 1;
  min-width: 0;
}
.contact-quote-details {
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}
.contact-quote-details[hidden] {
  display: none !important;
}
.contact-quote-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--page-ink);
  user-select: none;
}
.contact-quote-summary-text {
  flex: 1;
  min-width: 0;
}
.contact-quote-summary::-webkit-details-marker {
  display: none;
}
.contact-quote-summary::before {
  content: '';
  display: block;
  width: 0.55em;
  height: 0.55em;
  margin-right: 10px;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  align-self: center;
}
.contact-quote-details[open] .contact-quote-summary::before {
  transform: rotate(45deg);
}
.contact-quote-details-body {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-quote-hint {
  margin: 10px 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}
.contact-quote-preview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-quote-group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-quote-group-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  padding: 2px 0 0;
}

.contact-quote-group-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-quote-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.contact-quote-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #eee;
}
.contact-quote-thumb--ph {
  background: linear-gradient(135deg, #e8e8e8, #ddd);
}
.contact-quote-item-body {
  min-width: 0;
  flex: 1;
}
.contact-quote-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--page-ink);
}
.contact-quote-item-meta {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--border-ui2);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--page-ink);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-textarea::placeholder {
  color: #999;
}
.contact-textarea:focus {
  border-color: rgba(224, 31, 31, 0.45);
  box-shadow: 0 0 0 3px rgba(224, 31, 31, 0.12);
}

/* ─── STICKY QUOTE BAR ───────────────────────────────────────────────────────── */
/* Reserve space under the fixed header outside the white bar (margin on sticky was flex-unfriendly). */
.sticky-quote-sentinel {
  display: none;
  flex: 0 0 auto;
  width: 100%;
  height: 0;
  pointer-events: none;
}
body.sticky-quote-visible .sticky-quote-sentinel {
  display: block;
  /* Match fixed header height only — extra slack was read as a “gap” under the nav */
  height: var(--header-h);
}
/* Safety guard: never show top quote chrome outside product/model pages on desktop. */
body:not([data-view="models"]):not([data-view="products"]) .sticky-quote-sentinel {
  display: none !important;
  height: 0 !important;
}
body:not([data-view="models"]):not([data-view="products"]) .sticky-quote-bar {
  display: none !important;
}
.sticky-quote-bar {
  display: none;
  position: sticky;
  top: var(--header-h);
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 0 0 auto;
  z-index: 90;
  background: #ffffff;
  border: 1px solid var(--red);
  border-radius: 0;
  padding: 8px max(18px, env(safe-area-inset-left)) 8px max(18px, env(safe-area-inset-right));
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .22s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.sticky-quote-bar.visible {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  opacity: 1;
}
/* Single flex row: stops global .sqb-total-block { margin-left: auto } from parking content on the right */
.sticky-quote-bar .sqb-cluster {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  max-width: 100%;
}
@media (min-width: 881px) {
  .sticky-quote-bar .sqb-cluster {
    flex-wrap: nowrap;
  }
}
.sticky-quote-bar .sqb-items {
  flex: 0 1 auto !important;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
.sticky-quote-bar .sqb-total-block {
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex: 0 0 auto;
  align-items: center !important;
  text-align: center;
}
.sticky-quote-bar .sqb-actions {
  flex: 0 0 auto;
  margin-left: 0 !important;
}
/* SR-only label: absolute + sticky created huge empty bands in some engines */
.sticky-quote-bar .sqb-label.visually-hidden {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
/* Number only: red circle, white type (.sqb-label is visually-hidden for SR) */
.sticky-quote-bar .sqb-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.sticky-quote-bar .sqb-total {
  color: #111;
}
.sticky-quote-bar .sqb-total--muted {
  color: #444;
}
.sticky-quote-bar .sqb-total-sub {
  color: #666;
}
.sticky-quote-bar .sqb-thumb-wrap {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sticky-quote-bar .sqb-btn-view {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #1a1a1a;
}
.sticky-quote-bar .sqb-btn-view:hover {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.22);
}

.footer-quote-bar {
  display: none;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 10px;
  padding: 0 22px;
  background: transparent;
}

.footer-quote-bar-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "items actions"
    "total actions";
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--border-ui2);
  border-radius: var(--r-sm);
  box-shadow: none;
}

.footer-quote-bar[hidden] {
  display: none !important;
}

#footer-quote-bar .sqb-items { grid-area: items; gap: 10px; flex-wrap: wrap; }
#footer-quote-bar .sqb-preview { justify-content: flex-start; }
#footer-quote-bar .sqb-total {
  grid-area: total;
  justify-self: start;
  margin-left: 0;
  font-size: 22px;
}
#footer-quote-bar .sqb-actions { grid-area: actions; align-self: stretch; }
#footer-quote-bar .sqb-count { min-width: 34px; height: 34px; border-radius: 4px; font-size: 16px; }
#footer-quote-bar .sqb-label { font-size: 15px; font-weight: 700; color: #202020; }
#footer-quote-bar .sqb-thumb { width: 34px; height: 34px; border-radius: 4px; }
#footer-quote-bar .sqb-btn-view,
#footer-quote-bar .sqb-btn-enquire { min-height: 42px; padding: 10px 16px; font-size: 13px; }

.sticky-enquire-empty {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 4px 22px 10px;
}

.sticky-enquire-empty[hidden] {
  display: none !important;
}

.sticky-enquire-empty-btn {
  width: 100%;
  border-radius: 12px;
}

body.quote-empty-cta .view.active {
  padding-bottom: 32px !important;
}

.sqb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.sqb-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  padding: 0 8px;
  flex-shrink: 0;
}
.sqb-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.sqb-total-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
  text-align: right;
}
.sqb-total {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--page-ink);
  white-space: nowrap;
  line-height: 1.1;
}
.sqb-total--muted {
  font-size: 17px;
  font-weight: 700;
  color: #444;
}
.sqb-total-sub {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: #666;
  line-height: 1.2;
  max-width: 160px;
}
.sqb-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sqb-thumb-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
}
.sqb-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  border: none;
  margin: 0;
  display: block;
  flex-shrink: 0;
}
.sqb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sqb-btn-view {
  padding: 10px 18px;
  background: #f0f0f0;
  border: 1px solid var(--border-ui2);
  border-radius: var(--r-sm);
  color: var(--page-ink);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.sqb-btn-view:hover { background: #e6e6e6; border-color: rgba(0,0,0,.2); }
.sqb-btn-enquire {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.sqb-btn-enquire:hover  { background: #1eba58; }
.sqb-btn-enquire:active { transform: scale(.97); }

@media (max-width: 640px) {
  .sticky-quote-bar {
    width: 100%;
    padding: 8px max(12px, env(safe-area-inset-left)) 8px max(12px, env(safe-area-inset-right));
  }
  .sticky-quote-bar .sqb-cluster {
    gap: 10px;
  }
  .sticky-quote-bar .sqb-thumb-wrap {
    width: 32px;
    height: 32px;
  }
  .sticky-quote-bar .sqb-thumb {
    width: 26px;
    height: 26px;
  }
  .sticky-quote-bar .sqb-total-block,
  #footer-quote-bar .sqb-total-block {
    display: none;
  }
  .sticky-quote-bar .sqb-btn-view,
  #footer-quote-bar .sqb-btn-view {
    display: none;
  }
  .sqb-btn-enquire { padding: 10px 16px; font-size: 12px; }
  .footer-quote-bar { padding: 0 12px; margin-bottom: 12px; }
  .footer-quote-bar-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "items"
      "total"
      "actions";
    row-gap: 10px;
    padding: 12px;
  }
  #footer-quote-bar .sqb-items { flex-wrap: wrap; }
  #footer-quote-bar .sqb-total { justify-self: start; font-size: 20px; }
  #footer-quote-bar .sqb-actions { width: 100%; justify-self: stretch; }
  #footer-quote-bar .sqb-btn-view { display: none; }
  #footer-quote-bar .sqb-btn-enquire { width: 100%; justify-content: center; padding: 11px 14px; font-size: 13px; }
  /* Products: 2 per row, square images */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .product-img-wrap {
    height: auto !important;
    aspect-ratio: 1 / 1;
  }
  .product-body { padding: 10px 10px 12px; }
  .product-title { font-size: 11px; -webkit-line-clamp: 3; }
  .product-compat { display: none; }
  .product-price { font-size: 17px; }
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .product-price { width: 100%; }
  .product-add-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    font-size: 11px;
  }
}
.inner-view {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 24px;
  padding: 14px 18px;
  font-family: var(--font-nav);
  font-size: 12px;
  line-height: 1.45;
  color: var(--page-ink);
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.bc-link {
  color: #5a5a5a;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.bc-link:hover {
  color: var(--red);
}
.bc-sep {
  color: rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  margin: 0 1px;
}
.bc-current {
  color: var(--page-ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.35;
  min-width: 0;
}

@media (max-width: 720px) {
  .breadcrumb {
    padding: 12px 14px;
    margin-bottom: 20px;
    gap: 6px 8px;
  }
  /* Long model names: trail on first row, current title full-width below (no mid-title wrap) */
  .bc-current {
    flex: 1 0 100%;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    line-height: 1.35;
  }
}

/* ─── SECTION HEAD ───────────────────────────────────────────────────────────── */
.section-head { margin-bottom: 52px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--page-ink);
}
.section-sub { color: #666; font-size: 15px; }
.models-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ─── SEARCH ─────────────────────────────────────────────────────────────────── */
.search-wrap { position: relative; display: flex; align-items: center; }
.search-ico  { position: absolute; left: 12px; color: #888; pointer-events: none; }
.search-input {
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  border-radius: var(--r-sm);
  color: var(--page-ink);
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px 10px 38px;
  width: 268px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.search-input::placeholder { color: #888; }
.search-input:focus { border-color: rgba(0,0,0,.22); background: #fafafa; }

/* ══════════════════════════════════════════════════════════════
   LANDING PAGE — PREMIUM SHOWROOM
══════════════════════════════════════════════════════════════ */
#view-landing {
  position: relative;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 0;
}

/* Background — dark hero */
.landing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
}
.landing-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0c0c0c 0%, #050505 42%, #080808 100%);
}

/* ── SHOWROOM HERO ── */
.showroom-hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 80px 24px 40px;
  gap: 0;
}

/* Logo + name */
.showroom-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
  gap: 22px;
}
.showroom-logo {
  height: 110px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 6px 40px rgba(0,0,0,.55)) drop-shadow(0 0 24px rgba(224,31,31,.12));
}
.showroom-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.slf-line1 {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 12px;
  color: #fff;
}
.slf-line2 {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 12px;
  color: var(--red);
}
.showroom-brand-name {
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: 10px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

/* Horizontal rule */
.showroom-rule {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  margin: 0 auto 26px;
}

/* Tagline */
.showroom-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 52px;
  text-transform: uppercase;
}

/* ENTER SHOWROOM button */
.showroom-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 60px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  border-radius: 3px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .2s ease, letter-spacing .3s ease;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.showroom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.showroom-cta span, .showroom-cta svg {
  position: relative;
  z-index: 1;
}
/* Only real hover devices (not touch-first): iOS otherwise “sticks” :hover on first tap and eats the click. */
@media (hover: hover) and (pointer: fine) {
  .showroom-cta:hover::before { transform: scaleX(1); }
  .showroom-cta:hover {
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 8px 48px rgba(224,31,31,.4);
    transform: translateY(-3px);
    letter-spacing: 6px;
  }
}
.showroom-cta:active { transform: translateY(0); }

/* Catalogue stats */
.showroom-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}
.showroom-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  letter-spacing: .5px;
}
.showroom-badge-sep {
  color: rgba(255,255,255,.28);
  font-size: 14px;
}

/* Mobile: one-screen showroom — pin landing (avoid locking body overflow; that breaks taps on iOS). */
@media (max-width: 768px) {
  #view-landing:is(.active, .exiting) {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    z-index: 3;
    box-sizing: border-box;
  }
  #view-landing.active {
    min-height: 0 !important;
    flex: 1;
    max-height: none;
    height: 100%;
  }
  #view-landing .showroom-hero {
    padding: max(10px, env(safe-area-inset-top, 0px)) 16px max(12px, env(safe-area-inset-bottom, 0px));
    flex: 1;
    min-height: 0;
    justify-content: center;
    gap: 0;
    overflow: hidden;
  }
  #view-landing .showroom-logo-wrap {
    margin-bottom: clamp(10px, 3vh, 20px);
    gap: clamp(8px, 2vh, 14px);
  }
  #view-landing .showroom-logo {
    height: clamp(56px, 14vh, 88px);
    max-width: min(320px, 85vw);
  }
  #view-landing .showroom-brand-name {
    letter-spacing: clamp(4px, 1.2vw, 8px);
    font-size: clamp(16px, 4.2vw, 22px);
  }
  #view-landing .showroom-rule {
    margin: 0 auto clamp(8px, 2vh, 16px);
  }
  #view-landing .showroom-tagline {
    margin-bottom: clamp(12px, 3vh, 24px);
    letter-spacing: clamp(2px, 0.8vw, 4px);
    font-size: 9px;
    line-height: 1.35;
    padding: 0 8px;
  }
  #view-landing .showroom-cta {
    padding: clamp(12px, 3vh, 16px) clamp(22px, 8vw, 40px);
    margin-bottom: clamp(10px, 2.5vh, 18px);
    font-size: clamp(11px, 3vw, 13px);
    letter-spacing: clamp(2px, 1vw, 4px);
    gap: 10px;
  }
  #view-landing .showroom-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    row-gap: 4px;
    max-width: 100%;
    padding: 0 8px;
  }
  #view-landing .showroom-badge {
    font-size: 10px;
  }
  #view-landing .showroom-badge-sep {
    font-size: 12px;
  }
  #view-landing .slf-line1,
  #view-landing .slf-line2 {
    font-size: clamp(28px, 10vw, 44px);
    letter-spacing: clamp(4px, 2vw, 8px);
  }
}

/* ── TRUST BAR ── */
.landing-trust {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--page-ink);
  white-space: nowrap;
}
.trust-sub {
  font-size: 11px;
  color: #666;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-ui);
  flex-shrink: 0;
}

/* ─── BRANDS PAGE (shop): circular logos, centred grid, premium showroom look ─ */
.brands-page__breadcrumb {
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}
.brands-page__breadcrumb .bc-link {
  color: #6b6b6b;
}
.brands-page__breadcrumb .bc-link:hover {
  color: var(--red);
}
.brands-page__breadcrumb .bc-current {
  color: var(--page-ink);
  font-weight: 700;
}

.brands-page__head {
  margin-bottom: clamp(40px, 5vw, 56px);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.brands-page__title {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.brands-page__title em {
  color: var(--red);
  font-style: normal;
}

.brands-page__sub {
  font-size: 15px;
  line-height: 1.5;
  color: #5a5a5a;
  max-width: 520px;
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 172px));
  gap: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  justify-content: center;
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 8px 24px;
}

.brand-card {
  position: relative;
  width: 100%;
  max-width: 172px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-4px);
}

.brand-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
  border-radius: 4px;
}

.brand-card-hidden {
  display: none !important;
}

.brand-card-logo-wrap {
  width: clamp(118px, 32vw, 158px);
  height: clamp(118px, 32vw, 158px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.brand-card:hover .brand-card-logo-wrap,
.brand-card:focus-visible .brand-card-logo-wrap {
  border-color: var(--red);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.11),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transform: scale(1.03);
}

.brand-card-logo {
  width: 58%;
  height: 58%;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-card:hover .brand-card-logo,
.brand-card:focus-visible .brand-card-logo {
  transform: scale(1.05);
}

.brand-card-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58%;
  height: 58%;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 6vw, 32px);
  letter-spacing: 0.04em;
  color: var(--page-ink);
}

.brand-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.brand-card-name {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #141414;
}

.brand-card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-stats-line {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
  line-height: 1.35;
  text-align: center;
}

.brand-stat-n {
  color: #141414;
  font-weight: 700;
}

.brand-stat-bullet {
  display: inline-block;
  margin: 0 5px;
  color: var(--red);
  font-weight: 700;
}

.brand-card-stats--pending .brand-stats-line {
  white-space: normal;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11px;
  color: #888;
}

@media (max-width: 720px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 6vw, 40px) clamp(16px, 4vw, 24px);
    max-width: 420px;
    padding: 0 12px 20px;
  }

  .brand-card {
    max-width: none;
    gap: 14px;
  }

  .brand-card-logo-wrap {
    width: clamp(108px, 38vw, 140px);
    height: clamp(108px, 38vw, 140px);
  }

  .brand-stats-line {
    font-size: 9px;
    letter-spacing: 0.06em;
    white-space: normal;
    text-align: center;
  }

}

@media (max-width: 380px) {
  .brand-card-name {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* ─── MODELS GRID ────────────────────────────────────────────────────────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.model-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.model-card:hover {
  background: #fafafa;
  border-color: rgba(0,0,0,.12);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
}
.model-card-img-wrap {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: #ffffff;
}
.model-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.model-card:hover .model-card-img { transform: scale(1.06); }
.model-card-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  color: #888;
  font-weight: 600;
  font-size: 13px;
}
.model-card-body { padding: 18px 20px 22px; color: #111; }
.model-card-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
  line-height: 1.1;
  color: #111;
}
.model-card-year { color: #5c5c5c; font-size: 13px; margin-bottom: 14px; }
.model-card-footer { display: flex; align-items: center; justify-content: space-between; }
.model-card-parts {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  background: transparent;
  padding: 2px 0 2px 10px;
  border-radius: 0;
  border-left: 3px solid var(--red);
}
.model-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.model-card:hover .model-card-cta { color: #111; }
.model-card-hidden { display: none !important; }

/* ─── MODEL HERO ─────────────────────────────────────────────────────────────── */
.model-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--chrome);
  border: 1px solid var(--border-ui);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 52px;
  min-height: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.model-hero-img-wrap {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  min-height: 280px;
}
.model-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative;
  z-index: 0;
}
.model-hero-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  color: #888;
  font-weight: 600;
  z-index: 0;
}
.model-hero-info {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #fafafa 0%, #fff 100%);
}
.mh-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}
.mh-name {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--page-ink);
}
.mh-tag { color: #666; font-size: 14px; margin-bottom: 22px; }
.mh-count {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 0 6px 14px;
  background: transparent;
  border: none;
  border-left: 4px solid var(--red);
  border-radius: 0;
  font-family: var(--display);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111;
}

/* ─── PRODUCTS ───────────────────────────────────────────────────────────────── */
.products-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.products-bar-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.products-search-wrap {
  flex: 1 1 200px;
  max-width: 420px;
  min-width: 140px;
}
.search-input--product {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--page-ink);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}
.search-input--product::placeholder {
  color: #777;
}
.search-input--product:focus {
  background: #fff;
  border-color: rgba(224, 31, 31, 0.35);
  box-shadow: 0 0 0 3px rgba(224, 31, 31, 0.1);
}
.products-search-wrap .search-ico {
  color: #666;
}
.products-search-wrap .search-input {
  width: 100%;
}
.products-bar-tools ::selection {
  background: rgba(224, 31, 31, 0.18);
  color: var(--page-ink);
}

/* Quote on light products page — override header (dark bar) styles */
.quote-toggle-btn--product {
  flex-shrink: 0;
  min-height: 44px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--r-sm);
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.quote-toggle-btn--product:hover {
  background: #f6f6f6;
  border-color: rgba(0, 0, 0, 0.22);
  color: #000;
}
.quote-toggle-btn--product:active {
  background: #efefef;
}
.quote-toggle-btn--product svg {
  stroke: #333;
}
.quote-toggle-btn--product .quote-badge {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}
.products-bar-title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--page-ink);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.products-loading-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
  font-weight: 600;
}
.product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.product-card:hover {
  background: #fafafa;
  border-color: rgba(0,0,0,.12);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.product-card.in-quote {
  border-color: var(--red-border);
  background: #fff8f8;
}
.product-img-wrap {
  position: relative;
  height: 195px;
  background: #ffffff;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  color: #888;
}
.product-in-quote-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 4px;
  display: none;
}
.product-card.in-quote .product-in-quote-badge { display: block; }
.product-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #111;
}
.product-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #111;
}
.product-compat {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-compat span { color: #333; font-weight: 500; }
.product-compat em { color: var(--red); font-style: normal; font-weight: 600; }
.fitment-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.fitment-tag {
  display: inline-block;
  padding: 3px 9px;
  background: #f0f0f0;
  border: 1px solid var(--border-ui);
  border-radius: 4px;
  font-size: 11px;
  color: #444;
  font-weight: 500;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: auto;
}
.product-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.product-add-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: var(--red);
  border: 1px solid #b81818;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}
.product-add-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
}
.product-card:not(.in-quote):hover .product-add-btn {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}
.product-card:not(.in-quote) .product-add-btn:active {
  transform: scale(0.97);
}
.product-card.in-quote .product-add-btn {
  background: #146c33;
  border-color: #0f4d28;
  color: #fff;
  cursor: default;
}
.product-card.in-quote:hover .product-add-btn {
  background: #187a38;
  border-color: #146c33;
  color: #fff;
}
.product-add-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.product-card.in-quote .product-add-btn:focus-visible {
  outline-color: #187a38;
}
.product-hidden { display: none !important; }

/* ─── Product / gallery image stacks (watermark is baked into listing files only) ─ */
.model-card-img-wrap,
.product-img-wrap,
.gallery-main {
  position: relative;
}
.model-card-img,
.product-img,
.gallery-main-img {
  position: relative;
  z-index: 0;
}
.product-in-quote-badge { z-index: 4; }

/* ─── PRODUCT MODAL ──────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  border-radius: 20px;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow: hidden;
  position: relative;
  transform: scale(.94) translateY(24px);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  background: #f0f0f0;
  border: 1px solid var(--border-ui);
  border-radius: 50%;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: #e4e4e4; }
.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal-gallery {
  background: #ffffff;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-right: 1px solid rgba(0,0,0,.08);
}
.gallery-main {
  height: 360px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  touch-action: pan-x;
  position: relative;
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.gallery-main::-webkit-scrollbar {
  display: none;
}
.gallery-main-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.gallery-main-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-strip {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 64px; height: 64px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  opacity: .6;
  transition: opacity .15s, border-color .15s;
}
.gallery-thumb:hover { opacity: .88; }
.gallery-thumb.active { border-color: var(--red); opacity: 1; }
.modal-info {
  padding: 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
  min-width: 0;
  color: var(--page-ink);
}
.modal-brand-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  background: transparent;
  padding: 4px 0 4px 12px;
  border-radius: 0;
  border-left: 3px solid var(--red);
  width: fit-content;
}
.modal-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.15;
  color: var(--page-ink);
}
.modal-fitment {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  padding: 12px 14px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid var(--border-ui);
  border-left: 3px solid var(--red);
}
.modal-fitment-details[open] {
  padding-bottom: 2px;
}
.modal-fitment-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--page-ink);
}
.modal-fitment-summary::-webkit-details-marker { display: none; }
.modal-fitment-summary::after {
  content: '';
  float: right;
  width: 8px;
  height: 8px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: rotate(45deg) translateY(2px);
  transition: transform .18s ease;
}
.modal-fitment-details[open] .modal-fitment-summary::after {
  transform: rotate(225deg) translateY(-2px);
}
.modal-variants { display: flex; flex-direction: column; gap: 10px; }
.modal-variants-label { font-size: 11px; color: #666; font-weight: 700; letter-spacing: 1px; }
.variants-list { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip {
  padding: 7px 14px;
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  color: var(--page-ink);
}
.variant-chip:hover { border-color: rgba(0,0,0,.22); background: #fafafa; }
.variant-chip.selected { border-color: var(--red); background: var(--red-dim); }
.modal-price-row { margin-top: auto; }
.modal-price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--page-ink);
}
.modal-price-note { font-size: 11px; color: #666; }
.modal-actions { padding-top: 2px; }
.btn-add-quote {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: 1px solid #b81818;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-add-quote:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}
.btn-add-quote:active { transform: scale(.98); }
.btn-add-quote.added {
  background: #146c33;
  border: 1px solid #0f4d28;
}
.btn-add-quote.added:hover {
  background: #187a38;
  border-color: #146c33;
}

/* ─── QUOTE SIDEBAR ──────────────────────────────────────────────────────────── */
.quote-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  z-index: 300;
  background: var(--chrome);
  border-left: 1px solid var(--border-ui2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.08);
}
.quote-sidebar.open { transform: translateX(0); }
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

.qs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-ui);
  flex-shrink: 0;
}
.qs-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--page-ink);
}
.qs-close {
  width: 32px; height: 32px;
  background: #f0f0f0;
  border: 1px solid var(--border-ui);
  border-radius: 50%;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.qs-close:hover { background: #e4e4e4; }

.qs-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.qs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: #888;
  text-align: center;
}
.qs-empty svg { opacity: .25; }
.qs-empty p { font-size: 16px; font-weight: 600; color: #333; }
.qs-empty span { font-size: 13px; color: #666; }
.qs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qs-group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qs-group-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  padding: 2px 4px 0;
  border-bottom: 1px solid rgba(224, 31, 31, 0.2);
  padding-bottom: 8px;
}

.qs-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qs-item {
  background: #fafafa;
  border: 1px solid var(--border-ui);
  border-radius: 10px;
  padding: 12px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: start;
}
.qs-item-img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: #ffffff;
  flex-shrink: 0;
}
.qs-item-info { min-width: 0; }
.qs-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--page-ink);
}
.qs-item-price {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--page-ink);
}
.qs-item-remove {
  width: 28px; height: 28px;
  background: var(--chrome);
  border: 1px solid var(--border-ui);
  border-radius: 6px;
  color: #666;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.qs-item-remove:hover {
  background: rgba(224,31,31,.18);
  color: var(--red);
  border-color: var(--red-border);
}

.qs-footer {
  padding: 20px 26px;
  border-top: 1px solid var(--border-ui);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qs-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qs-total-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--page-ink);
}
.qs-total-row #qs-total-label {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  font-weight: 600;
  padding-top: 6px;
}
.qs-total-row .qs-total-value,
.qs-total-row strong.qs-total-value {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
  flex-shrink: 0;
}
.qs-total-value.qs-total--muted {
  font-size: 22px;
  font-weight: 700;
  color: #333;
}
.qs-total-note {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: #5a5a5a;
}
.qs-disclaimer { font-size: 11px; color: #666; text-align: center; }
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1eba58; }
.btn-whatsapp:active { transform: scale(.98); }

/* ─── TOAST ──────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: max(20px, calc(14px + env(safe-area-inset-bottom)));
  top: auto;
  right: max(16px, env(safe-area-inset-right));
  left: auto;
  transform: translateY(12px);
  background: var(--chrome);
  border: 1px solid var(--border-ui2);
  color: var(--page-ink);
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  max-width: min(88vw, 420px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .toast {
    bottom: max(18px, calc(12px + env(safe-area-inset-bottom)));
    right: max(10px, env(safe-area-inset-right));
    max-width: min(94vw, 360px);
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ─── SITE FOOTER (matches header bar tone + red accents) ───────────────────── */
.site-footer {
  flex-shrink: 0;
  background: #090909;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  box-shadow: none;
}

.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 52px 36px 28px;
}

.footer-desktop {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(224, 31, 31, 0.12);
}

.footer-mobile {
  display: none;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(224, 31, 31, 0.12);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
  transition: opacity 0.2s, transform 0.15s;
}

.footer-logo-link:hover {
  opacity: 0.92;
}

.footer-logo-link:active {
  transform: scale(0.98);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(224, 31, 31, 0.35));
}

.footer-logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-logo-line {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: #fff;
}

.footer-logo-line--accent {
  color: var(--red-bright);
}

.footer-col-brand {
  position: relative;
  padding-top: 4px;
}

.footer-col-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red), rgba(224, 31, 31, 0.2));
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--red-bright);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 24px;
  font-size: 12px;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.footer-bar-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  transition: color 0.2s;
}

.footer-bar-link:hover {
  color: var(--red-bright);
}

.footer-bar-sep {
  color: rgba(255, 255, 255, 0.42);
  user-select: none;
}

.footer-col-brand--mobile {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(224, 31, 31, 0.15);
}

.footer-col-brand--mobile::before {
  display: none;
}

.footer-accordion {
  border-top: 1px solid rgba(224, 31, 31, 0.1);
}

/* Brand block already has a bottom border — skip first accordion top to avoid double line */
.footer-mobile .footer-accordion:first-of-type {
  border-top: none;
}

.footer-accordion-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  user-select: none;
}

.footer-accordion-summary::-webkit-details-marker {
  display: none;
}

.footer-accordion-summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  opacity: 0.85;
  transform: rotate(45deg);
  margin-right: 4px;
  transition: transform 0.2s ease, opacity 0.2s;
}

.footer-accordion[open] .footer-accordion-summary::after {
  transform: rotate(225deg);
  margin-top: 4px;
  opacity: 1;
}

.footer-accordion-summary:hover::after {
  opacity: 1;
}

.footer-links--accordion {
  padding: 0 0 18px;
  gap: 10px;
}

.legal-page .static-page-title {
  text-transform: none;
  letter-spacing: 0.04em;
}

.legal-body .static-page-subtitle {
  font-size: 18px;
  margin-top: 28px;
}

@media (max-width: 880px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

  .site-footer-inner {
    padding: 40px max(16px, env(safe-area-inset-left)) 24px max(16px, env(safe-area-inset-right));
  }

  .footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bar-nav {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-footer-inner {
    padding-top: 36px;
  }
}

@media (max-width: 1024px) {
  .footer-desktop {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c4c4c4; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  /*
   * Product modal: one scroll container (the overlay) on small screens — avoids iOS
   * nested scroll / rubber-band fights between .modal-layout and .modal-info.
   */
  .modal-overlay {
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(8px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Reduce GPU-heavy effects that can flash on mobile during open. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
  }
  .modal-box {
    max-height: none;
    overflow: visible;
    transform: none;
    transition: none;
  }
  .modal-layout {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
  .modal-gallery {
    border-radius: 20px 20px 0 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .gallery-main {
    height: min(42svh, 300px);
    min-height: 200px;
    max-height: 340px;
  }
  .model-hero { grid-template-columns: 1fr; }
  /* Full bike in frame on narrow screens — contain instead of cover crop */
  .model-hero-img-wrap {
    height: min(42vh, 300px);
    min-height: 200px;
    max-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    box-sizing: border-box;
  }
  .model-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
  .model-hero-info { padding: 28px 20px; }
}
@media (max-width: 720px) {
  .landing-split { flex-direction: column; height: auto; }
  .split-divider { width: 100%; height: 1px; }
  .split-panel { min-height: 220px; }
  .split-bikes:hover { flex: 1; }
  .landing-trust { flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0 16px; }
  .trust-divider { display: none; }
  .trust-item { padding: 0 12px; }
  .header-inner { padding: 18px 16px; gap: 12px; }
  .logo-text-wrap { display: none; }
  .inner-view { padding: 0 16px; }
  .sticky-enquire-empty { padding: 4px 12px 10px; }
  .models-head { flex-direction: column; align-items: flex-start; }
  .search-input { width: 100%; }
  .modal-overlay {
    padding: max(6px, env(safe-area-inset-top, 0px)) 8px max(10px, env(safe-area-inset-bottom, 0px));
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .gallery-main {
    height: min(36svh, 260px);
    min-height: 176px;
    max-height: 300px;
  }
  .gallery-thumb {
    width: 72px;
    height: 72px;
  }
  .gallery-strip {
    padding: 10px;
    gap: 10px;
  }
  .modal-info {
    padding: 16px 14px 18px;
    gap: 12px;
  }
  .modal-title {
    font-size: 22px;
    line-height: 1.12;
  }
  .modal-fitment {
    font-size: 12px;
    padding: 10px 10px;
  }
  .fitment-tags {
    gap: 5px;
    margin-top: 8px;
  }
  .fitment-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* ─── Home redesign + reviews (sharp corners, Carbon Motorr theme) ─────────── */
.hx-home {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}
@media (min-width: 881px) {
  .hx-home {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }
}

.hx-kicker {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.hx-kicker--accent {
  text-align: center;
}
.hx-display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  color: var(--page-ink);
  margin: 0 0 20px;
}
.hx-display--sm {
  font-size: clamp(1.35rem, 2.2vw + 0.5rem, 2rem);
  text-align: center;
}
.hx-display-accent {
  color: var(--red);
}
.hx-lead {
  font-size: clamp(15px, 1.05vw + 13px, 17px);
  line-height: 1.65;
  color: rgba(20, 20, 20, 0.78);
  margin: 0 0 24px;
  max-width: 52ch;
}
.hx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.hx-btn--primary {
  background: var(--red);
  border-color: #b81818;
  color: #fff;
}
.hx-btn--primary:hover {
  background: var(--red-bright);
}
.hx-btn--outline {
  background: #fff;
  border-color: var(--border-ui2);
  color: var(--page-ink);
}
.hx-btn--outline:hover {
  border-color: var(--red-border);
  color: var(--red);
}
.hx-btn--dark {
  background: #111;
  border-color: #111;
  color: #fff;
}
.hx-btn--dark:hover {
  background: #222;
}
.hx-btn--outline-red {
  background: #fff;
  border: 1px solid var(--red-border);
  color: var(--red);
}
.hx-btn--outline-red:hover {
  background: var(--red-dim);
}
.hx-link-btn {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  padding: 8px 0;
}
.hx-link-btn--on-dark {
  color: #fff;
}
.hx-hero {
  padding: 8px 0 48px;
}
.hx-hero-grid {
  display: grid;
  gap: 28px 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .hx-hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}
.hx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 22px;
}
.hx-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 16px;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.55);
}
.hx-scale {
  margin: 0;
  font-size: 12px;
  color: rgba(20, 20, 20, 0.5);
  letter-spacing: 0.04em;
}
.hx-ad {
  border-radius: 0;
  border: 1px solid var(--border-ui);
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.03) 8px,
    rgba(0, 0, 0, 0.06) 8px,
    rgba(0, 0, 0, 0.06) 16px
  );
  padding: 20px;
  min-height: 120px;
}
.hx-ad--tall {
  min-height: 200px;
}
.hx-ad--short {
  min-height: 100px;
}
.hx-ad--inline {
  margin-top: 20px;
}
.hx-ad-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.45);
  margin-bottom: 8px;
}
.hx-ad-hint {
  margin: 0;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.55);
  line-height: 1.45;
}
.hx-section {
  margin-bottom: 48px;
}
.hx-section--dark {
  margin-left: calc(-1 * max(20px, env(safe-area-inset-left)));
  margin-right: calc(-1 * max(20px, env(safe-area-inset-right)));
  padding: 40px max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
  background: #0d0d0d;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
@media (min-width: 881px) {
  .hx-section--dark {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }
}
.hx-section--dark .hx-h2,
.hx-section--dark .hx-dek {
  color: #f5f5f5;
}
.hx-section--dark .hx-dek {
  opacity: 0.72;
}
.hx-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 22px;
}
.hx-h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.5vw + 0.8rem, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--page-ink);
}
.hx-h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hx-dek {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(20, 20, 20, 0.65);
  max-width: 56ch;
}
.hx-split {
  display: grid;
  gap: 28px 36px;
}
@media (min-width: 800px) {
  .hx-split {
    grid-template-columns: 1fr 1fr;
  }
}
.hx-split-panel {
  border: 1px solid var(--border-ui);
  padding: 28px;
  border-radius: 0;
  background: #fff;
}
.hx-split-panel--stats {
  background: #fafafa;
}
.hx-steps {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.hx-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border-ui);
}
.hx-steps li:first-child {
  border-top: none;
  padding-top: 0;
}
.hx-step-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.hx-steps strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.hx-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.72);
}
.hx-checklist {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.hx-checklist li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
}
.hx-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red);
}
.hx-standards {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.45);
  margin: 0 0 40px;
  line-height: 1.6;
}
.hx-reels .home-reel-chrome,
.hx-reel-chrome {
  border-radius: 0 !important;
}
#view-home .home-brand-tile,
#view-home .home-fit,
#view-home .home-fit-img-shell,
#view-home .home-reel-chrome {
  border-radius: 0 !important;
}
/* .hx-brands-grid shares styles with .home-brands-grid — no override needed here */
.hx-fit-grid.home-fit-grid {
  border-radius: 0;
}
.hx-reviews-wrap {
  max-width: 1000px;
  margin: 0 auto 48px;
}
.hx-whatsapp-proof {
  margin: 4px 0 44px;
  padding: 26px 0 0;
}
.hx-whatsapp-proof .hx-section-head {
  padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  margin-bottom: 16px;
}
.hx-whatsapp-scroll-cues {
  display: none;
}
.hx-whatsapp-proof .hx-h2,
.hx-whatsapp-proof .hx-dek {
  color: rgba(255, 255, 255, 0.95);
}
.hx-whatsapp-proof .hx-dek {
  color: rgba(255, 255, 255, 0.72);
}
.hx-whatsapp-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
}
.hx-whatsapp-item {
  margin: 0;
  border: none;
  background: transparent;
  overflow: visible;
  flex: 0 0 min(31vw, 360px);
  scroll-snap-align: start;
}
@media (min-width: 881px) {
  .hx-whatsapp-strip {
    scrollbar-color: rgba(224, 31, 31, 0.95) rgba(255, 255, 255, 0.16);
    cursor: grab;
  }
  .hx-whatsapp-strip.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }
  .hx-whatsapp-strip::-webkit-scrollbar {
    height: 10px;
  }
  .hx-whatsapp-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.16);
  }
  .hx-whatsapp-strip::-webkit-scrollbar-thumb {
    background: rgba(224, 31, 31, 0.95);
    border-radius: 999px;
  }
}
@media (min-width: 881px) {
  #view-home section[aria-labelledby="hx-reels-h"] .hx-section-head,
  #view-home .hx-whatsapp-proof .hx-section-head {
    padding-left: max(36px, env(safe-area-inset-left));
    padding-right: max(36px, env(safe-area-inset-right));
  }

  #view-home .home-reels {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 220px));
    justify-content: center;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 4px max(36px, env(safe-area-inset-left)) 8px max(36px, env(safe-area-inset-right));
    cursor: default;
    scrollbar-width: none;
  }

  #view-home .home-reels::-webkit-scrollbar {
    display: none;
  }

  #view-home .home-reels.is-dragging {
    cursor: default;
  }

  #view-home .home-reel {
    width: auto;
  }

  #view-home .hx-whatsapp-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 220px));
    justify-content: center;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0 max(36px, env(safe-area-inset-left)) 8px max(36px, env(safe-area-inset-right));
    cursor: default;
    scrollbar-width: none;
  }

  #view-home .hx-whatsapp-strip::-webkit-scrollbar {
    display: none;
  }

  #view-home .hx-whatsapp-strip.is-dragging {
    cursor: default;
  }

  #view-home .hx-whatsapp-item {
    flex: initial;
  }
}
.hx-whatsapp-item img {
  width: 100%;
  height: auto;
  object-fit: initial;
  background: transparent;
  display: block;
}
@media (max-width: 980px) {
  .hx-whatsapp-scroll-cues {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(16px, env(safe-area-inset-left)) 10px max(16px, env(safe-area-inset-right));
    color: rgba(255, 255, 255, 0.7);
  }
  .hx-whatsapp-scroll-cue {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
  }
  .hx-whatsapp-scroll-cue:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .hx-whatsapp-strip {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .hx-whatsapp-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
.hx-reviews-summary {
  margin-bottom: 20px;
}
.hx-rs-box {
  display: grid;
  gap: 24px 32px;
  border: 1px solid var(--border-ui);
  border-radius: 0;
  padding: 28px;
  background: #fff;
}
@media (min-width: 880px) {
  .hx-rs-box {
    grid-template-columns: 200px 1fr auto;
    align-items: start;
  }
  .hx-rs-box--compact {
    grid-template-columns: 200px 1fr;
  }
}
.hx-rs-left {
  text-align: center;
}
@media (min-width: 880px) {
  .hx-rs-left {
    text-align: left;
  }
}
.hx-rs-bigstars {
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}
.hx-rs-scoreline {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
}
.hx-rs-based {
  margin: 0;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.55);
}
.hx-bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hx-bar-label {
  color: rgba(20, 20, 20, 0.55);
}
.hx-bar-track {
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 0;
  overflow: hidden;
}
.hx-bar-fill {
  display: block;
  height: 100%;
  background: #111;
  border-radius: 0;
}
.hx-bar-count {
  text-align: right;
  color: rgba(20, 20, 20, 0.65);
}
.hx-rs-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 880px) {
  .hx-rs-actions {
    min-width: 200px;
  }
}
.hx-reviews-photos {
  border: 1px solid var(--border-ui);
  border-radius: 0;
  padding: 16px 18px 20px;
  background: #fafafa;
  margin-bottom: 22px;
}
.hx-rphoto-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.5);
}
.hx-rphoto-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
.hx-rphoto-cell {
  width: 72px;
  height: 72px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-ui);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.hx-rphoto-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hx-rphoto-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px;
  color: rgba(20, 20, 20, 0.35);
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.04),
    rgba(0, 0, 0, 0.04) 4px,
    rgba(0, 0, 0, 0.07) 4px,
    rgba(0, 0, 0, 0.07) 8px
  );
}
.hx-reviews-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .hx-reviews-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .hx-reviews-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hx-review-card {
  border: 1px solid var(--border-ui);
  border-radius: 0;
  background: #fff;
  padding: 18px;
}
.hx-review-img {
  margin: -18px -18px 14px;
  border-bottom: 1px solid var(--border-ui);
}
.hx-review-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hx-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.hx-review-stars {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.hx-review-date {
  font-size: 12px;
  color: rgba(20, 20, 20, 0.45);
}
.hx-review-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--page-ink);
}
.hx-review-author {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.hx-review-verified {
  font-weight: 800;
  color: #1a7a3e;
}
.hx-reviews-more {
  text-align: center;
  margin: 10px 0 6px;
}
.hx-reviews-cta {
  text-align: center;
  margin-top: 28px;
}
.hx-floor {
  padding: 36px 0 8px;
  border-top: 1px solid var(--border-ui);
}
.hx-floor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.hx-reviews-page .hx-reviews-summary {
  margin-top: 8px;
}
#view-home .hx-section--dark .home-fit-title,
#view-home .hx-section--dark .home-fit-brand,
#view-home .hx-section--dark .home-fit-meta {
  color: #f0f0f0;
}
#view-home .hx-section--dark .home-fit-price {
  color: var(--red-bright);
}
#view-home .hx-section--dark .home-fit-img-ph {
  background: rgba(255, 255, 255, 0.08);
}
/* Arrow only shows on wider tiles (desktop) */
@media (min-width: 720px) {
  .home-brand-tile-arrow {
    display: block;
  }
}

/* Brands section — full-bleed white panel */
#view-home .hx-section--brands {
  margin-left: calc(-1 * max(20px, env(safe-area-inset-left)));
  margin-right: calc(-1 * max(20px, env(safe-area-inset-right)));
  margin-bottom: 0;
  padding: 40px max(20px, env(safe-area-inset-left)) 16px;
  background: #ffffff;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
@media (min-width: 881px) {
  #view-home .hx-section--brands {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(48px, env(safe-area-inset-left));
    padding-right: max(48px, env(safe-area-inset-right));
  }
}
.hx-brands-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hx-brands-kicker {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 6px;
}
.hx-brands-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1.8vw + 0.7rem, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
  line-height: 1;
}
.hx-brands-all-btn {
  flex-shrink: 0;
  border: none;
  background: none;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  padding: 6px 0 10px;
  transition: color 0.18s;
  white-space: nowrap;
}
.hx-brands-all-btn:hover {
  color: #0a0a0a;
}

/* ═══════════════════════════════════════════════════════════════════
   HOME REVAMP
═══════════════════════════════════════════════════════════════════ */

/* ── Hero — dark full-bleed ─────────────────────────────────────── */
.hx-hero {
  position: relative;
  background-color: #050505;
  background-image: url('../images/bacgkround.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(-1 * max(20px, env(safe-area-inset-left)));
  margin-right: calc(-1 * max(20px, env(safe-area-inset-right)));
  overflow: hidden;
}
@media (min-width: 881px) {
  .hx-hero {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.hx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Left read zone: slight darkening so type stays crisp over the photo */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 42%,
    transparent 72%
  );
  pointer-events: none;
}
.hx-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px,8vw,96px) max(20px,env(safe-area-inset-left)) clamp(40px,6vw,72px);
}
@media (min-width: 881px) {
  .hx-hero-inner {
    padding-left: max(36px,env(safe-area-inset-left));
    padding-right: max(36px,env(safe-area-inset-right));
  }
}
.hx-hero .hx-kicker {
  color: var(--red);
  font-size: 10px;
  margin-bottom: 16px;
}
.hx-hero .hx-display {
  color: #ffffff;
  font-size: clamp(2.4rem,4.5vw + 0.5rem,4.2rem);
  margin-bottom: 20px;
}
.hx-hero .hx-lead {
  color: rgba(255,255,255,.65);
  max-width: 64ch;
  margin-bottom: 28px;
}
.hx-hero .hx-trust {
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
.hx-hero .hx-trust li {
  position: relative;
  padding-left: 14px;
}
.hx-hero .hx-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 0;
}

/* Ghost buttons for dark hero */
.hx-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.hx-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--red-border);
  color: var(--red-bright);
}

/* Stats bar */
.hx-hero-stats {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hx-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px 0 0;
}
.hx-hero-stat + .hx-hero-stat-div + .hx-hero-stat {
  padding-left: 20px;
}
@media (min-width: 600px) {
  .hx-hero-stat {
    align-items: center;
    padding: 0 16px;
  }
  .hx-hero-stat:first-child {
    padding-left: 0;
    align-items: flex-start;
  }
}
.hx-hero-stat-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem,3.5vw + 0.5rem,3rem);
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.hx-hero-stat-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hx-hero-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .hx-hero {
    min-height: 0;
    background-position: 76% center;
    background-size: auto 100%;
  }

  .hx-hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.78) 38%,
      rgba(0, 0, 0, 0.44) 64%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .hx-hero-inner {
    max-width: 560px;
    padding-top: clamp(30px, 9vw, 56px);
    padding-bottom: clamp(24px, 8vw, 48px);
  }

  .hx-hero .hx-display {
    font-size: clamp(2rem, 9.2vw, 3.1rem);
    max-width: 12ch;
    margin-bottom: 14px;
  }

  .hx-hero .hx-lead {
    font-size: clamp(1rem, 3.7vw, 1.16rem);
    line-height: 1.48;
    max-width: 29ch;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
  }

  .hx-hero-actions {
    gap: 10px 10px;
    margin-bottom: 16px;
  }

  .hx-hero .hx-btn {
    padding: 11px 16px;
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .hx-hero .hx-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    margin-bottom: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
  }

  .hx-hero-stats {
    margin-top: 20px;
    padding-top: 18px;
  }

  .hx-hero-stat {
    padding-right: 12px;
  }

  .hx-hero-stat + .hx-hero-stat-div + .hx-hero-stat {
    padding-left: 12px;
  }
}

/* ── Brands section — slight top padding ────────────────────────── */
#view-home .hx-section:first-of-type {
  padding-top: 20px;
}

/* ── Featured Parts — uniform grid override ─────────────────────── */
#view-home .home-fit-grid {
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr)) !important;
  gap: 14px !important;
}
@media (min-width: 720px) {
  #view-home .home-fit--c12,
  #view-home .home-fit--c6,
  #view-home .home-fit--c4 {
    grid-column: span 1 !important;
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 900px) {
  #view-home .home-fit--c12 {
    grid-template-columns: 1fr !important;
  }
  #view-home .home-fit--c12 .home-fit-body {
    padding: 0 14px 16px !important;
  }
}
#view-home .home-fit--c12 .home-fit-img-shell {
  max-height: 190px !important;
}

/* ── How it works — dark right panel, clean left ────────────────── */
#view-home .hx-split {
  gap: 20px;
}
#view-home .hx-split-panel {
  border-radius: 0;
  padding: 32px;
}
#view-home .hx-split-panel:first-child {
  background: #fff;
  border: 1px solid var(--border-ui);
}
#view-home .hx-split-panel--stats {
  background: var(--dark);
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,.07);
}
#view-home .hx-split-panel--stats .hx-h3 {
  color: #fff;
}
#view-home .hx-split-panel--stats .hx-checklist li {
  color: rgba(255,255,255,.8);
}
#view-home .hx-split-panel--stats .hx-checklist li::before {
  background: var(--red);
}

/* ── Standards bar ──────────────────────────────────────────────── */
.hx-standards {
  margin-bottom: 24px;
}

/* ── Reviews — left-align headers ───────────────────────────────── */
#view-home .hx-reviews-wrap {
  max-width: 100%;
}
#view-home .hx-reviews-wrap .hx-kicker--accent {
  text-align: left;
}
#view-home .hx-reviews-wrap .hx-display--sm {
  text-align: left;
}

/* ── Floor CTA — dark premium section ──────────────────────────── */
.hx-floor {
  margin-left: calc(-1 * max(20px,env(safe-area-inset-left)));
  margin-right: calc(-1 * max(20px,env(safe-area-inset-right)));
  margin-bottom: 0;
  padding: 56px max(20px,env(safe-area-inset-left)) 44px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  text-align: center;
}
@media (min-width: 881px) {
  .hx-floor {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(36px,env(safe-area-inset-left));
    padding-right: max(36px,env(safe-area-inset-right));
  }
}
.hx-floor-inner {
  max-width: 560px;
  margin: 0 auto;
}
.hx-floor-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.hx-floor-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.6rem,2.5vw + 0.5rem,2.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.hx-floor-sub {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  margin: 0 0 28px;
  line-height: 1.55;
}
.hx-floor-actions {
  justify-content: center;
  gap: 12px 16px;
}
.hx-floor .hx-btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.hx-floor .hx-btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}
.hx-btn--ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.hx-btn--ghost-light:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
