:root {
  --bg: #060606;
  --panel: #101010;
  --panel-soft: #181818;
  --ink: #f4f4f4;
  --muted: #b8b8b8;
  --navy: #17283b;
  --blue: #1f64ff;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d71920;
  --red-dark: #9f0f14;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Aldrich", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 128px;
  padding: 0 52px;
  border-bottom: 1px solid var(--line);
  background: #000000;
  color: var(--white);
}

.shipping-banner {
  position: relative;
  z-index: 5;
  padding: 12px 52px;
  border-bottom: 1px solid var(--line);
  background: #000000;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Aldrich", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.brand img {
  width: 238px;
  height: 82px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.2vw, 46px);
}

.main-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  color: var(--white);
  font-size: 17px;
  font-family: "Aldrich", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
  background: transparent;
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
}

.search-link {
  position: relative;
  width: 34px;
  min-height: 46px;
  flex: 0 0 34px;
}

.search-link::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-link::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 29px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 44px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.button,
.button-muted,
.price,
.eyebrow {
  font-family: "Aldrich", sans-serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 21px;
}

.hero p,
.section-lead,
.about-copy p,
.product-copy,
.cart-empty p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.product-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.button-muted {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  background: var(--red);
  color: var(--white);
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-muted {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--white);
}

.button-muted:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 128px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.02)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.home-hero-copy h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(28px, 4.1vw, 46px);
  line-height: 1.12;
}

.home-hero-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.vehicle-stack {
  display: grid;
  gap: 22px;
}

.vehicle-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 330px;
}

.vehicle-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.vehicle-cover img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  transition: transform 260ms ease, opacity 220ms ease, object-fit 220ms ease;
}

.vehicle-cover:hover img {
  object-fit: contain;
  transform: scale(0.92);
  opacity: 1;
}

.vehicle-cover:hover {
  background: #050505;
}

.vehicle-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.9));
  transition: background 220ms ease;
}

.vehicle-cover:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.vehicle-cover span,
.vehicle-cover strong {
  position: absolute;
  z-index: 1;
  left: 20px;
  font-family: "Aldrich", sans-serif;
}

.vehicle-cover span {
  top: 18px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.vehicle-cover strong {
  bottom: 20px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.vehicle-products {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.vehicle-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.vehicle-head h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
}

.vehicle-head a {
  flex: 0 0 auto;
  color: var(--white);
  font-family: "Aldrich", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-product {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0b0b;
  transition: border-color 180ms ease, transform 180ms ease;
}

.mini-product:hover {
  border-color: rgba(215, 25, 32, 0.72);
  transform: translateY(-2px);
}

.mini-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
}

.mini-product span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.mini-product strong {
  font-family: "Aldrich", sans-serif;
  font-size: 18px;
}

.model-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.model-tab {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #0b0b0b;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.model-tab:hover,
.model-tab.is-active {
  border-color: rgba(215, 25, 32, 0.8);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.3), rgba(255, 255, 255, 0.025)),
    #0b0b0b;
  transform: translateY(-2px);
}

.model-tab span {
  color: var(--red);
  font-family: "Aldrich", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.model-tab strong {
  font-family: "Aldrich", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
  text-transform: uppercase;
}

.model-tab small {
  color: var(--muted);
  line-height: 1.45;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 240ms ease, opacity 240ms ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76));
}

.mosaic-item span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.item-1 {
  grid-column: span 5;
  grid-row: span 3;
}

.item-2,
.item-5 {
  grid-column: span 4;
  grid-row: span 2;
}

.item-3,
.item-4,
.item-6,
.item-7 {
  grid-column: span 3;
  grid-row: span 2;
}

.color-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: center;
}

.finishing-page {
  width: 100%;
  margin: 0;
  padding: 86px max(20px, calc((100% - 1180px) / 2));
  background: #ffffff;
  color: var(--navy);
}

.finishing-page .eyebrow,
.finishing-page h1 {
  color: var(--navy);
}

.finishing-page .button-muted {
  border-color: rgba(23, 40, 59, 0.2);
  background: #ffffff;
  color: var(--navy);
}

.color-copy h1 {
  font-size: clamp(40px, 5.5vw, 66px);
}

.color-photo {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.color-photo img {
  width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(310px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-badge span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
}

.filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 36px;
}

.filters label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.filters select {
  min-width: min(360px, 100%);
  min-height: 46px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #111;
  color: var(--white);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.value-card,
.cart-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.62);
}

.product-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #2b2b2b, #080808 68%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.meta li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-card-body h3 {
  margin-bottom: 8px;
}

.price {
  color: var(--white);
  font-weight: 800;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  margin-top: 18px;
}

.icon-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.icon-button:hover {
  border-color: var(--red);
}

.about-band {
  background: var(--white);
  color: #0a0a0a;
}

.about-band .section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-band .eyebrow,
.about-band .about-copy p,
.about-band .section-lead {
  color: #4e4e4e;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.value-card {
  background: #f5f5f5;
  border-color: #dedede;
  padding: 20px;
}

.value-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.value-card p {
  margin-bottom: 0;
  color: #5a5a5a;
  line-height: 1.65;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.detail-media {
  display: grid;
  gap: 12px;
}

.detail-main-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 40%, #2b2b2b, #080808 68%);
  cursor: pointer;
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transform-origin: 50% 50%;
  transition: transform 220ms ease, object-fit 180ms ease, transform-origin 80ms linear;
  will-change: transform, object-fit, transform-origin;
}

