/* ============================================
   MY LEGS HURT — Bold athletic streetwear
   ============================================ */

:root {
  /* Palette */
  --black: #000000;
  --off-white: #F5F4F0;
  --white: #FFFFFF;
  --accent: #FF4D1C;      /* race-bib orange — used sparingly */
  --grey-700: #2A2A2A;
  --grey-500: #6B6B6B;
  --grey-300: #C9C7C2;

  /* Type */
  --font-display: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 36px;
  --text-3xl: 56px;
  --text-hero: clamp(48px, 12vw, 144px);

  /* Spacing */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius: 999px;
  --radius-card: 4px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--black); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-7); }
}

.section { padding: var(--space-9) 0; }
@media (max-width: 767px) {
  .section { padding: var(--space-8) 0; }
}

.section--light { background: var(--off-white); color: var(--black); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nav__inner { padding: var(--space-5) var(--space-7); }
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links {
  display: none;
  gap: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--off-white);
}

.nav__right { display: flex; align-items: center; gap: var(--space-4); }

.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: transform 0.15s var(--ease);
}
.cart-btn:hover { transform: scale(1.08); }
.cart-btn:active { transform: scale(0.95); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center; justify-content: center;
  letter-spacing: 0;
}
.cart-count.is-visible { display: flex; }

.hamburger {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--off-white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__inner { text-align: center; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 12vw, 72px);
  letter-spacing: -0.02em;
  padding: 12px 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.mobile-menu a:hover { color: var(--accent); transform: translateX(8px); }
.mobile-menu__footer {
  margin-top: var(--space-7);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  min-height: 56px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--off-white);
  color: var(--black);
}
.btn--primary:hover { background: var(--accent); color: var(--black); }
.btn--inverse {
  background: var(--black);
  color: var(--off-white);
}
.btn--inverse:hover { background: var(--accent); color: var(--black); }
.btn--outline {
  background: transparent;
  color: var(--off-white);
  box-shadow: inset 0 0 0 2px var(--off-white);
}
.btn--outline:hover { background: var(--off-white); color: var(--black); }
.btn--full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-9);
  overflow: hidden;
}
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: var(--space-6);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
}
.hero__eyebrow .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 8px; vertical-align: middle; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: var(--space-6);
}
.hero__title span { display: block; }
.hero__title .accent { color: var(--accent); }

.hero__sub {
  max-width: 560px;
  margin: 0 auto var(--space-7);
  font-size: var(--text-lg);
  color: var(--grey-300);
  font-weight: 500;
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__splits {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--grey-500);
  font-variant-numeric: tabular-nums;
  text-align: left;
  display: none;
}
.hero__splits div { margin-bottom: 4px; }
.hero__bib {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--grey-500);
  text-align: right;
  display: none;
}
.hero__bib .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 900px) {
  .hero__splits, .hero__bib { display: block; }
}

/* Finish line stripes deco */
.stripes {
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--off-white) 0 16px,
    var(--black) 16px 32px
  );
  opacity: 0.08;
}
.stripes--top { top: 0; }
.stripes--bottom { bottom: 0; }

/* ============================================
   PRODUCT CARD (typographic)
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

.product-card {
  display: block;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-4px); }

.product-tile {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  transition: transform 0.4s var(--ease);
  text-align: center;
}
.product-card:hover .product-tile { transform: rotate(-0.6deg); }

.product-tile--black { background: var(--black); color: var(--off-white); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.product-tile--white { background: var(--off-white); color: var(--black); }
.product-tile--accent { background: var(--accent); color: var(--black); }

.product-tile__graphic {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  font-size: clamp(28px, 6vw, 52px);
  text-transform: none;
}
.product-tile__graphic.big {
  font-size: clamp(48px, 10vw, 96px);
}
.product-tile__graphic.uppercase {
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.product-tile__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.product-tile--white .product-tile__chip { background: rgba(0,0,0,0.08); }
.product-tile--accent .product-tile__chip { background: rgba(0,0,0,0.12); }

.product-tile__pod {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: left;
}

/* Product photo tile (overrides typographic when image present) */
.product-tile--photo {
  padding: 0;
  background: var(--black);
}
.product-tile--photo.product-tile--white { background: #1a1a1a; }
.product-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-tile__img { transform: scale(1.03); }
.product-tile--photo .product-tile__chip {
  background: rgba(0,0,0,0.55);
  color: var(--off-white);
  backdrop-filter: blur(6px);
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-4);
  gap: var(--space-3);
}
.product-info__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
}
.product-card:hover .product-info__name::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.product-info__variant {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 4px;
}
.product-info__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ============================================
   VALUE PROPS
   ============================================ */
