/* ============================================================
   GLITCH TAVERN — synth-brutalism stylesheet
   Palette: graphite / matte black / white + acid yellow CTA only
   Type: Bebas Neue display (oversized brutalist) + Inter UI
   Shadows: flat OR hard 4px 4px 0 #000 100% opacity (no soft)
   Layout: bottom-anchored header → pill on scroll, masonry catalog
   ============================================================ */

:root {
  --graphite:  #1C1C1C;
  --ink:       #0A0A0A;
  --ink-2:     #161616;
  --paper:     #FFFFFF;
  --paper-2:   #F4F4F4;
  --paper-3:   #E8E8E8;
  --mute:      #888888;
  --mute-2:    #555555;
  --rule:      rgba(255,255,255,.10);
  --rule-d:    rgba(10,10,10,.10);

  --acid:      #E5FF00;
  --acid-2:    #C3D900;
  --crit:      #FF3636;

  --display:   'Bebas Neue', Impact, Haettenschweiler, sans-serif;
  --ui:        'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:      'JetBrains Mono', 'Cascadia Mono', monospace;

  --wrap:      1320px;
  --pad:       clamp(16px, 4vw, 28px);

  --hard:      4px 4px 0 #000;
  --hard-acid: 4px 4px 0 var(--acid);
  --hard-paper: 4px 4px 0 var(--paper);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px; /* bottom-anchored header */
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--mute-2); }
button { font-family: inherit; cursor: pointer; }

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

/* ============================================================
   WRAP / SECTIONS
   ============================================================ */
.gt-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.gt-section { padding: 96px 0; position: relative; }
.gt-section--tight { padding: 56px 0; }
@media (max-width: 720px) { .gt-section { padding: 56px 0; } .gt-section--tight { padding: 36px 0; } }
.gt-section--dark { background: var(--ink); color: var(--paper); }
.gt-section--graphite { background: var(--graphite); color: var(--paper); }

/* ============================================================
   TYPOGRAPHY — Bebas display + Inter UI
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  margin: 0;
  font-weight: 700;
  line-height: .85;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(40px, 6vw, 96px); }
h2 { font-size: clamp(36px, 4.4vw, 64px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: 18px; }

p { margin: 0 0 14px; }

.gt-kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; display: inline-block;
  padding: 6px 10px;
  background: var(--ink); color: var(--acid);
  margin: 0 0 14px;
}
.gt-kicker--paper { background: var(--acid); color: var(--ink); }
.gt-kicker--crit  { background: var(--crit); color: var(--paper); }

.gt-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--mute); display: inline-block;
  margin: 0 0 10px;
}

.gt-section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 28px; margin: 0 0 36px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.gt-section-head h2 em { font-style: normal; color: var(--acid); background: var(--ink); padding: 0 8px; }
.gt-section--dark .gt-section-head { border-bottom-color: var(--paper); }

/* ============================================================
   BUTTONS — flat or hard-shadow; acid yellow only for buy
   ============================================================ */
.gt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ui); font-size: 14px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform .08s, box-shadow .08s, background .12s, color .12s;
  border-radius: 0;
}
.gt-btn:hover { background: var(--paper); color: var(--ink); }
.gt-btn:active { transform: translate(2px,2px); }

