/* MagnumsDirect — design tokens & base */
:root {
  --navy: #0a2342;
  --navy-2: #102e54;
  --blue: #1559b3;
  --blue-dark: #0f4a99;
  --sky: #e9f1fb;
  --ice: #f5f8fc;
  --line: #dbe4f0;
  --ink: #13233c;
  --steel: #5b6e8c;
  --white: #ffffff;
  --usa-red: #b22234;
  --gold: #f5b331;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(10, 35, 66, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 35, 66, 0.18);
  --display: "Barlow Condensed", sans-serif;
  --body: "Barlow", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--blue);
  text-decoration: none;
}
button {
  font-family: var(--body);
  cursor: pointer;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
h1,
h2,
h3,
.h-display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--navy);
}
h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
}
.section {
  padding: 84px 0;
}
.section.alt {
  background: var(--ice);
}
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head p {
  color: var(--steel);
  margin-top: 12px;
  font-size: 17px;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 8px;
  padding: 15px 30px;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-transform: uppercase;
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 18px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(21, 89, 179, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--sky);
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #cfdcf0;
  font-size: 13.5px;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.topbar a {
  color: #fff;
  font-weight: 600;
}
.topbar .flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar .hide-sm {
  display: flex;
  gap: 22px;
  align-items: center;
}
.usa-dot {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  background: repeating-linear-gradient(
    180deg,
    var(--usa-red) 0,
    var(--usa-red) 1.57px,
    #fff 1.57px,
    #fff 3.14px
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.usa-dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 54%;
  background: #2b4c8c;
}

/* Header / nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(10, 35, 66, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.logo svg {
  width: 42px;
  height: 42px;
}
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.logo-text span {
  color: var(--blue);
}
.logo-sub {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--steel);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 700;
}
.phone-link small {
  display: block;
  font-size: 11px;
  color: var(--steel);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.phone-link .num {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.cart-btn {
  position: relative;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-btn:hover {
  background: #dce9fa;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--blue);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  box-sizing: border-box;
  text-align: center;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 24px 20px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

/* Hero */
.hero {
  background: linear-gradient(
    115deg,
    var(--navy) 0%,
    var(--navy-2) 55%,
    #163a6b 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1100px 500px at 85% 20%,
    rgba(99, 154, 228, 0.22),
    transparent 60%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 800;
}
.hero h1 .accent {
  color: #7fb2f2;
}
.hero p.lede {
  margin: 20px 0 30px;
  font-size: 19px;
  color: #c9d8ee;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  padding: 7px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e5eefa;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-stage {
  position: relative;
  border-radius: 16px;
  background: radial-gradient(
    120% 90% at 50% 30%,
    #1c4178 0%,
    #102e54 48%,
    #0a1f3c 100%
  );
  border: 1px solid rgba(127, 178, 242, 0.28);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 40px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    55% 38% at 50% 32%,
    rgba(127, 178, 242, 0.32),
    transparent 72%
  );
  pointer-events: none;
}
.hero-wheel-main {
  width: min(420px, 88%);
  max-width: 100%;
  position: relative;
  z-index: 2;
  animation: heroWheelIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both 0.18s;
}
/* Soft spotlight behind the product photo */
.hero-wheel-main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 88%;
  height: 72%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(127, 178, 242, 0.22) 0%,
    transparent 68%
  );
  z-index: -1;
  pointer-events: none;
}
.hero-wheel-main img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.62));
}
.hero-floor {
  width: 68%;
  height: 22px;
  margin-top: -14px;
  border-radius: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 0, 0, 0.65),
    transparent 74%
  );
  position: relative;
  z-index: 1;
}
.hero-plate {
  position: relative;
  z-index: 2;
  width: calc(100% + 72px);
  margin: 14px -36px 0;
  background: rgba(8, 22, 42, 0.72);
  border-top: 1px solid rgba(127, 178, 242, 0.3);
  backdrop-filter: blur(4px);
  padding: 16px 28px 18px;
  text-align: center;
}
.hero-plate b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 19px;
  color: #fff;
  font-weight: 700;
}
.hero-plate span {
  font-size: 13.5px;
  color: #9fb8dc;
  font-weight: 600;
}
/* Photo entrance — rise + settle, no spin (angled product shot) */
@keyframes heroWheelIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.88);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(10, 35, 66, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Trust bar */
.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-item {
  display: flex;
  gap: 13px;
  align-items: center;
}
.trust-item svg {
  flex: 0 0 38px;
}
.trust-item b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.15;
}
.trust-item span {
  font-size: 13.5px;
  color: var(--steel);
}