.value-props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .value-props { grid-template-columns: repeat(4, 1fr); }
}
.value-prop {
  background: var(--black);
  padding: var(--space-6) var(--space-5);
  text-align: center;
}
.value-prop__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto var(--space-3);
  color: var(--accent);
}
.value-prop__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.value-prop__desc {
  font-size: var(--text-xs);
  color: var(--grey-500);
  letter-spacing: 0.04em;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  margin-bottom: var(--space-7);
}
.section-head__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-3);
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .quotes { grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
}
.quote {
  position: relative;
  padding-top: var(--space-5);
}
.quote::before {
  content: '"';
  position: absolute;
  top: -24px;
  left: -4px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  font-weight: 900;
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.quote__author {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.quote__author strong { color: var(--off-white); font-weight: 800; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-9) 0 var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .footer__main { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  max-width: 580px;
}
.footer__brand .accent { color: var(--accent); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--space-7);
  font-size: var(--text-sm);
}
.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-4);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { transition: color 0.15s var(--ease); }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__legal { display: flex; gap: var(--space-5); }

/* ============================================
   FEATURED PRODUCT (home)
   ============================================ */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 900px) {
  .featured { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
}
.featured__tile {
  aspect-ratio: 1 / 1.1;
  background: var(--black);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: var(--space-7);
  text-align: center;
}
.featured__tile-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 120px);
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.featured__tile-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--black);
}
.featured__tile-pod {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: left;
}
.featured__tile--photo {
  padding: 0;
  overflow: hidden;
}
.featured__tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured__tile--photo:hover .featured__tile-img { transform: scale(1.025); }

.featured__meta-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-4);
}
.featured__meta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: var(--space-4);
}
.featured__meta-desc {
  font-size: var(--text-base);
  color: var(--grey-300);
  margin-bottom: var(--space-5);
  max-width: 460px;
}
.featured__meta-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.page-header {
  padding: var(--space-8) 0 var(--space-7);
}
.page-header__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-4);
}
.page-header__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 12vw, 140px);
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.page-header__sub {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--grey-300);
  max-width: 580px;
}

.shop-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.shop-meta__tag { text-align: right; }
@media (max-width: 520px) {
  .shop-meta__tag { display: none; }
}

/* About page legal / parent company strip */
.about-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-7) 0 var(--space-8);
  text-align: center;
}
.about-legal__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.about-legal__line {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0;
}
.about-legal__line strong {
  color: var(--off-white);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.about-legal__line a {
  color: var(--off-white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.about-legal__line a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 900px) {
  .product-detail { grid-template-columns: 1.05fr 1fr; gap: var(--space-9); }
}
.product-detail__tile {
  aspect-ratio: 1 / 1.1;
  background: var(--black);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: var(--space-7);
}
.product-detail__tile-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-align: center;
}
.product-detail__tile-pod {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: left;
}
.product-detail__tile--photo {
  padding: 0;
  overflow: hidden;
}
.product-detail__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__tile--photo .product-tile__chip {
  background: rgba(0,0,0,0.55);
  color: var(--off-white);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.product-detail__crumbs {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-5);
}
.product-detail__crumbs a:hover { color: var(--accent); }

.product-detail__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.product-detail__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}
.product-detail__desc {
  font-size: var(--text-base);
  color: var(--grey-300);
  margin-bottom: var(--space-6);
  max-width: 460px;
}