.gt-btn--buy {
  background: var(--acid); color: var(--ink); border-color: var(--ink);
  font-size: 15px; padding: 16px 26px;
  box-shadow: var(--hard);
}
.gt-btn--buy:hover { background: var(--ink); color: var(--acid); box-shadow: 2px 2px 0 #000; }
.gt-btn--buy:active { transform: translate(4px,4px); box-shadow: 0 0 0 #000; }

.gt-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.gt-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.gt-section--dark .gt-btn--ghost { color: var(--paper); border-color: var(--paper); }
.gt-section--dark .gt-btn--ghost:hover { background: var(--paper); color: var(--ink); }

.gt-btn--sm { font-size: 12px; padding: 10px 16px; }

/* ============================================================
   BOTTOM-ANCHORED HEADER → PILL ON SCROLL
   ============================================================ */
.gt-header {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: var(--paper);
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  z-index: 200;
  border-top: 2px solid var(--ink);
  transition: max-width .35s cubic-bezier(.6,.04,.2,1),
              left .35s cubic-bezier(.6,.04,.2,1),
              right .35s cubic-bezier(.6,.04,.2,1),
              bottom .35s cubic-bezier(.6,.04,.2,1),
              border-radius .25s,
              padding .25s,
              backdrop-filter .25s,
              background .25s;
}
body.is-scrolled .gt-header {
  left: 50%; right: auto;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: 620px; width: calc(100% - 36px);
  border-radius: 999px;
  padding: 10px 20px;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,.88);
  box-shadow: var(--hard);
}
.gt-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--paper);
}
.gt-brand-logo { width: 96px; height: 24px; display: block; }
body.is-scrolled .gt-brand-logo { width: 80px; height: 20px; }

.gt-nav {
  display: flex; gap: 4px; align-items: center;
}
.gt-nav a {
  font-family: var(--ui); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  text-decoration: none; color: var(--paper);
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: color .12s, background .12s;
}
.gt-nav a:hover, .gt-nav a.is-active { background: var(--acid); color: var(--ink); }
.gt-nav a.gt-nav-cart { background: var(--acid); color: var(--ink); padding: 8px 14px; font-weight: 900; }
.gt-nav a.gt-nav-cart:hover { background: var(--paper); }

@media (max-width: 720px) {
  .gt-header { padding: 12px 14px; }
  .gt-nav a { padding: 6px 9px; font-size: 11px; }
  .gt-brand-logo { width: 80px; height: 20px; }
}

/* ============================================================
   HERO — full-screen video bg, stroke-only oversized title,
   3-zone safe area for kicker + title + price/CTA (no empty quad)
   ============================================================ */
.gt-hero {
  position: relative;
  height: 92vh; min-height: 600px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.gt-hero-video, .gt-hero-poster {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(1.05);
}
.gt-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto 1fr;
  height: 100%; padding: 48px;
  gap: 18px;
}
.gt-hero-zone {
  display: flex; flex-direction: column;
}
.gt-hero-zone--tl   { grid-area: 1/1; align-items: flex-start; }
.gt-hero-zone--tr   { grid-area: 1/3; align-items: flex-end; }
.gt-hero-zone--c    { grid-area: 2/1/3/4; align-items: center; justify-content: center; }
.gt-hero-zone--bl   { grid-area: 3/1; align-items: flex-start; justify-content: flex-end; }
.gt-hero-zone--br   { grid-area: 3/3; align-items: flex-end; justify-content: flex-end; }

.gt-hero-kicker {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--acid);
  background: var(--ink); padding: 8px 12px;
}
.gt-hero-title {
  font-family: var(--display);
  font-size: clamp(64px, 14vw, 220px);
  line-height: .82; letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}
