/* ==========================================================================
   Iconic Breaks — main.css  (loads AFTER Bootstrap + Tailwind; brand wins)
   Modern, white-space-forward. Bold blues + blacks. Big confident type.
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  --ic-blue: #2F5EA9;
  --ic-steel: #5F95C8;
  --ic-navy: #1C2857;
  --ic-ice: #ADCBE9;
  --ic-bright: #2EA0FF;
  --ic-ink: #06070A;
  --ic-white: #FBFCFD;
  --ic-live: #FF3B3B;

  --ic-surface: #11161F;
  --ic-tint: #F1F5FB;          /* soft blue-tinted section bg */
  --ic-line: rgba(6, 7, 10, .09);
  --ic-muted: #5B6472;

  --grad-chrome: linear-gradient(180deg, #FBFCFD 0%, #ADCBE9 38%, #5F95C8 70%, #2F5EA9 100%);
  --grad-blue: linear-gradient(135deg, #2F5EA9 0%, #2EA0FF 100%);
  --grad-spotlight: linear-gradient(160deg, #11161F 0%, #06070A 100%);

  --font-display: "Anton", "Saira Condensed", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(28, 40, 87, .55);
  --shadow-sm: 0 10px 30px -16px rgba(28, 40, 87, .5);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* 2. BASE ------------------------------------------------------------------ */
/* Global reset. The lighter Bootstrap grid build has no Reboot, so the theme
   owns box-sizing — grid columns use padding gutters and NEED border-box. */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ic-ink);
  background: var(--ic-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--ic-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ic-navy); }
:focus-visible { outline: 3px solid var(--ic-bright); outline-offset: 3px; border-radius: 4px; }
.container { max-width: var(--wrap); }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tint { background: var(--ic-tint); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 60ch; }
.section-head.text-center { margin-inline: auto; }

/* Utility fallbacks — kept in-theme so we don't depend on the full Bootstrap
   bundle (we load the lighter grid-only build). Safe if Bootstrap also defines
   them: identical values, and Bootstrap's !important versions win when present. */
.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap; }

/* 3. TYPE ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 .35em;
  color: var(--ic-ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ic-muted); }

.text-chrome {
  background: var(--grad-chrome);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ic-blue);
  display: inline-flex; align-items: center; gap: .5em;
  margin-bottom: .8rem;
}
.eyebrow--light { color: var(--ic-ice); }
.eyebrow .ic-icon { width: 1.1em; height: 1.1em; }

/* 4. ICONS ----------------------------------------------------------------- */
.ic-icon { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: -.18em; flex: none; }

/* 5. BUTTONS (brand colors only — no red CTAs) ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em;
  font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: 999px; border: 2px solid transparent;
  background: var(--grad-blue); color: #fff;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: #fff; }
.btn .ic-icon { width: 1.05em; height: 1.05em; }
.btn--blue { background: var(--grad-blue); color: #fff; }
.btn--ink { background: var(--ic-ink); color: #fff; box-shadow: none; }
.btn--ink:hover { background: var(--ic-navy); }
.btn--outline { background: transparent; color: var(--ic-blue); border-color: var(--ic-blue); box-shadow: none; }
.btn--outline:hover { background: var(--ic-blue); color: #fff; }
.btn--outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn--outline-light:hover { background: #fff; color: var(--ic-ink); border-color: #fff; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.12rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.w-100 { width: 100%; }

/* 6. HEADER — full-width sticky; whole bar sticks; content stretches wide --- */
.site-header { position: sticky; top: 0; z-index: 100; }

/* Full-width inner container (maximizes horizontal space). */
.header-container { width: 100%; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3.5rem); }

