/* ============================================================
   SOUTHWEST GEAR by Diamond Sports Designs
   Design system: "The Clubhouse Standard"
   Navy story bands · chalk shopping floors · gold for moments
   that matter · DSD red reserved for the maker's mark.
   ============================================================ */

:root {
  /* Palette */
  --navy:        #13205A;  /* Midland Navy — header, bands, buttons */
  --navy-deep:   #0C1538;  /* Dugout Navy — hero scrims, footer */
  --gold:        #C9A44A;  /* Old Gold — CTAs on navy, prices */
  --gold-bright: #F2C747;  /* Rally Gold — hovers, badges */
  --chalk:       #F7F6F2;  /* page background */
  --white:       #FFFFFF;  /* cards, buy box */
  --ink:         #111722;  /* text on light */
  --columbia:    #8FB8DC;  /* subtle tags only */
  --dsd-red:     #E8262A;  /* maker's mark only */
  --line:        #E4E1D8;  /* hairlines on chalk */
  --ink-soft:    #4A5161;  /* secondary text on light */
  --chalk-soft:  rgba(247, 246, 242, 0.72); /* secondary text on navy */

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --max-w: 1280px;
  --section-pad: 96px;
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 16px; top: -48px;
  z-index: 100;
  background: var(--gold-bright);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: 1rem; }

::selection { background: var(--gold-bright); color: var(--ink); }

/* ---------- Type scale ---------- */
.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0;
}
.display-xl { font-size: clamp(56px, 8vw, 104px); }
.display-lg { font-size: clamp(40px, 5vw, 64px); }
.display-md { font-size: clamp(28px, 3vw, 40px); }
.display-sm { font-size: clamp(20px, 2vw, 24px); }

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #755E26; /* AA on chalk/white */
  margin: 0 0 12px;
}
.band--navy .eyebrow, .band--deep .eyebrow,
.hero .eyebrow, .page-head .eyebrow { color: var(--gold-bright); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.band { padding: var(--section-pad) 0; }
.band--navy { background: var(--navy); color: var(--chalk); position: relative; overflow: hidden; }
.band--deep { background: var(--navy-deep); color: var(--chalk); position: relative; overflow: hidden; }
.band--chalk { background: var(--chalk); color: var(--ink); }
.band--white { background: var(--white); color: var(--ink); }

/* Diamond watermark on navy bands */
.band--navy::before, .band--deep::before {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 560px; height: 560px;
  transform: translateY(-50%) rotate(45deg);
  border: 3px solid rgba(247, 246, 242, 0.05);
  outline: 3px solid rgba(247, 246, 242, 0.03);
  outline-offset: 40px;
  pointer-events: none;
}

/* Chalk foul-line section header */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}
.band--navy .section-head, .band--deep .section-head { border-bottom-color: var(--chalk); }
.section-head .view-all {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.section-head .view-all:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--navy { background: var(--navy); color: var(--chalk); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--chalk); border-color: var(--chalk); }
.btn--ghost:hover { background: var(--chalk); color: var(--navy); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--chalk); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ============================================================
   DEMO / NOT-LIVE BANNER (auto-hidden in production)
   ============================================================ */
.demo-banner {
  background: var(--dsd-red);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.45;
  text-align: center;
  position: relative;
  z-index: 80;
}
.demo-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.demo-banner .demo-tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fff;
  color: var(--dsd-red);
  padding: 2px 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.demo-banner strong { font-weight: 700; }