.gt-hero-title em { font-style: normal; color: var(--acid); -webkit-text-stroke: 0; }
.gt-hero-meta {
  font-family: var(--mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--paper); background: rgba(10,10,10,.65);
  padding: 8px 12px;
}
.gt-hero-price {
  font-family: var(--display); font-size: clamp(40px, 5vw, 64px);
  color: var(--paper); line-height: 1;
}
.gt-hero-bottom-row { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

@media (max-width: 900px) {
  .gt-hero { height: 86vh; }
  .gt-hero-grid { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; padding: 24px; }
  .gt-hero-zone--tl, .gt-hero-zone--c, .gt-hero-zone--br { grid-area: auto; align-items: flex-start; justify-content: flex-start; }
  .gt-hero-title { font-size: clamp(56px, 16vw, 120px); }
}

/* ============================================================
   MANIFESTO STRIP — full-bleed acid yellow, oversized type
   ============================================================ */
.gt-manifesto {
  background: var(--acid);
  color: var(--ink);
  padding: 80px 0;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.gt-manifesto-text {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 120px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.01em;
  max-width: 18ch;
  margin: 0;
}
.gt-manifesto-text strong {
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

/* ============================================================
   MASONRY CATALOG — column-count true masonry
   ============================================================ */
.gt-masonry {
  column-count: 4;
  column-gap: 20px;
}
.gt-c {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  position: relative;
  text-decoration: none;
  color: var(--ink);
  transition: transform .12s, box-shadow .12s;
}
.gt-c:hover { transform: translate(-2px, -2px); box-shadow: var(--hard-acid); }
.gt-c-art { background: var(--paper-2); overflow: hidden; }
.gt-c-art img { width: 100%; height: 100%; object-fit: cover; }

.gt-c--sm .gt-c-art { aspect-ratio: 4/3; }
.gt-c--md .gt-c-art { aspect-ratio: 1/1; }
.gt-c--lg .gt-c-art { aspect-ratio: 3/4; }
.gt-c--xl .gt-c-art { aspect-ratio: 3/5; }

.gt-c-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 2px solid var(--ink);
}
.gt-c-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); background: var(--acid); padding: 3px 6px;
  align-self: flex-start;
}
.gt-c-name {
  font-family: var(--display); font-size: 22px;
  text-transform: uppercase; line-height: .95;
  color: var(--ink); margin: 4px 0 2px;
}
.gt-c-meta {
  font-family: var(--ui); font-size: 12px; color: var(--mute);
  text-transform: uppercase; letter-spacing: .04em;
}
.gt-c-desc {
  font-family: var(--ui); font-size: 13px; color: var(--mute-2);
  line-height: 1.45; margin: 4px 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gt-c-foot {
  margin-top: auto; padding-top: 10px;
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--ink);
}
.gt-c-price { font-family: var(--display); font-size: 24px; color: var(--ink); line-height: 1; }
.gt-c-was { font-family: var(--ui); font-size: 13px; color: var(--mute); text-decoration: line-through; margin-left: 8px; }
.gt-c-buy {
  font-family: var(--mono); font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--acid); color: var(--ink);
  padding: 9px 12px; border: 2px solid var(--ink); cursor: pointer;
}
.gt-c-buy:hover { background: var(--ink); color: var(--acid); }
.gt-c-sale {
  position: absolute; top: -2px; right: -2px;
  font-family: var(--mono); font-size: 11px; font-weight: 800;
  background: var(--crit); color: var(--paper);
  padding: 6px 10px; border: 2px solid var(--ink);
  letter-spacing: .08em;
}

@media (max-width: 1100px) { .gt-masonry { column-count: 3; } }
@media (max-width: 720px)  { .gt-masonry { column-count: 2; } .gt-c-name { font-size: 19px; } }
@media (max-width: 420px)  { .gt-masonry { column-count: 1; } }

/* ============================================================
   DIAGONAL SPLIT (feature section variant)
   ============================================================ */
.gt-split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 4px solid var(--ink);
  position: relative;
}
.gt-split-photo {
  background-size: cover; background-position: center;
  min-height: 460px;
  position: relative;
}
.gt-split-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--acid) 60%);
}
.gt-split-text {
  background: var(--ink); color: var(--paper);
  padding: 48px 48px 56px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px;
}
.gt-split-text h2 { color: var(--paper); }
.gt-split-text h2 em { color: var(--acid); background: transparent; padding: 0; }
.gt-split-text p { font-family: var(--ui); font-size: 16px; line-height: 1.6; color: var(--paper-3); }
@media (max-width: 900px) { .gt-split { grid-template-columns: 1fr; } }

/* ============================================================
   PRICE LADDER — columns by price band
   ============================================================ */