/* Product cards */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-media {
  container-type: inline-size;
  background: radial-gradient(
    circle at 50% 42%,
    #fff 0%,
    var(--sky) 72%,
    #d7e4f5 100%
  );
  padding: 42px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.card-media .wheel-img {
  width: min(290px, 72cqw);
  aspect-ratio: 1;
  transition: transform 0.35s ease;
}
.card-media .wheel-photo {
  width: auto;
  height: min(290px, 72cqw);
  max-width: none;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.35s ease;
}
.card:hover .wheel-img:not(.wheel-photo) {
  transform: rotate(8deg) scale(1.03);
}
.card:hover .wheel-photo {
  transform: scale(1.04);
}
.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 6px 12px;
}
.card-tag.best {
  background: var(--blue);
}
.stock-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e7f6ec;
  color: #15803d;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 99px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stock-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a654;
}
.card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-size: 26px;
  font-weight: 800;
  cursor: pointer;
}
.card-body h3:hover {
  color: var(--blue);
}
.fitment-line {
  color: var(--steel);
  font-size: 14.5px;
  margin: 6px 0 12px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}
.stars small {
  color: var(--steel);
  font-family: var(--body);
  letter-spacing: 0;
  margin-left: 7px;
  font-weight: 600;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 6px;
}
.price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
}
.price-note {
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
}
.set-note {
  font-size: 13.5px;
  color: #15803d;
  font-weight: 700;
  margin-bottom: 18px;
}
.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wheel-img {
  display: block;
}

/* Made in USA band */
.usa-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.usa-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 55%,
    rgba(127, 178, 242, 0.12) 55.2%
  );
}
.usa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.usa-band h2 {
  color: #fff;
}
.usa-band p {
  color: #c9d8ee;
  margin: 18px 0;
  font-size: 17px;
}
.usa-points {
  list-style: none;
  margin-top: 22px;
}
.usa-points li {
  display: flex;
  gap: 13px;
  margin-bottom: 15px;
  align-items: flex-start;
  font-size: 16px;
  color: #e5eefa;
}
.usa-points svg {
  flex: 0 0 22px;
  margin-top: 3px;
}
.usa-stage {
  align-self: center;
  width: 100%;
  margin: 0;
  border-radius: 16px;
  background: #0a1f3c;
  border: 1px solid rgba(127, 178, 242, 0.28);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.usa-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.usa-stage .usa-plate {
  width: 100%;
  margin: 0;
  background: rgba(8, 22, 42, 0.88);
  border-top: 1px solid rgba(127, 178, 242, 0.3);
  padding: 14px 24px 16px;
  text-align: center;
}
.usa-plate b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.usa-plate span {
  font-size: 13px;
  color: #9fb8dc;
  font-weight: 600;
}

/* Fitment checker */
.fit-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.fit-box label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
}
.fit-box select {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15.5px;
  background: #fff;
  color: var(--ink);
}
.fit-result {
  grid-column: 1/-1;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 12px;
}
.fit-result.ok {
  display: flex;
  background: #e7f6ec;
  color: #166534;
  border: 1px solid #bbe5c8;
}
.fit-result.call {
  display: flex;
  background: #fef6e7;
  color: #92560a;
  border: 1px solid #f3dfb7;
}