.demo-banner a { color: #fff; text-decoration: underline; }

/* ============================================================
   DUGOUT BOARD — announcement strip
   ============================================================ */
.dugout-board {
  background: var(--navy-deep);
  color: var(--chalk);
  border-bottom: 2px solid var(--gold);
  font-size: 14px;
  position: relative;
  z-index: 60;
}
.dugout-board .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  text-align: center;
}
.dugout-board strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dugout-board .countdown {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.dugout-board[hidden] { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--chalk);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(247, 246, 242, 0.12);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-lockup .diamond-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-lockup .brand-text { line-height: 1.05; }
.brand-lockup .brand-name {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-lockup .brand-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.main-nav { display: flex; gap: 28px; margin-left: 12px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--chalk-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--chalk);
  border-bottom-color: var(--gold);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.team-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 246, 242, 0.08);
  border: 1px solid rgba(247, 246, 242, 0.25);
  color: var(--chalk);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.15s ease;
}
.team-chip:hover { border-color: var(--gold); }
.team-chip .dot {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.header-cta { padding: 10px 22px; font-size: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--chalk);
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--chalk);
  text-decoration: none;
  padding: 8px;
}
.cart-link svg { width: 24px; height: 24px; }
.cart-link .cart-count {
  position: absolute;
  top: 0; right: -2px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 1200px 700px at 75% -10%, rgba(201, 164, 74, 0.14), transparent 60%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 64%, #080E26 100%);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* infield diamond geometry */
  content: "";
  position: absolute;
  left: 50%; bottom: -42%;
  width: 1100px; height: 1100px;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(247, 246, 242, 0.07);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -42%;
  width: 860px; height: 860px;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(201, 164, 74, 0.12);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 104px;
}
.hero h1 { margin: 0 0 20px; }
.hero h1 .gold { color: var(--gold-bright); }
.hero .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--chalk-soft);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 246, 242, 0.15);
}
.hero-stats .stat .num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-soft);
  margin-top: 6px;
}

/* Hero product cards collage */
.hero-collage {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(5, 9, 26, 0.45);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--a {
  width: 62%; aspect-ratio: 3/4;
  right: 8%; top: 0;
  transform: rotate(2deg);
  z-index: 2;
}
.hero-card--b {
  width: 46%; aspect-ratio: 3/4;
  left: 0; bottom: 0;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-card .tag {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  background: var(--navy-deep);
  color: var(--chalk);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
}
.hero-card .tag .price { color: var(--gold-bright); }

/* Team marquee under hero */
.team-marquee {
  background: var(--navy-deep);
  border-top: 1px solid rgba(247, 246, 242, 0.1);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  padding: 13px 0;
}
.team-marquee .track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.team-marquee span {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.5);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.team-marquee span::after {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   FIND YOUR TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 12px 14px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.team-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.team-card.selected {
  background: var(--navy);
  color: var(--chalk);
  border-color: var(--navy);
}
.team-card .age {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.team-card.selected .age { color: var(--gold-bright); }
.team-card .coach {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--ink-soft);
}
.team-card.selected .coach { color: var(--chalk); }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--navy);
  /* batter's box framing */
  outline: 1px solid var(--line);
}
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.3s ease;
  opacity: 0.92;
}
.cat-tile:hover img { transform: scale(1.05); opacity: 1; }
.cat-tile .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 21, 56, 0.88) 100%);
}
.cat-tile .label {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  color: var(--chalk);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.cat-tile .label .name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.cat-tile .label .count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.product-card .media {
  position: relative;
  aspect-ratio: 3/4;
  background: #EDEBE4;
  overflow: hidden;
}
.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.product-card .media img.alt {
  position: absolute; inset: 0;
  opacity: 0;
}
.product-card:hover .media img.alt { opacity: 1; }
.product-card .badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold-bright);
  color: var(--navy-deep);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius);
  z-index: 2;
}
.product-card .badge--navy { background: var(--navy); color: var(--chalk); }
.product-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card .name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.product-card .meta {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.product-card .price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
}
/* designed placeholder for photoless products */
.media-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, #1A2A6E 0%, var(--navy-deep) 100%);
  color: var(--chalk-soft);
}
.media-placeholder .ph-diamond {
  width: 54px; height: 54px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-placeholder .ph-diamond span {
  transform: rotate(-45deg);
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
}
.media-placeholder .ph-note {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS / PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 18px;
  border-top: 2px solid rgba(247, 246, 242, 0.25);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.step p { font-size: 14.5px; color: var(--chalk-soft); margin: 0; line-height: 1.6; }

/* Made-here strip */
.made-here {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
}
.made-here .copy p { color: var(--ink-soft); max-width: 480px; }
.made-here .pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.pillar .p-title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.pillar .p-title::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.pillar p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* B2B band */
.b2b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.b2b .copy { max-width: 640px; }
.b2b .copy p { color: var(--chalk-soft); margin: 12px 0 0; }
.b2b .dsd-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.dsd-sig .red-diamond { width: 30px; height: 30px; }
.dsd-sig span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-soft);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-head {
  background: var(--navy);
  color: var(--chalk);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  right: -80px; top: 50%;
  width: 360px; height: 360px;
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid rgba(247, 246, 242, 0.07);
}
.page-head .crumbs {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chalk-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-head .crumbs a { color: inherit; text-decoration: none; }
.page-head .crumbs a:hover { color: var(--gold-bright); }
.page-head .crumbs .sep {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.filter-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.15s ease;
  color: var(--ink-soft);
}
.filter-chip:hover { border-color: var(--navy); color: var(--navy); }
.filter-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--chalk);
}
.shop-toolbar .sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.shop-toolbar select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
}
.results-count { font-size: 13px; color: var(--ink-soft); margin: 0 0 18px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: 56px;
  align-items: start;
  padding: 48px 0 var(--section-pad);
}
.pdp-gallery { position: sticky; top: 96px; }
.pdp-gallery .main-img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  overflow: hidden;
}
.pdp-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-gallery .thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pdp-gallery .thumbs button {
  width: 76px; height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.pdp-gallery .thumbs button.active { border-color: var(--navy); border-width: 2px; }
.pdp-gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }

.buy-box h1 { margin: 0 0 6px; color: var(--navy-deep); }
.buy-box .pdp-price {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
}
.buy-box .pdp-tags { display: flex; gap: 8px; margin: 12px 0 0; flex-wrap: wrap; }
.pdp-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--chalk);
}
.pdp-tag--gold { background: var(--gold-bright); color: var(--navy-deep); }

.field-block { margin-top: 26px; }
.field-block > label, .field-block > .field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field-block .hint {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-soft);
}
.size-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pill {
  min-width: 52px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.12s ease;
}
.size-pill:hover { border-color: var(--navy); }
.size-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--chalk);
}
.text-input, .select-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.text-input:focus-visible, .select-input:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-color: var(--navy);
}
.input-row { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }

.fulfill-options { display: grid; gap: 10px; }
.fulfill-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.fulfill-option:hover { border-color: var(--navy); }
.fulfill-option.active { border-color: var(--navy); background: #F2F4FB; }
.fulfill-option input { margin-top: 3px; accent-color: var(--navy); }
.fulfill-option .fo-title { font-size: 14px; font-weight: 600; }
.fulfill-option .fo-sub { font-size: 12.5px; color: var(--ink-soft); }

.final-sale-note {
  display: flex;
  gap: 10px;
  background: #FBF4E3;
  border: 1px solid #E8D9AE;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  color: #6B5618;
  margin-top: 22px;
  line-height: 1.5;
}
.final-sale-note .fs-diamond {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 4px;
}
.buy-box .btn--gold { margin-top: 18px; font-size: 21px; padding: 18px 36px; }
.checkout-note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
}

/* Jersey-back live preview */
.jersey-preview {
  margin-top: 14px;
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  justify-content: center;
}
.jersey-preview svg { width: 200px; height: auto; }