.detail-main-image:hover {
  background: #050505;
}

.detail-main-image:hover img {
  object-fit: contain;
  transform: scale(0.92);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumbs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.thumbs button.is-active {
  border-color: var(--red);
}

.thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-panel {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--panel);
}

.detail-panel h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4vw, 52px);
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.option-field-wide {
  grid-column: 1 / -1;
}

.vehicle-summary {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.vehicle-summary span,
.option-field {
  display: grid;
  gap: 8px;
}

.vehicle-summary span,
.option-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-summary strong {
  color: var(--white);
  font-size: 18px;
}

.option-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 34px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 7px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.option-field select:focus {
  outline: 0;
  border-bottom-color: var(--red);
}

.option-field select option {
  background: #101010;
  color: var(--white);
}

.configured-price {
  display: block;
  margin: 10px 0 0;
  font-size: 24px;
}

.product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-quantity > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-qty-control {
  flex: 0 0 auto;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.spec-list strong {
  color: var(--white);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.cart-row img {
  width: 116px;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
}

.cart-line-note {
  display: block;
  margin: -8px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.qty span {
  min-width: 42px;
  text-align: center;
  font-weight: 800;
}

.summary {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-row.total {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.shipping-option {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin: 16px 0 8px;
}

.shipping-option span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.shipping-option select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: #101010;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  line-height: 1.25;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 7px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.shipping-option select:focus {
  outline: 0;
  border-color: rgba(215, 25, 32, 0.78);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.32);
}

.shipping-option select option {
  background: #101010;
  color: var(--white);
}

.checkout-button {
  min-width: 100%;
}

.paypal-button {
  min-width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2ba36;
  border-radius: 6px;
  background: #ffc439;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
  transition: background 180ms ease, transform 180ms ease;
}

.paypal-button:hover {
  background: #f4b92f;
  transform: translateY(-1px);
}

.paypal-wordmark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.paypal-wordmark span:first-child {
  color: #003087;
}

.paypal-wordmark span:last-child {
  color: #009cde;
}

.cart-secondary-button {
  flex: 1 1 calc(50% - 6px);
  min-width: 0;
  min-height: 44px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
}

.shipping-note {
  margin: 8px 0 12px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.6;
}

.cart-empty {
  max-width: 620px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid rgba(215, 25, 32, 0.56);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: var(--shadow);
  color: var(--white);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.customize-page {
  max-width: 1040px;
}

.customize-head {
  margin-bottom: 34px;
}

.customize-head h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 56px);
}

.customize-form {
  display: grid;
  gap: 28px;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.form-section legend {
  padding: 0 12px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 13px 2px;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.025);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #747474;
}

.upload-field {
  position: relative;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.upload-field:hover,
.upload-field:focus-within {
  border-color: var(--red);
  background: rgba(215, 25, 32, 0.04);
}

.upload-field input[type="file"] {
  position: absolute;
  inset: 0;
  height: 100%;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-field strong {
  color: var(--white);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.upload-field small {
  color: var(--muted);
  line-height: 1.5;
}

.customize-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.customize-submit p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.customize-submit .button {
  flex: 0 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.success-panel {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.success-panel img {
  width: 210px;
  height: 74px;
  margin-bottom: 40px;
  object-fit: cover;
}

.success-panel h1 {
  margin: 18px 0;
  font-size: clamp(38px, 7vw, 58px);
}

.success-panel p {
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 92px;
    padding: 0 20px;
  }

  .shipping-banner {
    padding: 10px 20px;
    font-size: 12px;
  }

  .brand {
    max-width: 72%;
  }

  .brand img {
    width: 196px;
    height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 104px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #000000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    color: var(--white);
  }

  .hero,
  .product-detail,
  .about-band .section,
  .cart-layout,
  .vehicle-feature,
  .color-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .grid,
  .values,
  .model-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    min-height: calc(720px - 36px);
  }

  .home-hero-copy {
    padding-bottom: 64px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 108px;
  }

  .item-1,
  .item-2,
  .item-5 {
    grid-column: span 6;
    grid-row: span 2;
  }

  .item-3,
  .item-4,
  .item-6,
  .item-7 {
    grid-column: span 3;
    grid-row: span 2;
  }

  .detail-panel,
  .summary {
    position: static;
  }

  .customize-page {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .hero {
    width: min(100% - 28px, 1280px);
  }

  h1 {
    font-size: 38px;
  }

  .section-head,
  .filters,
  .site-footer {
    display: grid;
  }

  .grid,
  .values,
  .model-tabs,
  .option-grid,
  .mini-products {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 650px;
  }

  .search-link {
    width: 40px;
  }

  .home-hero-copy h1 {
    font-size: 27px;
  }

  .vehicle-products {
    padding: 18px;
  }

  .vehicle-head {
    display: grid;
  }

  .model-tab {
    min-height: 112px;
  }

  .mosaic-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mosaic-item,
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .cart-row {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .cart-row img {
    width: 84px;
    height: 78px;
  }

  .cart-row .qty {
    grid-column: 2;
    width: max-content;
  }

  .thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .customize-head h1 {
    font-size: 34px;
  }

  .form-section {
    padding: 22px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .customize-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .customize-submit .button {
    width: 100%;
  }

  .success-panel {
    padding: 30px 22px;
  }
}