/* Reviews */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.rev p {
  color: var(--ink);
  margin: 14px 0 20px;
  font-size: 15.5px;
}
.rev-by {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
}
.rev-by b {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.rev-by span {
  font-size: 13px;
  color: var(--steel);
}
.verified {
  color: #15803d;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(10, 35, 66, 0.05);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16.5px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 26px;
  color: var(--blue);
  transition: transform 0.2s;
  line-height: 1;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq .a {
  padding: 0 24px 22px;
  color: var(--steel);
  font-size: 15.5px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(110deg, var(--blue), #1e6bd6);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #dce9fb;
  margin: 14px auto 30px;
  max-width: 560px;
  font-size: 17px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.c-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.c-card svg {
  margin: 0 auto 16px;
}
.c-card b {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.c-card p {
  color: var(--steel);
  font-size: 15px;
}
.c-card a {
  font-weight: 700;
  font-size: 18px;
}
.hours-table {
  margin: 10px auto 0;
  font-size: 15px;
  color: var(--ink);
  border-collapse: collapse;
}
.hours-table td {
  padding: 4px 10px;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* Footer */
footer {
  background: var(--navy);
  color: #b9c9e2;
  font-size: 14.5px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 64px 0 44px;
}
.f-grid h4 {
  font-family: var(--display);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.f-grid ul {
  list-style: none;
}
.f-grid li {
  margin-bottom: 11px;
}
.f-grid a {
  color: #b9c9e2;
  cursor: pointer;
}
.f-grid a:hover {
  color: #fff;
}
.f-about p {
  margin: 14px 0 18px;
  line-height: 1.7;
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #8fa4c6;
}
.f-bottom .pay {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pay span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11.5px;
  font-weight: 700;
  color: #dce7f7;
  letter-spacing: 0.05em;
}

/* Product detail page */
.crumbs {
  font-size: 14px;
  color: var(--steel);
  margin: 26px 0 8px;
}
.crumbs a {
  color: var(--steel);
  cursor: pointer;
}
.crumbs a:hover {
  color: var(--blue);
}
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 18px 0 80px;
  align-items: start;
}
.pdp-media {
  container-type: inline-size;
  background: radial-gradient(
    circle at 50% 45%,
    #fff 0%,
    var(--sky) 70%,
    #d7e4f5 100%
  );
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 54px 30px;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 104px;
}
.pdp-media .wheel-img {
  width: min(430px, 86cqw);
  aspect-ratio: 1;
}
.pdp-media .wheel-photo {
  width: auto;
  height: min(430px, 86cqw);
  max-width: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}
.pdp h1 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
}
.pdp .fitment-line {
  font-size: 15.5px;
  margin: 8px 0 14px;
}
.pdp .price-row {
  margin: 20px 0 4px;
}
.pdp .price {
  font-size: 42px;
}
.opt-label {
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 24px 0 10px;
}
.opt-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.opt {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.15s;
}
.opt:hover {
  border-color: var(--blue);
}
.opt.sel {
  border-color: var(--blue);
  background: var(--sky);
  color: var(--blue);
}
.qty-row {
  display: flex;
  gap: 16px;
  margin: 26px 0 14px;
  align-items: stretch;
  flex-wrap: wrap;
}
.qty {
  display: flex;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.qty button {
  width: 46px;
  background: #fff;
  border: none;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
}
.qty button:hover {
  background: var(--sky);
}
.qty input {
  width: 56px;
  text-align: center;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
}
.qty-row .btn {
  flex: 1;
  min-width: 220px;
}
.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
  padding: 20px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.pdp-trust div {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.8px;
  font-weight: 600;
  color: var(--navy);
}
.specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 15px;
}
.specs td {
  padding: 11px 6px;
  border-bottom: 1px solid var(--line);
}
.specs td:first-child {
  font-weight: 700;
  color: var(--navy);
  width: 42%;
}
.pdp-desc {
  color: var(--steel);
  font-size: 15.5px;
  margin-top: 14px;
}
.back-link {
  cursor: pointer;
  font-weight: 700;
}

/* Cart drawer */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.55);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(440px, 100%);
  background: #fff;
  z-index: 130;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(10, 35, 66, 0.25);
}
.drawer.show {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.3s ease,
    visibility 0s linear 0s;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  font-size: 24px;
}
.drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--steel);
  width: 40px;
  height: 40px;
}
.ship-progress {
  padding: 16px 24px;
  background: var(--ice);
  border-bottom: 1px solid var(--line);
  font-size: 13.8px;
  font-weight: 600;
  color: var(--navy);
}
.ship-bar {
  height: 8px;
  background: #d8e3f2;
  border-radius: 99px;
  margin-top: 9px;
  overflow: hidden;
}
.ship-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #3e84e5);
  border-radius: 99px;
  transition: width 0.35s ease;
}
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
}
.ci {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.ci-thumb {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background: radial-gradient(circle, #fff, var(--sky));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 84px;
}
.ci-thumb svg {
  width: 64px;
  height: 64px;
}
.ci-info {
  flex: 1;
}
.ci-info b {
  color: var(--navy);
  font-size: 15px;
  display: block;
  line-height: 1.3;
}
.ci-info small {
  color: var(--steel);
  display: block;
  margin: 3px 0 8px;
}
.ci-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ci .qty {
  transform: scale(0.84);
  transform-origin: left;
}
.ci-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}
.ci-remove {
  background: none;
  border: none;
  color: var(--steel);
  font-size: 12.5px;
  text-decoration: underline;
  padding: 0;
  margin-top: 6px;
}
.ci-remove:hover {
  color: var(--usa-red);
}
.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  background: #fff;
}
.sub-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--steel);
  font-weight: 600;
}
.sub-row.total {
  font-size: 19px;
  color: var(--navy);
  font-weight: 800;
  margin: 8px 0 16px;
}
.empty-cart {
  text-align: center;
  padding: 70px 20px;
  color: var(--steel);
}
.empty-cart svg {
  margin: 0 auto 18px;
  opacity: 0.4;
}
.drawer-foot .secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--steel);
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
}