.topbar { background: var(--ic-ink); color: var(--ic-ice); font-size: .82rem; }
.topbar-inner { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; padding-block: .55rem; flex-wrap: wrap; }
.topbar a { color: var(--ic-ice); }
.topbar a:hover { color: #fff; }
.topbar .tagline { font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.topbar .dot { margin-inline: .5rem; opacity: .5; }

/* The bar itself spans the full viewport width so the entire bar scrolls/sticks. */
.header-bar {
  background: rgba(251, 252, 253, .92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--ic-line);
}
/* 3-column grid: nav is centered in the middle column, so it stays centered
   no matter how wide the logo or the (live-state) actions get. */
.header-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
  padding-block: .9rem;
}
.header-row .site-logo, .header-row .custom-logo { justify-self: start; }
.header-row .primary-nav { justify-self: center; }
.header-row .header-actions { justify-self: end; }
.site-logo img, .custom-logo { height: clamp(46px, 6vw, 62px); width: auto; }

.primary-nav ul { list-style: none; display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); margin: 0; padding: 0; }
.primary-nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.05rem; color: var(--ic-ink); padding: .4rem 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 3px;
  background: var(--grad-blue); border-radius: 2px; transition: right .25s var(--ease);
}
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-link { position: relative; color: var(--ic-ink); display: inline-flex; padding: .4rem; }
.cart-link .ic-icon { width: 1.6rem; height: 1.6rem; }
.cart-link:hover { color: var(--ic-blue); }
.cart-count {
  position: absolute; top: -4px; right: -6px; min-width: 18px; height: 18px;
  background: var(--ic-blue); color: #fff; border-radius: 999px;
  font-family: var(--font-body); font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; padding: 0 4px;
}
.watch-live { padding: .7rem 1.3rem; font-size: .95rem; }
/* Only rendered while a break is live — pulse so it reads as "on air". */
.live-dot { width: .55em; height: .55em; border-radius: 50%; background: #fff; display: inline-block; animation: ic-pulse 1.3s infinite; }

/* Account dropdown */
.acct-menu { position: relative; }
.acct-toggle {
  background: none; border: 0; padding: .4rem; cursor: pointer; color: var(--ic-ink);
  display: inline-flex; align-items: center; transition: color .2s var(--ease);
}
.acct-toggle .ic-icon { width: 1.6rem; height: 1.6rem; }
.acct-toggle:hover, .acct-menu.is-open .acct-toggle { color: var(--ic-blue); }
.acct-drop {
  position: absolute; right: 0; top: calc(100% + .7rem); min-width: 210px; z-index: 200;
  background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .45rem; display: grid; gap: .1rem;
}
.acct-drop[hidden] { display: none; }
.acct-drop a {
  display: block; padding: .6rem .8rem; border-radius: 8px;
  color: var(--ic-ink); font-weight: 600; font-size: .95rem;
}
.acct-drop a:hover { background: var(--ic-tint); color: var(--ic-blue); }
.acct-hi {
  padding: .5rem .8rem .6rem; color: var(--ic-muted); font-size: .85rem;
  border-bottom: 1px solid var(--ic-line); margin-bottom: .25rem;
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ic-ink); margin: 5px 0; border-radius: 2px; transition: .25s var(--ease); }

/* 7. HERO ------------------------------------------------------------------ */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-bg); background-size: cover; background-position: center;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(6,7,10,.82) 0%, rgba(11,18,38,.65) 45%, rgba(11,18,38,.25) 100%);
}
.hero-inner { padding-block: clamp(4rem, 11vw, 8.5rem); }
.hero-title { color: #fff; font-size: clamp(3rem, 8vw, 6.2rem); margin-bottom: 1.1rem; }
.hero-sub { color: rgba(255,255,255,.88); font-size: clamp(1.1rem, 1.7vw, 1.4rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2.8rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stats strong { font-family: var(--font-display); font-size: 1.9rem; display: block; color: #fff; line-height: 1; }
.hero-stats span { font-size: .85rem; letter-spacing: .04em; color: var(--ic-ice); text-transform: uppercase; }

/* Featured floating card */
.feature-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); color: var(--ic-ink);
}
.feature-card-media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem;
}
.feature-card-media .card-img,
.feature-card-media .img-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; z-index: 0; }
.feature-price {
  z-index: 1; background: var(--ic-ink); color: #fff; font-family: var(--font-display);
  letter-spacing: .03em; font-size: .85rem; padding: .45rem .85rem; border-radius: 999px;
  margin-left: auto; align-self: flex-end;
}
.feature-card-body { padding: 1.5rem; }
.feature-kicker { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--ic-blue); margin-bottom: .5rem; }
.feature-card-body h3 { margin-bottom: .6rem; }
.feature-meta { display: flex; align-items: center; gap: .5em; color: var(--ic-muted); font-size: .95rem; margin-bottom: 1.1rem; }