.gt-ladder {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 4px solid var(--ink);
}
.gt-ladder-step {
  padding: 28px 24px 36px;
  border-right: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  text-decoration: none; color: var(--ink);
}
.gt-ladder-step:last-child { border-right: 0; }
.gt-ladder-step:hover { background: var(--acid); }
.gt-ladder-step:nth-child(2) { background: var(--paper-2); }
.gt-ladder-step:nth-child(4) { background: var(--paper-2); }
.gt-ladder-step:nth-child(2):hover, .gt-ladder-step:nth-child(4):hover { background: var(--acid); }
.gt-ladder-n {
  font-family: var(--display); font-size: 60px; line-height: 1;
  color: var(--ink); margin: 0 0 8px;
}
.gt-ladder-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mute);
}
.gt-ladder-cap { font-family: var(--ui); font-size: 14px; margin: 14px 0 0; font-weight: 600; }
@media (max-width: 720px) {
  .gt-ladder { grid-template-columns: 1fr 1fr; }
  .gt-ladder-step:nth-child(2) { border-right: 0; }
  .gt-ladder-step:nth-child(1), .gt-ladder-step:nth-child(2) { border-bottom: 2px solid var(--ink); }
}

/* ============================================================
   GIFT BLOCK (only on home + 3 cloak pages per memory rule)
   4 variants with unique design each
   ============================================================ */
.gt-gift {
  position: relative; overflow: hidden;
  background: var(--paper); border: 4px solid var(--ink);
  margin: 0; padding: 48px;
  box-shadow: var(--hard);
}
.gt-gift::before {
  content: "1UP";
  position: absolute; top: 0; left: 0;
  background: var(--acid); color: var(--ink);
  font-family: var(--display); font-size: 22px;
  padding: 10px 14px;
  letter-spacing: .04em;
}
.gt-gift-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; }
.gt-gift-h { font-family: var(--display); font-size: clamp(30px, 4vw, 60px); color: var(--ink); line-height: .9; margin: 30px 0 16px; }
.gt-gift-h em { font-style: normal; color: var(--acid); background: var(--ink); padding: 0 8px; }
.gt-gift-d { font-family: var(--ui); font-size: 16px; line-height: 1.65; color: var(--ink); margin: 0 0 18px; }
.gt-gift-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 6px; }
.gt-gift-list li {
  font-family: var(--ui); font-size: 14px; padding-left: 22px; position: relative;
  color: var(--ink); line-height: 1.5;
}
.gt-gift-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 4px; background: var(--ink);
}
.gt-gift-photo {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border: 2px solid var(--ink);
}

.gt-gift--cat  { background: var(--ink); color: var(--paper); }
.gt-gift--cat .gt-gift-h { color: var(--paper); }
.gt-gift--cat .gt-gift-h em { color: var(--ink); background: var(--acid); }
.gt-gift--cat .gt-gift-d, .gt-gift--cat .gt-gift-list li { color: var(--paper); }
.gt-gift--cat .gt-gift-list li::before { background: var(--acid); }
.gt-gift--cat::before { background: var(--paper); color: var(--ink); }

.gt-gift--prod { background: var(--graphite); color: var(--paper); }
.gt-gift--prod .gt-gift-h { color: var(--acid); }
.gt-gift--prod .gt-gift-h em { color: var(--paper); background: var(--ink); }
.gt-gift--prod .gt-gift-d, .gt-gift--prod .gt-gift-list li { color: var(--paper-3); }
.gt-gift--prod .gt-gift-list li::before { background: var(--acid); }
.gt-gift--prod::before { background: var(--crit); color: var(--paper); }

.gt-gift--gift { background: var(--acid); }
.gt-gift--gift::before { background: var(--ink); color: var(--acid); }
.gt-gift--gift .gt-gift-h em { background: var(--paper); color: var(--ink); }

@media (max-width: 700px) {
  .gt-gift-grid { grid-template-columns: 1fr; }
  .gt-gift { padding: 28px 22px 32px; }
}

/* ============================================================
   PDP — single-column long-form, sticky buy-bar
   ============================================================ */