/* Checkout modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.show {
  display: flex;
}
.modal-card {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 44px 38px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: pop 0.25s ease;
}
@keyframes pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-card h3 {
  font-size: 30px;
  margin: 18px 0 12px;
}
.modal-card p {
  color: var(--steel);
  font-size: 15.5px;
  margin-bottom: 10px;
}
.modal-card .btn {
  margin-top: 18px;
}
.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--steel);
  width: 40px;
  height: 40px;
}
.modal-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  z-index: 170;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Policy pages */
.policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}
.policy h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.policy .updated {
  color: var(--steel);
  font-size: 14px;
  margin-bottom: 34px;
}
.policy h3 {
  font-size: 22px;
  margin: 32px 0 10px;
}
.policy p,
.policy li {
  color: #3c4d68;
  font-size: 15.5px;
  margin-bottom: 12px;
}
.policy ul {
  padding-left: 22px;
}

/* SPA view switching */
.view {
  display: none;
}
.view.active {
  display: block;
  animation: fade 0.3s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .hero-visual {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .usa-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rev-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rev-grid .rev:last-child {
    display: none;
  }
  .pdp {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pdp-media {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .phone-link small {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .fit-box {
    grid-template-columns: 1fr 1fr;
  }
  .fit-box .btn {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 58px 0;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .rev-grid .rev:last-child {
    display: block;
  }
  .topbar .hide-sm {
    display: none;
  }
  .topbar .container {
    justify-content: center;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
  .fit-box {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .f-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 36px;
  }
  .phone-link .num {
    font-size: 17px;
  }
  .hero-grid {
    padding-top: 48px;
    padding-bottom: 56px;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 42px);
  }
  .hero p.lede {
    font-size: 17px;
  }
  .hero-badges {
    gap: 8px;
  }
  .chip {
    font-size: 12.5px;
    padding: 6px 12px;
    margin-top: 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stage {
    padding: 24px 0 0;
    border-radius: 14px;
  }
  .hero-wheel-main {
    width: min(300px, 90%);
  }
  .hero-wheel-main img {
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.5));
  }
  .hero-plate {
    width: 100%;
    margin: 10px 0 0;
    padding: 14px 16px 16px;
  }
  .hero-plate b {
    font-size: 16px;
  }
  .hero-plate span {
    font-size: 12px;
    line-height: 1.45;
  }
  .hero-stamp {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 7px 10px;
  }
  .hero-floor {
    width: 62%;
    margin-top: -10px;
  }
  .qty-row .btn {
    min-width: 100%;
  }
  .pdp-trust {
    grid-template-columns: 1fr;
  }
  .f-bottom {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 16px 16px;
  }
  .nav {
    gap: 8px;
    min-height: 64px;
  }
  .nav-cta {
    gap: 8px;
    flex-shrink: 0;
  }
  .logo {
    min-width: 0;
    flex-shrink: 1;
  }
  .logo-text {
    font-size: 22px;
  }
  .logo-sub {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .phone-link {
    display: none;
  }
}