/* Feature badge (no-break fallback / featured drop — brand blue, no pulse) */
.badge-feature {
  z-index: 1; display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; color: #fff; background: var(--grad-blue); padding: .4rem .85rem; border-radius: 999px;
}
.badge-feature .ic-icon { width: 1em; height: 1em; }

/* LIVE badge */
.badge-live {
  z-index: 1; display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; color: #fff; background: var(--ic-live); padding: .4rem .85rem; border-radius: 999px;
}
.badge-live::before { content: ""; width: .55em; height: .55em; border-radius: 50%; background: #fff; animation: ic-pulse 1.3s infinite; }
@keyframes ic-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* 8. SPLIT CARDS ----------------------------------------------------------- */
.split-card {
  height: 100%; background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.split-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.split-card--dark { background: var(--grad-spotlight); color: #fff; border-color: transparent; }
.split-card--dark h3 { color: #fff; }
.split-card--dark p { color: var(--ic-ice); }
.split-icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: rgba(47,94,169,.12); color: var(--ic-blue); margin-bottom: 1.2rem; }
.split-card--dark .split-icon { background: rgba(255,255,255,.1); color: var(--ic-ice); }
.split-icon .ic-icon { width: 1.8rem; height: 1.8rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 700; }
.link-arrow .ic-icon { transition: transform .2s var(--ease); }
.link-arrow:hover .ic-icon { transform: translateX(4px); }
.link-arrow--light { color: var(--ic-ice); }
.link-arrow--light:hover { color: #fff; }

/* 8a. GENERIC CARD (theme — overrides Bootstrap's padding-less .card) ------- */
.card {
  background: #fff;
  border: 1px solid var(--ic-line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.card > :first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }

/* 8b. IMAGE PLACEHOLDERS (swappable media slots) --------------------------- */
.card-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-ph {
  position: relative; display: grid; place-items: center;
  background: linear-gradient(135deg, #E8EEF7, #CDDDF0); color: var(--ic-blue);
  overflow: hidden;
}
.img-ph::before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image: repeating-linear-gradient(45deg, rgba(47,94,169,.16) 0 2px, transparent 2px 14px);
}
.img-ph-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: .45rem; text-align: center; padding: .5rem; }
.img-ph-inner .ic-icon { width: 2.1rem; height: 2.1rem; opacity: .85; }
.img-ph-label { font-family: var(--font-body); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

/* 9. CATEGORY TILES (image + bottom gradient mask + overlaid label) -------- */
.cat-tile {
  position: relative; display: block; height: 100%; aspect-ratio: 3 / 4;
  border-radius: var(--radius); overflow: hidden; color: #fff;
  box-shadow: var(--shadow-sm); isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: #fff; }
.cat-tile .card-img { position: absolute; inset: 0; z-index: -2; transition: transform .4s var(--ease); }
.cat-tile:hover .card-img { transform: scale(1.07); }
.cat-tile .img-ph { position: absolute; inset: 0; z-index: -2; }
.cat-tile-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6,7,10,.88) 0%, rgba(6,7,10,.45) 38%, rgba(6,7,10,.05) 68%, transparent 100%);
}
.cat-tile-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.15rem;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.05;
}
.cat-tile-label .ic-icon { width: 1.1em; height: 1.1em; opacity: 0; transform: translateX(-6px); transition: .25s var(--ease); }
.cat-tile:hover .cat-tile-label .ic-icon { opacity: 1; transform: translateX(0); }

/* 10. PRODUCT CARDS -------------------------------------------------------- */
.product-card {
  height: 100%; background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* display:block so aspect-ratio works when .product-media is an <a> (dynamic loop). */
.product-media { display: block; position: relative; aspect-ratio: 1; overflow: hidden; }
.product-media .card-img, .product-media .img-ph { position: absolute; inset: 0; transition: transform .4s var(--ease); }
.product-card:hover .product-media .card-img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: .8rem; left: .8rem; background: var(--ic-ink); color: #fff;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em;
  font-size: .72rem; padding: .35rem .7rem; border-radius: 999px;
}
.product-body { padding: 1.2rem; }
.product-title { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.02rem; line-height: 1.3; margin-bottom: .9rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.product-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--ic-blue); }

/* 10b. ABOUT THE SHOP ------------------------------------------------------ */
.about-media { position: relative; aspect-ratio: 5 / 6; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media .card-img, .about-media .img-ph { position: absolute; inset: 0; }
.about-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(6,7,10,.78); color: #fff; backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: .7rem 1rem; display: flex; align-items: center; gap: .6rem;
}
.about-badge .ic-icon { width: 1.4rem; height: 1.4rem; color: var(--ic-ice); }
.about-badge strong { font-family: var(--font-display); display: block; line-height: 1; font-size: 1.05rem; }
.about-badge span { font-size: .78rem; color: var(--ic-ice); }
.about-points { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .85rem; }
.about-points li { display: flex; align-items: flex-start; gap: .7rem; }
.about-points .ic-icon { width: 1.4rem; height: 1.4rem; color: #fff; background: var(--grad-blue); border-radius: 999px; padding: 4px; flex: none; margin-top: .1rem; }

/* 10c. BREAK REPLAYS (video history) --------------------------------------- */
.video-card {
  height: 100%; background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb .card-img, .video-thumb .img-ph { position: absolute; inset: 0; transition: transform .4s var(--ease); }
.video-card:hover .video-thumb .card-img { transform: scale(1.06); }
.video-thumb::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(6,7,10,.55), transparent 55%); }

/* Swappable video slot (embed facade or placeholder) */
.video-embed { position: absolute; inset: 0; z-index: 2; display: block; width: 100%; height: 100%; padding: 0; margin: 0; border: 0; background: none; cursor: pointer; text-align: left; }
.video-embed--empty { cursor: default; }
.video-embed > .card-img, .video-embed > .img-ph { position: absolute; inset: 0; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 64px; height: 64px; border-radius: 999px; border: 0;
  background: rgba(47,94,169,.92); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.6); transition: transform .2s var(--ease), background .2s var(--ease);
}
.video-card:hover .video-play { transform: scale(1.08); background: var(--ic-blue); }
.video-play .ic-icon { width: 1.8rem; height: 1.8rem; margin-left: 3px; }
.video-duration {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 3; pointer-events: none;
  background: rgba(6,7,10,.85); color: #fff; font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; padding: .2rem .55rem; border-radius: 6px;
}
.video-body { padding: 1.1rem 1.2rem 1.3rem; }
.video-title { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.02rem; line-height: 1.3; margin-bottom: .5rem; }
.video-meta { display: flex; align-items: center; gap: .45em; color: var(--ic-muted); font-size: .85rem; margin: 0; }