.gt-pdp {
  background: var(--paper);
}
.gt-pdp-gallery {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px;
  padding: 32px 0;
}
.gt-pdp-thumbs {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.gt-pdp-thumb {
  width: 92px; height: 92px; padding: 0;
  background: var(--paper-2); border: 2px solid var(--ink);
  cursor: pointer; overflow: hidden;
  transition: border-color .12s;
}
.gt-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gt-pdp-thumb.is-active { border-color: var(--acid); box-shadow: 3px 3px 0 var(--ink); }
.gt-pdp-main {
  background: var(--paper-2); border: 2px solid var(--ink);
  aspect-ratio: 4/3;
  position: relative;
}
.gt-pdp-main img { width: 100%; height: 100%; object-fit: contain; padding: 18px; background: var(--paper); }
.gt-pdp-title-bar {
  background: var(--ink); color: var(--paper);
  padding: 28px 32px;
  border-bottom: 4px solid var(--ink);
}
.gt-pdp-title-bar h1 {
  font-family: var(--display); font-size: clamp(40px, 5vw, 72px);
  color: var(--paper); line-height: .9; margin: 0 0 8px;
  text-transform: uppercase;
}
.gt-pdp-title-bar h1 em { color: var(--acid); font-style: normal; }
@media (max-width: 720px) {
  .gt-pdp-gallery { grid-template-columns: 1fr; }
  .gt-pdp-thumbs { flex-direction: row; overflow-x: auto; }
  .gt-pdp-thumb { flex: 0 0 72px; width: 72px; height: 72px; }
}
.gt-pdp-title {
  font-family: var(--display); font-size: clamp(48px, 6vw, 96px);
  color: var(--paper); line-height: .85; margin: 0 0 14px;
  text-transform: uppercase;
}
.gt-pdp-meta {
  font-family: var(--mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--paper);
}

.gt-pdp-body {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px;
  padding: 56px 0 80px;
  align-items: start;
}
.gt-pdp-info p { font-family: var(--ui); font-size: 16px; line-height: 1.75; color: var(--ink); }
.gt-pdp-buy {
  background: var(--ink); color: var(--paper);
  border: 4px solid var(--ink);
  padding: 28px 30px 32px;
  position: sticky; top: 24px;
  box-shadow: var(--hard-acid);
}
.gt-pdp-buy-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--acid); margin: 0 0 8px; text-transform: uppercase; }
.gt-pdp-buy-name { font-family: var(--display); font-size: 28px; color: var(--paper); margin: 0 0 12px; line-height: .9; text-transform: uppercase; }
.gt-pdp-buy-price-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0; margin: 0 0 16px;
  border-top: 2px solid var(--paper); border-bottom: 2px solid var(--paper);
}
.gt-pdp-buy-price { font-family: var(--display); font-size: 44px; color: var(--acid); line-height: 1; }
.gt-pdp-buy-was { font-family: var(--ui); font-size: 14px; color: var(--mute); text-decoration: line-through; }
.gt-pdp-buy-pct { font-family: var(--mono); font-size: 11px; background: var(--crit); color: var(--paper); padding: 4px 8px; letter-spacing: .08em; font-weight: 800; }
.gt-pdp-buy .gt-btn--buy { width: 100%; font-size: 16px; }
.gt-pdp-trust {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; margin: 18px 0 0;
}
.gt-pdp-trust > div { background: var(--graphite); padding: 10px 12px; font-family: var(--ui); font-size: 12px; line-height: 1.3; }
.gt-pdp-trust dt { font-family: var(--mono); font-size: 9px; color: var(--acid); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 4px; }
.gt-pdp-trust dd { font-size: 12px; color: var(--paper); margin: 0; font-weight: 700; }