.pdp-description {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.pdp-description h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.pdp-description p { color: var(--ink-soft); line-height: 1.7; }
.spec-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.spec-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  align-items: baseline;
}
.spec-list li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   INFO PAGE
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  padding: 48px 0 var(--section-pad);
  align-items: start;
}
.info-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 2px;
}
.info-nav a {
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  transition: all 0.15s ease;
}
.info-nav a:hover, .info-nav a.active {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--white);
}
.info-section { margin-bottom: 64px; scroll-margin-top: 110px; }
.info-section h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  color: var(--navy-deep);
}
.info-section p { color: var(--ink-soft); max-width: 680px; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  margin-top: 16px;
}
.size-table th {
  background: var(--navy);
  color: var(--chalk);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.size-table td { padding: 10px 14px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.size-table tr td:first-child { font-weight: 600; color: var(--ink); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.faq-item summary {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 18px 16px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px;
}
.contact-card p { font-size: 14.5px; margin: 0; }
.contact-card a { color: var(--navy); font-weight: 600; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: start;
  padding: 48px 0 var(--section-pad);
}
.checkout-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.checkout-panel + .checkout-panel { margin-top: 16px; }
.checkout-panel h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.single { grid-template-columns: 1fr; }
.form-row.thirds { grid-template-columns: 2fr 1fr 1fr; }
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.card-field {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 4px 8px;
  min-height: 48px;
}
.card-field input, .card-field .card-field-input {
  border: 0 !important; outline: none; width: 100%; padding: 9px 6px;
  font-size: 1rem; background: transparent; font-family: inherit;
}
.card-field iframe { border: 0; width: 100%; min-height: 38px; }
.secure-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 14px;
}
.secure-row svg { width: 15px; height: 15px; flex-shrink: 0; }
.cart-lines { display: grid; gap: 0; }
.cart-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-line img, .cart-line .thumb-ph {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--navy-deep);
}
.cart-line .cl-name { font-size: 14px; font-weight: 600; margin: 0; }
.cart-line .cl-meta { font-size: 12px; color: var(--ink-soft); }
.cart-line .cl-price {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.cart-line .cl-controls { display: flex; align-items: center; gap: 8px; justify-content: flex-end; margin-top: 4px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--navy); }
.cl-remove {
  background: none; border: 0;
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: underline;
  padding: 0;
}
.totals { margin-top: 16px; display: grid; gap: 8px; font-size: 14.5px; }
.totals .t-row { display: flex; justify-content: space-between; color: var(--ink-soft); }
.totals .t-row.grand {
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
}
.totals .t-row.grand .amount { font-family: var(--display); font-size: 26px; color: var(--navy); }
.checkout-error {
  background: #FBEAEA;
  border: 1px solid #E8B4B4;
  border-radius: var(--radius);
  color: #8C1D1D;
  padding: 12px 14px;
  font-size: 14px;
  margin: 14px 0 0;
}
.order-success {
  text-align: center;
  padding: 64px 24px;
}
.order-success .os-diamond {
  width: 64px; height: 64px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.order-success .os-diamond span { transform: rotate(-45deg); font-size: 28px; color: var(--gold); }
.empty-cart { text-align: center; padding: 64px 24px; color: var(--ink-soft); }
@media (max-width: 1080px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { order: -1; }
}

/* ============================================================
   MERCHANT PORTAL
   ============================================================ */
.portal-login {
  max-width: 420px;
  margin: 64px auto;
}
.portal-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.portal-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.portal-tile .pt-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portal-tile .pt-value {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 4px;
}
.portal-tile .pt-sub { font-size: 12px; color: var(--ink-soft); }
.portal-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.portal-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); font-size: 13.5px; }
.portal-table th {
  background: var(--navy);
  color: var(--chalk);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: left;
  padding: 9px 12px;
  white-space: nowrap;
}
.portal-table td { padding: 9px 12px; border-top: 1px solid var(--line); vertical-align: top; }
.portal-table tr.order-row { cursor: pointer; }
.portal-table tr.order-row:hover td { background: #F2F4FB; }
.portal-table .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.status-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-pill--paid { background: #E5F1E4; color: #1F5C1D; }
.status-pill--voided { background: #F0F0F0; color: #555; }
.status-pill--refunded { background: #FBF4E3; color: #6B5618; }
.status-pill--declined { background: #FBEAEA; color: #8C1D1D; }
.order-detail td { background: #FAFAF7; }
.order-detail .od-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  padding: 6px 2px;
}
.order-detail ul { margin: 6px 0 0; padding-left: 18px; }
.order-detail .od-actions { display: grid; gap: 8px; align-content: start; }
.od-actions .btn { padding: 10px 16px; font-size: 15px; }
.od-actions .refund-row { display: flex; gap: 8px; }
.od-actions .refund-row input { width: 110px; }
.od-msg { font-size: 12.5px; margin-top: 4px; }
.od-msg.ok { color: #1F5C1D; }
.od-msg.err { color: #8C1D1D; }
.portal-pager { display: flex; gap: 10px; align-items: center; margin-top: 14px; font-size: 13px; }
@media (max-width: 900px) {
  .portal-tiles { grid-template-columns: repeat(2, 1fr); }
  .order-detail .od-grid { grid-template-columns: 1fr; }
  .portal-table { font-size: 12.5px; }
}

/* ============================================================
   LEGAL PAGES (terms / privacy / refunds)
   ============================================================ */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 0 var(--section-pad);
}
.legal-updated { font-size: 13px; color: var(--ink-soft); margin: 0 0 28px; }
.legal-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 36px;
}
.legal-toc strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.legal-toc ol { margin: 0; padding-left: 18px; font-size: 14px; columns: 2; column-gap: 28px; }
.legal-toc li { margin-bottom: 5px; }
.legal-toc a { color: var(--navy); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-doc h2 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 38px 0 10px;
  scroll-margin-top: 96px;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 22px 0 6px; }
.legal-doc p, .legal-doc li { color: var(--ink-soft); line-height: 1.7; }
.legal-doc ul { padding-left: 20px; margin: 8px 0; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc a { color: var(--navy); font-weight: 600; }
.legal-callout {
  background: #FBF4E3;
  border: 1px solid #E8D9AE;
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #6B5618;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Footer legal links + checkout consent */
.footer-legal .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal .legal-links a { color: var(--chalk-soft); text-decoration: none; font-size: 13px; }
.footer-legal .legal-links a:hover { color: var(--chalk); }
.checkout-consent {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}
.checkout-consent a { color: var(--navy); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: -160px; bottom: -260px;
  width: 620px; height: 620px;
  transform: rotate(45deg);
  border: 3px solid rgba(247, 246, 242, 0.04);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 4fr);
  gap: 48px;
  padding: 72px 0 56px;
  position: relative;
}
.footer-brand .brand-lockup { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--chalk-soft);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--chalk-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--chalk); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--chalk-soft);
  line-height: 1.7;
}
.newsletter-form { display: flex; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(247, 246, 242, 0.25);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(247, 246, 242, 0.06);
  color: var(--chalk);
}
.newsletter-form input::placeholder { color: rgba(247, 246, 242, 0.68); }
.newsletter-form input:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 13px 22px;
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.newsletter-form button:hover { background: var(--gold-bright); }
.newsletter-note { font-size: 12px; color: var(--chalk-soft); margin-top: 10px; }
.footer-legal {
  border-top: 1px solid rgba(247, 246, 242, 0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--chalk-soft);
  position: relative;
}
.footer-legal .maker {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal .maker .red-diamond { width: 22px; height: 22px; }

/* DSD red diamond mark (inline SVG sized via class) */
.red-diamond { display: block; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Reveals only hide when JS is running; .js class added by main.js */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(14px); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, html.js .reveal { opacity: 1; transform: none; transition: none; }
  .team-marquee { display: none; } /* decorative, aria-hidden */
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Header max-content is ~1226px — collapse the nav well before that. */
@media (max-width: 1240px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    margin: 0;
    border-bottom: 2px solid var(--gold);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(247, 246, 242, 0.1); }
  .nav-toggle { display: block; }
}
@media (max-width: 1080px) {
  .product-grid, .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 72px; }
  .hero-collage { display: none; }
  .made-here { grid-template-columns: 1fr; gap: 36px; }
  .pdp { grid-template-columns: 1fr; gap: 36px; }
  .pdp-gallery { position: static; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .info-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .info-nav a { border: 1px solid var(--line); border-radius: 999px; }
}
@media (max-width: 760px) {
  :root { --section-pad: 64px; }
  .dugout-board .wrap > span:not(.countdown) { display: none; }
  .dugout-board .wrap { gap: 12px; }
  .site-header .wrap { gap: 16px; }
  .header-actions { gap: 10px; }
  .header-cta { display: none; }
  .team-chip .chip-label { display: none; }
  .product-grid, .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .contact-cards, .made-here .pillars { grid-template-columns: 1fr; }
  .input-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .brand-lockup .brand-sub { font-size: 9px; letter-spacing: 0.12em; }
  .dugout-board strong { font-size: 13px; }
  .dugout-board .countdown { font-size: 14px; }
  .dugout-board .wrap { row-gap: 2px; }
}
@media (max-width: 380px) {
  .brand-lockup .brand-sub { display: none; }
  .brand-lockup .brand-name { font-size: 21px; }
}

/* ---------- post-QA additions ---------- */
#team-picker, section[id] { scroll-margin-top: 96px; }
summary::-webkit-details-marker { display: none; }
.product-card .media img.contain { object-fit: contain; background: var(--white); padding: 8px; }
.footer-col .footer-heading {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

/* Sticky mobile add-to-cart bar (PDP only) */
.pdp-sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  align-items: center;
  gap: 12px;
}
.pdp-sticky-bar .psb-info { min-width: 0; flex: 1; color: var(--chalk); }
.pdp-sticky-bar .psb-name {
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-bar .psb-price {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  color: var(--gold-bright);
}
.pdp-sticky-bar .btn { padding: 12px 22px; font-size: 16px; flex-shrink: 0; }
@media (max-width: 760px) {
  body.has-sticky-bar { padding-bottom: 72px; }
  .pdp-sticky-bar.visible { display: flex; }
}