/* 11. TRUST STRIP ---------------------------------------------------------- */
.trust-item { text-align: left; }
.trust-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--ic-blue); box-shadow: var(--shadow-sm); margin-bottom: 1rem; }
.trust-icon .ic-icon { width: 1.7rem; height: 1.7rem; }
.trust-item p { color: var(--ic-muted); }

/* 11b. TESTIMONIALS -------------------------------------------------------- */
.testi-card { height: 100%; background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.testi-stars { display: flex; gap: .15rem; color: var(--ic-blue); }
.testi-stars .ic-icon { width: 1.15rem; height: 1.15rem; fill: currentColor; stroke: none; }
.testi-quote { font-size: 1.05rem; line-height: 1.55; margin: 0; color: var(--ic-ink); }
.testi-person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testi-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--grad-blue); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1rem; flex: none; }
.testi-name { font-weight: 700; line-height: 1.2; }
.testi-role { font-size: .85rem; color: var(--ic-muted); }

/* 11c. FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item { background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.08rem; color: var(--ic-ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; font-family: var(--font-body); font-weight: 700; font-size: 1.6rem; color: var(--ic-blue); transition: transform .25s var(--ease); line-height: 1; }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: var(--ic-muted); }
.faq-answer p { margin: 0; }

/* 11d. NEWSLETTER ---------------------------------------------------------- */
.newsletter { background: var(--ic-tint); }
.newsletter-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.newsletter-form { display: flex; gap: .8rem; max-width: 520px; margin: 1.6rem auto 0; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 240px; min-width: 0; padding: 1rem 1.2rem; font-size: 1rem; font-family: var(--font-body);
  border: 2px solid var(--ic-line); border-radius: 999px; background: #fff; color: var(--ic-ink);
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--ic-blue); }
.newsletter-form .btn { flex: 0 0 auto; }
.newsletter-fine { font-size: .82rem; color: var(--ic-muted); margin-top: .9rem; }