.gt-pdp-specs {
  margin: 36px 0 0;
  background: var(--paper-2); border: 2px solid var(--ink);
}
.gt-pdp-specs h3 {
  background: var(--ink); color: var(--acid);
  padding: 14px 18px; margin: 0;
  font-family: var(--display); font-size: 24px;
  letter-spacing: 0;
}
.gt-pdp-specs dl {
  margin: 0; padding: 18px 20px;
  display: grid; grid-template-columns: 160px 1fr; gap: 10px 16px;
  font-family: var(--ui); font-size: 14px;
}
.gt-pdp-specs dt { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.gt-pdp-specs dd { margin: 0; color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .gt-pdp-body { grid-template-columns: 1fr; gap: 24px; padding: 28px 0 48px; }
  .gt-pdp-buy { position: static; }
  .gt-pdp-hero-overlay { padding: 28px 22px; }
}

/* ============================================================
   BANNER (legal/category page headers)
   ============================================================ */
.gt-banner {
  background: var(--ink); color: var(--paper);
  border-bottom: 4px solid var(--ink);
  position: relative; overflow: hidden;
}
.gt-banner-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  min-height: 320px; align-items: stretch;
}
.gt-banner-text {
  padding: 56px 48px 56px var(--pad);
  display: flex; flex-direction: column; justify-content: center;
}
.gt-banner-photo {
  background-size: cover; background-position: center;
  position: relative;
  border-left: 4px solid var(--ink);
}
.gt-banner-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 65%, var(--acid) 65%);
}
.gt-banner h1 {
  font-family: var(--display); font-size: clamp(52px, 6vw, 96px);
  color: var(--paper); margin: 12px 0 14px;
}
.gt-banner h1 em { color: var(--acid); font-style: normal; background: var(--graphite); padding: 0 12px; }
.gt-banner-lead { font-family: var(--ui); font-size: 16px; color: var(--paper-3); max-width: 50ch; line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .gt-banner-inner { grid-template-columns: 1fr; min-height: auto; }
  .gt-banner-photo { min-height: 180px; border-left: 0; border-top: 4px solid var(--ink); }
  .gt-banner-text { padding: 40px 24px; }
}
.gt-crumbs {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mute); margin: 0 0 14px;
}
.gt-crumbs a { color: var(--acid); text-decoration: none; }
.gt-crumbs a:hover { color: var(--paper); }
.gt-crumbs [aria-current] { color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.gt-footer {
  background: var(--ink); color: var(--paper);
  padding: 72px 0 28px;
  margin-top: 80px;
  border-top: 4px solid var(--acid);
}
.gt-footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.gt-footer-brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--paper);
  margin: 0 0 16px;
}
.gt-footer-brand img { width: 120px; height: auto; display: block; }
.gt-footer-brand strong {
  font-family: var(--display); font-size: 24px;
  color: var(--paper); text-transform: uppercase; display: block; line-height: 1;
}
.gt-footer-brand em {
  font-family: var(--mono); font-size: 12px; color: var(--acid);
  font-style: normal; letter-spacing: .14em; display: block; margin-top: 4px;
}
.gt-footer h4 {
  font-family: var(--mono); font-size: 11px; color: var(--acid);
  letter-spacing: .22em; margin: 0 0 14px; text-transform: uppercase;
}
.gt-footer p, .gt-footer li, .gt-footer a {
  font-family: var(--ui); font-size: 14px; line-height: 1.55;
  color: var(--paper-3);
}
.gt-footer a { color: var(--paper); text-decoration: none; border-bottom: 1px dotted var(--mute); }
.gt-footer a:hover { color: var(--acid); border-color: var(--acid); }
.gt-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.gt-footer-pay { display: flex; gap: 8px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.gt-footer-pay img { height: 24px; width: auto; background: var(--paper); padding: 3px 6px; }
.gt-footer-meta {
  margin-top: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: .08em;
  flex-wrap: wrap; gap: 10px; text-transform: uppercase;
}
@media (max-width: 900px) { .gt-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gt-footer-cols { grid-template-columns: 1fr; } }

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.gt-cart-table {
  width: 100%; border-collapse: collapse;
  background: var(--paper); border: 2px solid var(--ink);
}
.gt-cart-table th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink);
  background: var(--acid); padding: 14px; text-align: left;
  border-bottom: 2px solid var(--ink);
}
.gt-cart-table td {
  padding: 14px; border-bottom: 1px solid var(--rule-d);
  font-family: var(--ui); font-size: 14px; color: var(--ink);
  vertical-align: middle;
}
.gt-cart-thumb { width: 72px; height: 72px; object-fit: cover; border: 1px solid var(--ink); flex-shrink: 0; }
.gt-cart-name { font-family: var(--display); font-size: 18px; color: var(--ink); text-transform: uppercase; line-height: 1; }
@media (max-width: 640px) {
  .gt-cart-table thead { display: none; }
  .gt-cart-table, .gt-cart-table tbody, .gt-cart-table tr, .gt-cart-table td { display: block; width: 100%; }
  .gt-cart-table tr { padding: 14px; border-bottom: 2px solid var(--ink); position: relative; }
  .gt-cart-table td { padding: 3px 0; border: 0; }
  .gt-cart-table td:last-child { position: absolute; top: 14px; right: 14px; width: auto; }
  .gt-cart-thumb { width: 56px; height: 56px; }
  .gt-cart-name { font-size: 16px; }
}