.option-group { margin-bottom: var(--space-5); }
.option-group__label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--grey-300);
  display: flex;
  justify-content: space-between;
}
.option-group__label a { color: var(--grey-500); }
.option-group__label a:hover { color: var(--accent); }

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.size-btn {
  padding: 14px 0;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--off-white);
  transition: all 0.15s var(--ease);
}
.size-btn:hover { border-color: var(--off-white); }
.size-btn.is-selected {
  background: var(--off-white);
  color: var(--black);
  border-color: var(--off-white);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  overflow: hidden;
}
.qty button {
  width: 44px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.15s var(--ease);
}
.qty button:hover { background: rgba(255,255,255,0.06); }
.qty__value {
  width: 44px;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.product-detail__actions {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}

/* Accordions */
.accordion { border-top: 1px solid rgba(255,255,255,0.1); }
.accordion__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
}
.accordion__trigger::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}
.accordion__item.is-open .accordion__trigger::after { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.accordion__panel-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--grey-300);
  line-height: 1.65;
}
.accordion__panel-inner p { margin-bottom: 10px; }
.accordion__panel-inner ul { padding-left: 18px; list-style: disc; }
.accordion__panel-inner li { margin-bottom: 6px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: var(--space-9) 0 var(--space-8);
}
.about-pullquote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 1100px;
}
.about-pullquote .accent { color: var(--accent); }
.about-pullquote .dim { color: var(--grey-500); }

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .about-story { grid-template-columns: 220px 1fr; gap: var(--space-8); }
}
.about-story__label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.about-story__body p {
  font-size: var(--text-lg);
  line-height: 1.55;
  margin-bottom: var(--space-5);
  color: var(--grey-300);
}
.about-story__body p strong { color: var(--off-white); font-weight: 700; }

/* Route line SVG section */
.route-section {
  padding: var(--space-9) 0;
  background: var(--off-white);
  color: var(--black);
}
.route-section .section-head__label { color: var(--grey-500); }
.route-svg { width: 100%; height: auto; margin: var(--space-7) 0; }

.miles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .miles { grid-template-columns: repeat(4, 1fr); }
}
.mile {
  border-top: 2px solid var(--black);
  padding-top: var(--space-3);
}
.mile__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.mile__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-700);
}

/* POD explainer */
.pod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .pod-grid { grid-template-columns: repeat(3, 1fr); }
}
.pod-card {
  padding: var(--space-6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.02);
}
.pod-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.pod-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.pod-card__body {
  font-size: var(--text-sm);
  color: var(--grey-300);
  line-height: 1.6;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1fr 380px; gap: var(--space-8); align-items: start; }
}

.cart-items { border-top: 1px solid rgba(255,255,255,0.1); }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
@media (min-width: 600px) {
  .cart-item { grid-template-columns: 120px 1fr auto; gap: var(--space-5); }
}
.cart-item__tile {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
@media (min-width: 600px) {
  .cart-item__tile { font-size: 18px; padding: 14px; }
}
.cart-item__tile--photo {
  padding: 0;
  overflow: hidden;
  background: #000;
}
.cart-item__tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item__info {
  min-width: 0;
}
.cart-item__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cart-item__meta {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--space-3);
}
.cart-item__controls {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}
.cart-item__remove {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: color 0.15s var(--ease);
}
.cart-item__remove:hover { color: var(--accent); }

.cart-item__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.cart-summary {
  padding: var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: var(--text-sm);
}
.cart-summary__row--total {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-4);
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}
.cart-summary__row span:last-child { font-variant-numeric: tabular-nums; }

.cart-empty {
  padding: var(--space-9) 0;
  text-align: center;
}
.cart-empty__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: var(--space-4);
}
.cart-empty__sub {
  font-size: var(--text-lg);
  color: var(--grey-500);
  margin-bottom: var(--space-6);
}

.upsell {
  margin-top: var(--space-9);
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .upsell-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--off-white);
  color: var(--black);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
  z-index: 200;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Body lock when menu open */
body.no-scroll { overflow: hidden; }