/* 11d2. CHOOSE YOUR WORLD (Sports vs TCG split entry) --------------------- */
.world-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.world-door {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: clamp(220px, 30vw, 320px); display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.4rem); color: #fff; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.world-door:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: #fff; }
.world-door::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 25%, rgba(6,7,10,.72)); }
.world-door > * { position: relative; z-index: 2; }
.world-door .world-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; opacity: .9; }
.world-door h3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: .2rem 0 .3rem; color: #fff; }
.world-door p { color: rgba(255,255,255,.85); margin: 0 0 1.1rem; max-width: 34ch; }
.world-door .btn { align-self: flex-start; }
.world-door--sports {
  background:
    radial-gradient(700px 400px at 80% -10%, rgba(46,160,255,.5), transparent 60%),
    linear-gradient(150deg, #1C2857, #06070A 75%);
}
.world-door--tcg {
  background:
    radial-gradient(500px 320px at 12% -10%, rgba(255,203,5,.4), transparent 60%),
    radial-gradient(500px 320px at 100% 120%, rgba(139,92,246,.5), transparent 55%),
    linear-gradient(150deg, #201a3a, #06070A 75%);
}
.world-door--breaks {
  background:
    radial-gradient(500px 320px at 15% -10%, rgba(46,160,255,.4), transparent 60%),
    radial-gradient(460px 300px at 100% 120%, rgba(255,59,59,.28), transparent 55%),
    linear-gradient(150deg, #101728, #06070A 78%);
}
.world-door .world-motif { position: absolute; z-index: 1; opacity: .3; width: 120px; height: 120px; top: -14px; right: -10px; }

/* Three-door variant (Sports / TCG / Live Breaks) */
.world-split--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .world-split--3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .world-split { grid-template-columns: 1fr; } }

/* 11e. LIVE BREAKS PAGE ---------------------------------------------------- */
.live-stage-section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.live-head { margin-bottom: 2rem; }
.live-head h1 { color: #fff; }
.live-sub { color: var(--ic-ice); max-width: 54ch; margin-inline: auto; }
.live-stage {
  position: relative; aspect-ratio: 16 / 9; max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; background: #000;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); border: 1px solid rgba(173,203,233,.15);
}
.live-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.live-stage--link { display: grid; place-items: center; gap: 1rem; background: var(--grad-spotlight); text-align: center; padding: 2rem; }
.live-stage-note { color: var(--ic-ice); font-size: .85rem; max-width: 40ch; margin: 0; }
.live-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.live-next { max-width: 430px; margin: 0 auto; }
.platforms { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
.live-body { max-width: 720px; margin: 2.5rem auto 0; }

/* 11e2. PRICING CARDS (PSA grading fees) ---------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.price-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--feature { border-color: var(--ic-blue); box-shadow: 0 0 0 2px var(--ic-blue) inset, var(--shadow-sm); }
.price-card .price-tier { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.15rem; margin: 0 0 .4rem; }
.price-card .price-amt { font-family: var(--font-display); color: var(--ic-blue); font-size: 2.4rem; line-height: 1; }
.price-card .price-amt span { font-family: var(--font-body); font-size: .9rem; color: var(--ic-muted); font-weight: 600; }
.price-card .price-turn { font-weight: 700; margin: .8rem 0 .6rem; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.price-card ul li { display: flex; gap: .5rem; align-items: flex-start; color: var(--ic-muted); font-size: .92rem; }
.price-card ul li .ic-icon { width: 1.1rem; height: 1.1rem; color: var(--ic-blue); flex: none; margin-top: .15rem; }
.price-note { color: var(--ic-muted); font-size: .88rem; margin-top: 1.4rem; text-align: center; }

@media (max-width: 992px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .price-grid { grid-template-columns: 1fr; } }

/* 11f. INNER PAGES (About / Visit / Grading / Contact) -------------------- */
.page-hero { background: var(--ic-tint); text-align: center; padding-block: clamp(3rem, 7vw, 5rem); }
#grading-request { scroll-margin-top: 110px; }
.page-hero .lead { max-width: 60ch; margin-inline: auto; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ic-icon { width: 1.5rem; height: 1.5rem; color: var(--ic-blue); flex: none; margin-top: .15rem; }
.info-list strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1rem; }
.info-list span { color: var(--ic-muted); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .65rem 0; border-bottom: 1px solid var(--ic-line); }
.hours-table th { font-family: var(--font-body); font-weight: 600; }
.hours-table td { text-align: right; color: var(--ic-muted); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--ic-blue); font-weight: 700; }

.map-embed { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--ic-line); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Numbered process steps */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.steps.cols { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius); padding: 1.8rem 1.4rem 1.4rem; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 1.4rem; width: 38px; height: 38px; border-radius: 999px; background: var(--grad-blue); color: #fff; font-family: var(--font-display); display: grid; place-items: center; font-size: 1.1rem; }
.step h3 { font-size: 1.1rem; margin-top: .4rem; }
.step p { color: var(--ic-muted); margin: 0; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.ic-form { display: grid; gap: 1rem; }
.ic-field { display: grid; gap: .4rem; }
.ic-field label { font-weight: 600; font-size: .95rem; }
.ic-field input, .ic-field textarea {
  width: 100%; padding: .9rem 1.1rem; font: inherit; color: var(--ic-ink);
  background: #fff; border: 2px solid var(--ic-line); border-radius: var(--radius-sm);
}
.ic-field input:focus, .ic-field textarea:focus { outline: none; border-color: var(--ic-blue); }
.ic-field textarea { min-height: 150px; resize: vertical; }
.ic-hp { position: absolute; left: -9999px; }   /* honeypot */
.ic-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; cursor: pointer; }
.ic-check input { margin-top: .25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--ic-blue); flex: none; }
.ic-fine { font-size: .85rem; color: var(--ic-muted); margin: .2rem 0 0; }
.ic-notice { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-weight: 600; }
.ic-notice--ok { background: rgba(47,94,169,.1); color: var(--ic-navy); border: 1px solid var(--ic-steel); }
.ic-notice--err { background: rgba(255,59,59,.08); color: #a11; border: 1px solid #f3b1b1; }

/* Two-brand cards reuse split-card; small value tiles reuse trust-item */
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (max-width: 900px) {
  .steps.cols { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .brand-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .steps.cols { grid-template-columns: 1fr; } }

/* 11g. SIDEBAR / WIDGET AREAS --------------------------------------------- */
.content-with-sidebar.has-sidebar {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 3rem); align-items: start;
}
.widget-area { display: grid; gap: clamp(1.4rem, 3vw, 2rem); position: sticky; top: 120px; }
.widget {
  background: #fff; border: 1px solid var(--ic-line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.widget-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.1rem; margin: 0 0 1.1rem; }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.widget ul ul { margin-top: .55rem; padding-left: 1rem; }
.widget ul li a { color: var(--ic-ink); }
.widget ul li a:hover { color: var(--ic-blue); }
.widget .current-menu-item > a, .widget .current-cat > a { color: var(--ic-blue); font-weight: 700; }
.widget select { width: 100%; padding: .65rem .8rem; border: 2px solid var(--ic-line); border-radius: var(--radius-sm); font: inherit; background: #fff; }
.widget input[type="search"], .widget .search-field, .widget input[type="text"] {
  width: 100%; padding: .7rem 1rem; border: 2px solid var(--ic-line); border-radius: 999px; font: inherit;
}
.widget input[type="search"]:focus, .widget .search-field:focus { outline: none; border-color: var(--ic-blue); }

@media (max-width: 900px) {
  .content-with-sidebar.has-sidebar { grid-template-columns: 1fr; }
  .widget-area { position: static; }
}

/* 12. SPOTLIGHT / CTA BAND ------------------------------------------------- */
.spotlight { background: var(--grad-spotlight); color: #fff; }
.spotlight h1, .spotlight h2, .spotlight h3 { color: #fff; }
.spotlight .ibs-empty { color: var(--ic-ice); }
.cta-band { padding-block: clamp(3.5rem, 8vw, 6rem); }
.cta-sub { color: var(--ic-ice); font-size: 1.15rem; max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

/* mode-breaks (Live Breaks / Watch Live pages default to dark main) */
.mode-breaks .site-main { background: var(--ic-ink); color: var(--ic-white); }
.mode-breaks .site-main h1, .mode-breaks .site-main h2, .mode-breaks .site-main h3 { color: #fff; }

/* 13. FOOTER --------------------------------------------------------------- */
.site-footer { background: var(--grad-spotlight); color: var(--ic-ice); margin-top: 0; }
.site-footer a { color: var(--ic-ice); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); grid-template-columns: 1.5fr 1fr 1fr; }
.site-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.footer-brand img { height: 58px; width: auto; margin-bottom: 1rem; }
.footer-relationship { font-size: .95rem; color: var(--ic-ice); max-width: 34ch; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer-socials a { font-family: var(--font-display); text-transform: uppercase; font-size: .78rem; letter-spacing: .05em; border: 1px solid rgba(173,203,233,.3); border-radius: 999px; padding: .45rem .9rem; }
.footer-socials a:hover { background: var(--ic-blue); color: #fff; border-color: var(--ic-blue); }
.footer-bottom { border-top: 1px solid rgba(173,203,233,.15); padding-block: 1.3rem; font-size: .82rem; color: rgba(173,203,233,.7); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* 14. UTILITIES ------------------------------------------------------------ */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ic-ink); color: #fff; padding: .8rem 1.2rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* 15. RESPONSIVE ----------------------------------------------------------- */
@media (max-width: 991px) {
  .feature-card { margin: 2.5rem auto 0; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .nav-toggle { display: block; }
  /* CRITICAL: a backdrop-filter (or transform/filter) on an ancestor makes it the
     containing block for position:fixed children, which would trap the drawer
     INSIDE the header instead of the viewport. Drop the blur on mobile so the
     fixed drawer anchors to the screen and fills full height. */
  .header-bar { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .primary-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(82vw, 320px);            /* explicit width so translateX(100%) fully hides it */
    background: var(--ic-white);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    padding: 5.5rem 1.75rem 2rem; box-shadow: var(--shadow);
    z-index: 90; overflow-y: auto;      /* scroll if the menu ever outgrows the screen */
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 1.35rem; align-items: flex-start; }
  .primary-nav a { font-size: 1.3rem; }   /* larger tap targets */
  body.nav-open { overflow: hidden; }      /* lock background scroll while the drawer is open */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .topbar-contact { display: none; }
  .header-row { gap: .65rem; }
  .watch-live { padding: .6rem 1rem; font-size: .85rem; }
  .hero-cta .btn { flex: 1 1 auto; }
  .section-head--row { align-items: flex-start; flex-direction: column; }
  .hero-stats { gap: 1.4rem; }
  .hero-stats strong { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .watch-live .ic-icon { display: none; }
  .cart-link .ic-icon { width: 1.4rem; height: 1.4rem; }
  .btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
  .hero-cta { gap: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}
