@font-face {
  font-family: 'Gogga';
  src: url('../assets/Gogga_Thorax.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Self-hosted latin subset so no request ever leaves for Google Fonts —
   keeps the privacy page's "no third parties" claim literally true. */
@font-face {
  font-family: 'Poor Story';
  src: url('../assets/PoorStory-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

:root {
  /* Pulled from shop.gorillatagvr.com's actual theme config */
  --bg: #162526;
  --bg-alt: #1b2f30;
  --card: #1f3839;
  --border: #2f5558;
  --cream: #f9f6e8;
  --text: #f9f6e8;
  --text-dim: #dbd499;
  --yellow: #fbc401;
  --orange: #f05824;
  --cyan: #50f0f3;
  --blue: #35a0e8;
  --magenta: #c422ff;
  --radius: 5px;
  --radius-lg: 14px;
  --font-heading: 'Gogga', sans-serif;
  --font-body: 'Poor Story', cursive, sans-serif;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: url('../assets/gt-background.png') center top / 1400px auto repeat, var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

p {
  text-wrap: pretty;
}

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

.accent { color: var(--orange); }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Announcement bar */
.announce-bar {
  background: var(--yellow);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}

/* Catalog notice: shown only when the live Fourthwall catalog is unreachable
   and the site is running on the preview catalog with email ordering. */
.catalog-notice {
  background: rgba(240,88,36,0.14);
  border-bottom: 1px solid rgba(240,88,36,0.5);
  color: var(--cream);
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
}
.catalog-notice strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  /* yellow, not orange: orange on the orange-tinted strip is 3.98:1 (fails
     AA at this size); yellow is 8.45:1 */
  color: var(--yellow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22,37,38,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.header-row .brand { justify-self: start; }
.header-row .main-nav { justify-self: center; }
.header-row .header-actions { justify-self: end; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo { width: 38px; height: 38px; }
.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand__name em { color: var(--orange); font-style: normal; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text-dim); }

.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-btn:hover { border-color: var(--orange); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: var(--bg); /* 4.92:1 on orange; cream was 3.16:1 */
  font-size: 11px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  /* dark-on-orange (4.92:1) — cream fails AA at 3.16:1, and dark ink matches
     the announce bar and this button's own yellow hover state */
  color: var(--bg);
  box-shadow: 0 6px 20px rgba(240,88,36,0.35);
}
.btn--primary:hover { background: var(--yellow); color: var(--bg); box-shadow: 0 8px 26px rgba(251,196,1,0.4); }
.btn--ghost {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn--ghost:hover { background: var(--yellow); color: var(--bg); box-shadow: 0 8px 26px rgba(251,196,1,0.35); }
.btn--full { width: 100%; text-align: center; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 500px at 15% 15%, rgba(240,88,36,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 25%, rgba(80,240,243,0.12), transparent 60%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  top: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(251,196,1,0.18), transparent 70%);
}
.hero::after {
  bottom: -80px;
  right: -40px;
  background: radial-gradient(circle, rgba(80,240,243,0.14), transparent 70%);
}
.hero__silhouette {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  opacity: 0.1;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background: rgba(251,196,1,0.08);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(42px, 8vw, 80px);
  line-height: 1.02;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0,0,0,0.4);
}
.hero__sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: 18px;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Divider: the wave path masks a transition between the color of the
   section above and the color of the section below, so it reads as a
   seam being cut between them rather than a line floating on one flat field. */
.divider {
  width: 100%;
  height: 30px;
  overflow: hidden;
}
.divider__wave {
  display: block;
  position: relative;
  top: -6px;
  width: 200%;
  height: calc(100% + 12px);
  animation: vine-wiggle 16s linear infinite;
}
.divider__before { fill: var(--bg); }
.divider__after { fill: var(--bg-alt); }
.divider--about .divider__before { fill: var(--bg-alt); }
.divider--about .divider__after { fill: var(--bg); }
@keyframes vine-wiggle {
  0%    { transform: translate(0%, 0); }
  12.5% { transform: translate(-6.25%, -4px); }
  25%   { transform: translate(-12.5%, 0); }
  37.5% { transform: translate(-18.75%, 4px); }
  50%   { transform: translate(-25%, 0); }
  62.5% { transform: translate(-31.25%, -4px); }
  75%   { transform: translate(-37.5%, 0); }
  87.5% { transform: translate(-43.75%, 4px); }
  100%  { transform: translate(-50%, 0); }
}

/* Drop section */
.drop { background: var(--bg-alt); padding: 70px 0; }
.drop__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.drop__text {
  flex: 1 1 380px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.eyebrow {
  display: block;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.drop__text h2 {
  font-size: clamp(32px, 5vw, 46px);
  margin: 10px 0 14px;
  text-transform: uppercase;
}
.drop__text p { color: var(--text-dim); margin-bottom: 22px; }
.countdown-block { margin-bottom: 24px; }
/* Deliberately NOT another eyebrow: the card already opens with one kicker
   (.eyebrow). This is a handwritten aside in the body face, lowercased, so
   the tiny-tracked-uppercase grammar isn't stamped twice in the same card. */
.countdown-label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  text-transform: lowercase;
  margin-bottom: 6px;
}
.countdown {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(240,88,36,0.1);
  border: 1px solid rgba(240,88,36,0.4);
  border-radius: var(--radius);
  padding: 10px 18px;
}
.drop__visual {
  flex: 1 1 280px;
  max-width: 340px;
  margin: 0 auto;
}
.drop__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Shop */
.shop { padding: 80px 0; background: var(--bg-alt); }
.section-title {
  position: relative;
  font-size: clamp(32px, 5vw, 44px);
  text-align: center;
  margin-bottom: 44px;
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--orange);
  border-radius: 999px;
  margin: 16px auto 0;
}
.section-title--left { text-align: left; }
.section-title--left::after { margin: 16px 0 0; }
/* Collections: a vertical vine spine connects each named drop, echoing
   the jungle-gym rope/rung climb rather than an arbitrary numbered list. */
.collections {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.collections::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 2px;
  background: repeating-linear-gradient(
    var(--border) 0, var(--border) 10px, transparent 10px, transparent 18px
  );
}
.collection { position: relative; padding-left: 32px; }
.collection__node {
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px var(--bg-alt), 0 0 0 5px var(--border);
}
/* the "climber": a marker that descends the vine spine as you scroll, tracking
   reading progress through the shop section like it's climbing down the rope.
   Sized a touch smaller than the static nodes so it visibly rides the thin
   line rather than dominating it, and re-centered on the same line (left:1px
   for a 10px dot vs the nodes' left:0 for 12px — both center on x=6px). */
.collections__climber {
  position: absolute;
  top: 0;
  left: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(240,88,36,0.7), 0 0 0 4px var(--bg-alt);
  pointer-events: none;
  z-index: 3;
  transition: top 0.35s var(--ease-out);
}
.collections__end-node {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px var(--bg-alt), 0 0 0 5px var(--border);
}
.collection__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.collection__blurb {
  color: var(--text-dim);
  font-size: 15px;
  margin: 4px 0 20px;
}

/* Trust strip: the FAQ answers live below the fold; these three facts
   (payment, guarantee, timeline) earn the sale at the point of browsing. */
.trust-strip {
  list-style: none;
  margin: -26px 0 44px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  color: var(--text-dim);
  font-size: 15px;
}
.trust-strip li { display: flex; align-items: center; gap: 9px; }
.trust-strip svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--yellow);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
/* Lift the card whose size dropdown is open above its grid siblings. */
.product-card:has(.dropdown.is-open) { z-index: 10; }
.product-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(251,196,1,0.15);
}
.product-card__art {
  background: var(--bg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Clips the image corners; the card itself can't be overflow:hidden or it
     would cut off the size dropdown's floating list. */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.product-card__art svg {
  width: 68px;
  height: 68px;
  color: var(--text-dim);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  /* dark-on-orange: cream on orange is 3.16:1, --bg on orange is 4.92:1 */
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius);
  /* slapped-on sticker tilt, alternating below, so tagged cards in the grid
     don't read as one stamped template */
  transform: rotate(-2deg);
}
.product-card:nth-child(even) .product-card__tag { transform: rotate(1.5deg); }
.product-card__body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}
.product-card__name:hover { color: var(--yellow); }
.product-card__price { color: var(--yellow); font-weight: 700; font-size: 18px; margin-top: 4px; letter-spacing: 0.05em; }
.product-card__add {
  margin-top: 10px;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
}
.product-card__add:hover:not(:disabled) { background: var(--yellow); color: var(--bg); }
.product-card__add:disabled {
  border-color: var(--border);
  color: var(--text-dim);
  cursor: not-allowed;
}
/* − qty + stepper shown in place of ADD TO CART once the item is in the cart */
.qty-stepper {
  margin-top: 10px;
  display: flex;
  align-items: stretch;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-stepper button {
  flex: none;
  width: 44px;
  padding: 9px 0;
  background: transparent;
  border: none;
  color: var(--yellow);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.qty-stepper button:hover { background: var(--yellow); color: var(--bg); }
.qty-stepper button:focus-visible { outline-offset: -3px; }
.qty-stepper__count {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Custom dropdown (size picker) */
.dropdown { position: relative; margin-top: 6px; }
.dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}
.dropdown__toggle:hover,
.dropdown.is-open .dropdown__toggle { border-color: var(--yellow); }
.dropdown__chevron {
  flex: none;
  width: 11px;
  height: 7px;
  color: var(--text-dim);
  transition: transform 0.2s var(--ease-out);
}
.dropdown.is-open .dropdown__chevron { transform: rotate(180deg); }
.dropdown__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  max-height: 216px;
  overflow-y: auto;
  z-index: 10;
}
.dropdown__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}
.dropdown__option-price { color: var(--text-dim); font-size: 13px; }
.dropdown__option:hover,
.dropdown__option:focus {
  background: var(--yellow);
  color: var(--bg);
  outline: none;
}
.dropdown__option:hover .dropdown__option-price,
.dropdown__option:focus .dropdown__option-price { color: var(--bg); }
.dropdown__option[aria-selected="true"] { color: var(--yellow); font-weight: 700; }
.dropdown__option[aria-selected="true"]:hover,
.dropdown__option[aria-selected="true"]:focus { color: var(--bg); }

/* About */
.about { padding: 70px 0; }
.about__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.about__inner p { color: var(--text-dim); margin-bottom: 16px; }
.disclaimer {
  border: 1px dashed var(--border);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 13px;
}

/* FAQ */
.faq { padding: 70px 0 90px; }
.accordion { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.accordion__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion__head {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion__head span { color: var(--orange); font-size: 20px; transition: transform 0.2s; }
.accordion__item.is-open .accordion__head span { transform: rotate(45deg); }
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.accordion__item.is-open .accordion__body { grid-template-rows: 1fr; }
.accordion__body p {
  overflow: hidden;
  min-height: 0;
  color: var(--text-dim);
  font-size: 14px;
  margin: 0;
  padding: 0 20px;
}
.accordion__item.is-open .accordion__body p { padding: 0 20px 18px; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right 0.35s var(--ease-out);
}
.cart-drawer.is-open { right: 0; }
.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__head h3 { font-family: var(--font-heading); }
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 20px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__info { display: flex; flex-direction: column; }
.cart-item__name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; }
.cart-item__meta { color: var(--text-dim); font-size: 12px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty button {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 24px; height: 24px;
  border-radius: 4px;
  cursor: pointer;
}
.cart-empty { color: var(--text-dim); text-align: center; padding: 40px 0; }
.cart-drawer__footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-total { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-bottom: 4px; text-transform: uppercase; }
.cart-total span { color: var(--yellow); }
.cart-shipping {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0 0 14px;
}
/* Escape hatch when the mailto handoff fails (webmail-only browsers). */
.email-order-panel {
  margin-top: 14px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.email-order-panel p {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0 0 8px;
}
.email-order-panel a { color: var(--cyan); }
.email-order-panel textarea {
  width: 100%;
  height: 92px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 10px;
  resize: vertical;
  margin-bottom: 8px;
}
.cart-note {
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  margin: 10px 0 0;
}

.infection-meter { margin-bottom: 16px; }
.infection-meter__bar {
  height: 8px;
  border-radius: 999px;
  /* unfilled track is a darker step of the fill's own ramp (cyan, not neutral
     gray), same convention as .claim-progress__bar, so the meter reads as
     one continuous scale */
  background: #1c3a3c;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 8px;
}
.infection-meter__fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 0.3s var(--ease-out);
}
.infection-meter--complete .infection-meter__fill {
  background: var(--yellow);
}
.infection-meter__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0;
}
.infection-meter--pulse {
  animation: infection-pulse 0.3s var(--ease-out);
}
@keyframes infection-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--orange);
  color: var(--bg); /* 4.92:1 on orange; cream was 3.16:1 */
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 200;
  font-size: 14px;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Product page */
.product-page { padding: 48px 24px 90px; }
.product-page__loading { text-align: center; color: var(--text-dim); padding: 90px 0; }
.product-page__missing { text-align: center; padding: 90px 0; }
.product-page__missing h1 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 12px; }
.product-page__missing p { color: var(--text-dim); margin: 0 auto 26px; max-width: 46ch; }
.product-page__crumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.product-page__crumbs a { color: var(--text-dim); text-decoration: none; }
.product-page__crumbs a:hover { color: var(--yellow); }
.product-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.product-page__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.product-page__stage img { width: 100%; height: 100%; object-fit: contain; }
.product-page__stage svg {
  width: 140px;
  height: 140px;
  color: var(--text-dim);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-page__thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.product-page__thumb {
  width: 68px;
  height: 68px;
  padding: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.product-page__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-page__thumb:hover { border-color: var(--yellow); }
.product-page__thumb.is-active { border: 2px solid var(--yellow); padding: 3px; }
/* Names the drop family, so it borrows .collection__eyebrow's voice (bigger,
   barely tracked) instead of repeating the crumbs' tiny-tracked treatment
   sitting directly above it. */
.product-page__collection {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange);
}
.product-page__info h1 { font-size: clamp(26px, 4vw, 40px); margin: 6px 0 10px; }
.product-page__price {
  display: block;
  color: var(--yellow);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.product-page__size-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.product-page__info .dropdown { max-width: 280px; margin: 4px 0 0; }
.product-page__add { margin-top: 18px; max-width: 280px; }
.product-page__buy .qty-stepper { margin-top: 18px; max-width: 280px; }
.product-page__buy .qty-stepper button { width: 52px; padding: 12px 0; }
.product-page__buy .qty-stepper__count { font-size: 14px; }
.product-page__desc { margin-top: 24px; color: var(--text-dim); max-width: 60ch; }
.product-page__notes {
  margin: 22px 0 0;
  padding: 16px 18px;
  list-style: none;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-page__notes a { color: var(--yellow); }
@media (max-width: 820px) {
  .product-page { padding-top: 28px; }
  .product-page__layout { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { color: var(--cream); font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.footer__links a:hover { color: var(--yellow); }
.footer__disclaimer {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Info pages (privacy, terms, size chart) */
.info-main { padding: 60px 0 90px; background: var(--bg-alt); min-height: 60vh; }
.info-container { max-width: 760px; }
.info-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 48px);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-updated {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 28px;
}
.info-section h2 {
  font-size: 19px;
  color: var(--cream);
  margin: 30px 0 8px;
}
.info-main p { color: var(--text-dim); }
.info-main a { color: var(--cyan); }
.info-main a.btn { color: var(--yellow); }
.info-back { margin-top: 36px; }

/* Adult-sizes-only callout on the size chart: parents shopping for kids need
   this before the table, not after a mis-ordered hoodie. */
.info-callout {
  border: 1px dashed var(--yellow);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 18px 0 4px;
  font-size: 15px;
}
.info-main .info-callout { color: var(--text); }
.info-callout strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow);
}

.table-scroll { overflow-x: auto; margin: 20px 0; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.size-table th, .size-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
.size-table thead th {
  background: var(--card);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.size-table tbody th {
  font-family: var(--font-heading);
  color: var(--yellow);
}
.size-table td { color: var(--text-dim); }

/* Responsive */
@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  /* Info pages have no JS/menu toggle: keep their nav inline and visible */
  .main-nav--static {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    border: none;
    background: none;
  }
  .collections::before { left: 3px; }
  .collection { padding-left: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .divider__wave { animation: none; }
  .btn:hover,
  .product-card:hover {
    transform: none;
  }
  .dropdown__chevron { transition: none; }
  .infection-meter--pulse { animation: none; }
  .infection-meter__fill { transition: none; }
  .collections__climber { transition: none; }
  .cart-drawer { transition: none; }
  .cart-overlay { transition: none; }
  .toast { transition: none; }
  .accordion__body { transition: none; }
  .accordion__head span { transition: none; }
}