.gt-cart-summary {
  background: var(--ink); color: var(--paper);
  border: 4px solid var(--ink);
  padding: 28px;
  box-shadow: var(--hard-acid);
}
.gt-cart-summary h2 { color: var(--acid); margin: 0 0 18px; }
.gt-cart-summary dl { display: grid; grid-template-columns: 1fr auto; gap: 10px 18px; margin: 0 0 18px; }
.gt-cart-summary dt { font-family: var(--mono); font-size: 11px; color: var(--paper-3); letter-spacing: .14em; text-transform: uppercase; }
.gt-cart-summary dd { font-family: var(--ui); font-size: 15px; font-weight: 800; color: var(--paper); margin: 0; text-align: right; }
.gt-cart-summary dd.is-total { color: var(--acid); font-family: var(--display); font-size: 28px; }

.gt-cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .gt-cart-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .gt-cart-summary { padding: 18px; } }

.gt-checkout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px;
  align-items: start;
}
.gt-checkout-form { background: var(--paper); border: 2px solid var(--ink); padding: 28px 30px 32px; }
.gt-fieldset { border: 0; margin: 0 0 24px; padding: 0; }
.gt-fieldset legend {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--ink); text-transform: uppercase;
  padding: 0; margin: 0 0 12px;
}
.gt-field { display: flex; flex-direction: column; gap: 4px; font-family: var(--ui); font-size: 14px; color: var(--ink); }
.gt-fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.gt-field--wide { grid-column: 1/-1; }
.gt-field > span { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; color: var(--mute); }
.gt-field input, .gt-field select, .gt-field textarea {
  font-family: var(--ui); font-size: 14px; color: var(--ink);
  background: var(--paper); border: 2px solid var(--ink);
  padding: 10px 12px; line-height: 1.4;
}
.gt-field input:focus, .gt-field select:focus, .gt-field textarea:focus { outline: 3px solid var(--acid); outline-offset: -3px; }
.gt-pay { display: grid; grid-template-columns: 24px 1fr; gap: 8px; padding: 12px 14px; border: 2px solid var(--ink); cursor: pointer; }
.gt-pay:has(input:checked) { background: var(--acid); }
.gt-pay-h { font-weight: 800; font-size: 14px; color: var(--ink); text-transform: uppercase; }
.gt-pay-d { display: block; font-size: 13px; color: var(--mute-2); margin-top: 4px; grid-column: 2; }
.gt-field-check {
  font-family: var(--ui); font-size: 14px; color: var(--ink);
  display: flex; gap: 10px; align-items: flex-start; cursor: pointer; line-height: 1.5;
}
.gt-field-check input { margin-top: 4px; accent-color: var(--acid); width: 16px; height: 16px; }
@media (max-width: 900px) {
  .gt-checkout { grid-template-columns: 1fr; }
  .gt-fields-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gt-checkout-form { padding: 18px 16px 22px; }
  .gt-fields-grid { grid-template-columns: 1fr; }
  .gt-pay { grid-template-columns: 20px 1fr; gap: 6px; padding: 10px 12px; }
  .gt-pay-h { font-size: 13px; }
}

/* ============================================================
   LEGAL / Long-form pages
   ============================================================ */
.gt-legal {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 44px 48px 56px;
  font-family: var(--ui);
}
.gt-legal h2 { font-family: var(--display); font-size: 28px; color: var(--ink); margin: 28px 0 12px; text-transform: uppercase; line-height: 1; }
.gt-legal h3 { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; color: var(--mute); margin: 22px 0 8px; text-transform: uppercase; }
.gt-legal p { font-size: 15px; color: var(--ink); line-height: 1.75; margin: 0 0 14px; }
.gt-legal ul, .gt-legal ol { margin: 0 0 16px; padding-left: 22px; }
.gt-legal li { font-size: 15px; color: var(--ink); line-height: 1.65; margin-bottom: 6px; }
.gt-legal table { width: 100%; border-collapse: collapse; margin: 0 0 22px; }
.gt-legal th, .gt-legal td { padding: 10px 12px; border: 1px solid var(--rule-d); text-align: left; font-size: 14px; }
.gt-legal th { background: var(--ink); color: var(--acid); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 720px) { .gt-legal { padding: 28px 22px 36px; } }

/* ============================================================
   UTIL
   ============================================================ */
.gt-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.gt-cluster { display: flex; gap: 12px; flex-wrap: wrap; }
/* ============================================================
   ARCHIVE GRID
   ============================================================ */
.gt-archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 4px solid var(--ink);
}
.gt-archive-cell {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.gt-archive-cell:nth-child(3n) { border-right: 0; }
.gt-archive-cell:nth-last-child(-n+3) { border-bottom: 0; }
.gt-archive-cell h3 {
  font-family: var(--display); font-size: 22px;
  text-transform: uppercase; line-height: .9;
  margin: 12px 0 10px; color: var(--ink);
}
.gt-archive-cell p {
  font-family: var(--ui); font-size: 14px;
  color: var(--mute-2); line-height: 1.5; margin: 0;
}
@media (max-width: 720px) {
  .gt-archive-grid { grid-template-columns: 1fr 1fr; }
  .gt-archive-cell:nth-child(3n) { border-right: 2px solid var(--ink); }
  .gt-archive-cell:nth-child(2n) { border-right: 0; }
  .gt-archive-cell:nth-last-child(-n+3) { border-bottom: 2px solid var(--ink); }
  .gt-archive-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .gt-archive-grid { grid-template-columns: 1fr; }
  .gt-archive-cell { border-right: 0 !important; border-bottom: 2px solid var(--ink) !important; }
  .gt-archive-cell:last-child { border-bottom: 0 !important; }
}

.gt-skip {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--acid); color: var(--ink);
  padding: 12px 18px; font-weight: 800; text-decoration: none; font-size: 14px;
  border: 2px solid var(--ink);
}
.gt-skip:focus { top: 12px; outline: 3px solid var(--ink); }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 2px; }
.gt-toast {
  position: fixed; bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--acid);
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  padding: 14px 22px; border: 2px solid var(--acid);
  z-index: 1500; opacity: 0; pointer-events: none;
  text-transform: uppercase; font-weight: 800;
  transition: opacity .2s, transform .2s;
}
.gt-toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
.js-reveal [data-gt-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.js-reveal [data-gt-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   COOKIE POPUP
   ============================================================ */
.gt-cookie {
  position: fixed; bottom: 100px; left: 24px; right: 24px; z-index: 300;
  max-width: 540px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink);
  padding: 16px 18px;
  box-shadow: var(--hard-acid);
  transform: translateY(20px); opacity: 0;
  transition: opacity .25s, transform .25s;
}
.gt-cookie.is-on { transform: translateY(0); opacity: 1; }
.gt-cookie-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gt-cookie p { margin: 0; font-family: var(--ui); font-size: 13px; line-height: 1.45; flex: 1; min-width: 200px; }
.gt-cookie p a { color: var(--ink); text-decoration-thickness: 2px; font-weight: 700; }
.gt-cookie-x {
  background: var(--acid); color: var(--ink); border: 2px solid var(--ink);
  padding: 10px 16px; font-family: var(--mono); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; cursor: pointer;
}
.gt-cookie-x:hover { background: var(--ink); color: var(--acid); }
@media (max-width: 720px) { .gt-cookie { bottom: 100px; left: 12px; right: 12px; } }
