/* =====================================================
   GOLIATH GEAR — Design System
   Source of truth: design.md
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── 1. CSS Custom Properties ─────────────────────── */
:root {
  /* Ink scale */
  --gg-ink-900: #07070B;
  --gg-ink-800: #0E0E14;
  --gg-ink-700: #16161F;
  --gg-ink-600: #222230;
  --gg-ink-500: #2E2E40;

  /* Bone scale */
  --gg-bone-50:  #F4F2EC;
  --gg-bone-200: #C9C6BD;
  --gg-bone-400: #8A8780;

  /* Spectrum */
  --gg-spectrum-1: #FF6B1A;
  --gg-spectrum-2: #FF1F8F;
  --gg-spectrum-3: #9B30FF;
  --gg-spectrum-4: #1E90FF;
  --gg-spectrum-5: #00E5FF;

  /* Goliath Gradient */
  --gg-goliath-gradient: linear-gradient(
    90deg,
    #FF6B1A 0%,
    #FF1F8F 25%,
    #9B30FF 50%,
    #1E90FF 75%,
    #00E5FF 100%
  );

  /* Functional */
  --gg-success: #5DD39E;
  --gg-warn:    #FFB070;
  --gg-danger:  #FF3B47;
  --gg-info:    #1E90FF;

  /* Scrims */
  --gg-scrim-strong: rgba(7, 7, 11, 0.72);
  --gg-scrim-soft:   rgba(7, 7, 11, 0.40);
  --gg-scrim-modal:  rgba(7, 7, 11, 0.78);

  /* Glow tokens */
  --gg-glow-violet: 0 0 0 1px rgba(155, 48, 255, 0.4), 0 8px 24px rgba(155, 48, 255, 0.18);
  --gg-glow-cyan:   0 0 0 1px rgba(0, 229, 255, 0.4),  0 8px 24px rgba(0, 229, 255, 0.18);
  --gg-glow-orange: 0 0 0 1px rgba(255, 107, 26, 0.4), 0 8px 24px rgba(255, 107, 26, 0.18);
  --gg-glow-danger: 0 0 0 1px rgba(255, 59, 71, 0.4),  0 8px 24px rgba(255, 59, 71, 0.18);

  /* Shadows */
  --gg-shadow-1: 0 2px 8px rgba(0, 0, 0, 0.32);
  --gg-shadow-2: 0 8px 20px rgba(0, 0, 0, 0.42);
  --gg-shadow-3: 0 16px 40px rgba(0, 0, 0, 0.55);

  /* Radius */
  --gg-radius-pill:  9999px;
  --gg-radius-card:  8px;
  --gg-radius-input: 6px;
  --gg-radius-badge: 4px;

  /* Z-index */
  --gg-z-base:     0;
  --gg-z-sticky:   100;
  --gg-z-dropdown: 200;
  --gg-z-drawer:   300;
  --gg-z-modal:    400;
  --gg-z-toast:    500;
  --gg-z-tooltip:  600;

  /* Easing */
  --gg-ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);

  /* Fonts */
  --gg-font-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --gg-font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gg-font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

  /* Row states */
  --gg-row-selected: rgba(155, 48, 255, 0.10);
  --gg-row-hover:    rgba(244, 242, 236, 0.04);
}

/* ── 2. Reset & Base ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--gg-ink-900);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── 3. Skip Link ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gg-ink-700);
  color: var(--gg-bone-50);
  padding: 0.5rem 1rem;
  border-radius: var(--gg-radius-input);
  border: 1px solid var(--gg-ink-500);
  z-index: calc(var(--gg-z-tooltip) + 1);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--gg-spectrum-4);
  outline-offset: 2px;
}

/* ── 4. Typography helpers ────────────────────────── */
.gg-display-xl  { font-family: var(--gg-font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.gg-display-lg  { font-family: var(--gg-font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.0;  font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.gg-h1          { font-family: var(--gg-font-display); font-size: clamp(2rem, 4vw, 3rem);   line-height: 1.05; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.gg-h2          { font-family: var(--gg-font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.1; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.gg-h3          { font-family: var(--gg-font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.2; font-weight: 600; }
.gg-eyebrow     { font-family: var(--gg-font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gg-bone-400); }
.gg-body-lg     { font-size: 1.125rem; line-height: 1.55; font-weight: 400; }
.gg-body        { font-size: 1rem; line-height: 1.6; font-weight: 400; }
.gg-body-sm     { font-size: 0.875rem; line-height: 1.6; font-weight: 400; }
.gg-mono-sm     { font-family: var(--gg-font-mono); font-size: 0.875rem; line-height: 1.45; font-weight: 500; font-feature-settings: "tnum"; }

/* Gradient text */
.gg-gradient-text {
  background: var(--gg-goliath-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Layout ────────────────────────────────────── */
.gg-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}

@media (max-width: 1023px) {
  .gg-container { padding-inline: 24px; }
}

@media (max-width: 767px) {
  .gg-container { padding-inline: 20px; }
}

/* ── 6. Header / Navigation ───────────────────────── */
.gg-site-header {
  position: sticky;
  top: 0;
  z-index: var(--gg-z-sticky);
  background: rgba(7, 7, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gg-ink-500);
  transition: border-color 240ms var(--gg-ease-out-quint);
}

.gg-site-header.scrolled {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--gg-goliath-gradient)) 1;
  /* For browsers that don't support border-image with transparency: */
  box-shadow: 0 1px 0 0 rgba(255, 107, 26, 0.3);
}

/* Mobile top utility bar */
.gg-header-util-bar {
  display: none;
  background: var(--gg-ink-800);
  border-bottom: 1px solid var(--gg-ink-500);
}

/* .gg-header-util-bar is hidden on all viewports — icons moved into main mobile bar */

.gg-header-util-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
}

/* Main header row */
.gg-header-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
}

.gg-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.gg-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .gg-logo-img { height: 44px; }
}

.gg-header-search {
  flex: 1;
  max-width: 440px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .gg-header-search { display: none; }
}

.gg-search-form {
  position: relative;
  display: flex;
}

.gg-search-input {
  width: 100%;
  height: 40px;
  padding: 0 48px 0 16px;
  background: var(--gg-ink-600);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.875rem;
  transition: border-color 200ms var(--gg-ease-out-quint), box-shadow 200ms var(--gg-ease-out-quint);
}

.gg-search-input::placeholder { color: var(--gg-bone-400); }

.gg-search-input:focus {
  outline: none;
  border-color: transparent;
  background:
    linear-gradient(var(--gg-ink-600), var(--gg-ink-600)) padding-box,
    var(--gg-goliath-gradient) border-box;
  box-shadow: 0 0 0 3px rgba(155, 48, 255, 0.2);
}

.gg-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-bone-200);
  border-radius: 0 var(--gg-radius-input) var(--gg-radius-input) 0;
  transition: color 200ms;
}

.gg-search-btn:hover { color: var(--gg-bone-50); }

.gg-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .gg-header-actions { display: none; }
}

.gg-header-actions-mobile {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .gg-header-actions-mobile { display: flex; }
}

.gg-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  color: var(--gg-bone-200);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--gg-radius-input);
  transition: color 200ms var(--gg-ease-out-quint);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.gg-action-btn:hover { color: var(--gg-bone-50); }

.gg-action-btn .cart-count {
  font-family: var(--gg-font-mono);
  font-size: 0.8125rem;
}

.gg-header-divider {
  width: 1px;
  height: 18px;
  background: var(--gg-ink-500);
}

/* Navigation bar */
.gg-site-nav {
  background: var(--gg-ink-800);
  border-top: 1px solid var(--gg-ink-500);
}

.gg-site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-block: 12px;
}

.gg-nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gg-bone-200);
  padding: 4px 20px;
  position: relative;
  transition: color 200ms var(--gg-ease-out-quint);
}

.gg-nav-link:hover,
.gg-nav-link.active {
  color: var(--gg-bone-50);
}

.gg-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gg-goliath-gradient);
  border-radius: 1px;
}

.gg-nav-sep {
  color: var(--gg-ink-500);
  font-size: 1rem;
  user-select: none;
}

@media (max-width: 767px) {
  .gg-site-nav { display: none; }
  .gg-site-nav.open { display: block; }
}

/* ── 7. Mobile Nav Drawer ─────────────────────────── */
.gg-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--gg-z-drawer);
  pointer-events: none;
}

.gg-mobile-drawer.open {
  pointer-events: all;
}

.gg-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: var(--gg-scrim-modal);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 240ms var(--gg-ease-out-quint);
}

.gg-mobile-drawer.open .gg-drawer-backdrop {
  opacity: 1;
}

.gg-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--gg-ink-900);
  border-left: 1px solid var(--gg-ink-500);
  transform: translateX(100%);
  transition: transform 240ms var(--gg-ease-out-quint);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gg-mobile-drawer.open .gg-drawer-panel {
  transform: translateX(0);
}

.gg-drawer-close {
  align-self: flex-end;
  color: var(--gg-bone-200);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--gg-radius-input);
  transition: color 200ms;
}

.gg-drawer-close:hover { color: var(--gg-bone-50); }

.gg-drawer-nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gg-bone-200);
  padding: 14px 16px;
  border-bottom: 1px solid var(--gg-ink-500);
  transition: color 200ms;
}

.gg-drawer-nav-link:hover,
.gg-drawer-nav-link.active {
  color: var(--gg-bone-50);
}

.gg-drawer-search {
  margin-top: 16px;
}

/* ── 8. Buttons ───────────────────────────────────── */
/* Primary "Heavy CTA" */
.gg-btn-heavy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  background:
    linear-gradient(var(--gg-ink-900), var(--gg-ink-900)) padding-box,
    var(--gg-goliath-gradient) border-box;
  border: 1px solid transparent;
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms var(--gg-ease-out-quint), transform 100ms, box-shadow 200ms;
  white-space: nowrap;
  text-decoration: none;
}

.gg-btn-heavy:hover {
  background: var(--gg-goliath-gradient);
  box-shadow: var(--gg-glow-violet);
}

.gg-btn-heavy:active {
  transform: scale(0.96);
}

.gg-btn-heavy:focus-visible {
  outline: 2px solid var(--gg-spectrum-4);
  outline-offset: 2px;
}

.gg-btn-heavy--md {
  height: 48px;
  padding: 0 24px;
}

.gg-btn-heavy--sm {
  height: 40px;
  padding: 0 16px;
  font-size: 0.8125rem;
}

/* Secondary */
.gg-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: var(--gg-ink-700);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
  text-decoration: none;
}

.gg-btn-secondary:hover {
  background: var(--gg-ink-600);
  border-color: var(--gg-bone-200);
}

.gg-btn-secondary:focus-visible {
  outline: 2px solid var(--gg-spectrum-4);
  outline-offset: 2px;
}

/* Ghost */
.gg-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: transparent;
  border: none;
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 200ms;
  text-decoration: none;
  position: relative;
}

.gg-btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gg-goliath-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--gg-ease-out-quint);
}

.gg-btn-ghost:hover::after { transform: scaleX(1); }
.gg-btn-ghost:hover { color: var(--gg-bone-50); }

/* Disabled */
.gg-btn-heavy:disabled,
.gg-btn-secondary:disabled,
.gg-btn-ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── 9. Badges / Tags ─────────────────────────────── */
.gg-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: var(--gg-radius-pill);
  font-family: var(--gg-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--gg-ink-600);
  color: var(--gg-bone-200);
}

.gg-badge--new {
  background: color-mix(in oklab, var(--gg-spectrum-1) 14%, transparent);
  color: var(--gg-spectrum-1);
}

.gg-badge--sold-out {
  background: color-mix(in oklab, var(--gg-danger) 14%, transparent);
  color: var(--gg-danger);
}

.gg-badge--sale {
  background: linear-gradient(135deg, #FF3B47 0%, #FF6B1A 100%);
  color: #fff;
}

/* ── 10. Product Card ─────────────────────────────── */
.gg-product-card {
  background: var(--gg-ink-700);
  border: 1px solid transparent;
  border-radius: var(--gg-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms var(--gg-ease-out-quint), transform 200ms var(--gg-ease-out-quint), box-shadow 200ms var(--gg-ease-out-quint);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.gg-product-card:hover {
  border-color: transparent;
  background:
    linear-gradient(var(--gg-ink-700), var(--gg-ink-700)) padding-box,
    var(--gg-goliath-gradient) border-box;
  transform: translateY(-2px);
  box-shadow: var(--gg-shadow-2);
}

.gg-product-card:focus-visible {
  outline: 2px solid var(--gg-spectrum-4);
  outline-offset: 3px;
}

.gg-card-image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--gg-ink-800);
  overflow: hidden;
}

.gg-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--gg-ease-out-quint);
}

.gg-product-card:hover .gg-card-image {
  transform: scale(1.04);
}

/* Placeholder image */
.gg-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gg-ink-800);
  color: var(--gg-ink-500);
}

.gg-card-image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* Vignette over card image */
.gg-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(7,7,11,0.5) 100%);
  pointer-events: none;
}

.gg-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gg-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.gg-card-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gg-bone-400);
}

.gg-card-title {
  font-family: var(--gg-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gg-bone-50);
  line-height: 1.2;
  transition: color 200ms;
}

.gg-product-card:hover .gg-card-title {
  color: var(--gg-bone-50);
}

.gg-card-spec {
  font-family: var(--gg-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gg-bone-200);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gg-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.gg-card-price {
  font-family: var(--gg-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gg-bone-50);
}

.gg-card-price-original {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gg-bone-400);
  text-decoration: line-through;
}

.gg-card-cta-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.gg-card-cta-row .gg-btn-heavy {
  flex: 1;
  height: 40px;
  font-size: 0.8125rem;
  padding: 0;
}

/* ── 11. Nav Logo Ring ────────────────────────────── */
.gg-nav-logo-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Gradient ring around the circular badge portion of the nav logo */
.gg-nav-logo-ring::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gg-goliath-gradient);
  -webkit-mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  opacity: 0.75;
  pointer-events: none;
}

/* Soft halo behind the badge */
.gg-nav-logo-ring::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(155, 48, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .gg-nav-logo-ring::before { width: 52px; height: 52px; left: -4px; }
  .gg-nav-logo-ring::after  { width: 64px; height: 64px; left: -10px; }
}

/* ── 12. Hero Section ─────────────────────────────── */
.gg-hero {
  background: var(--gg-ink-900);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gg-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,11,0.6) 0%, rgba(7,7,11,0.4) 50%, rgba(7,7,11,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle radial glow accents */
.gg-hero-glow-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(155, 48, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gg-hero-glow-2 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 26, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hex dot-grid texture */
.gg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,242,236,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero: column layout — headline row centered, text below centered ── */
.gg-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding-block: 80px 64px;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

/* Logo + Headline locked side by side, centered as a unit */
.gg-hero-headline-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

/* On mobile, keep logo left of headline but scale it down */
@media (max-width: 600px) {
  .gg-hero-content { padding-block: 40px 32px; }
  .gg-hero-headline-row { gap: 16px; }
  .gg-hero-logo { width: 90px; height: 90px; }
  .gg-hero-logo-ring::before { width: 104px; height: 104px; }
  .gg-hero-logo-ring::after  { width: 124px; height: 124px; }
}

/* Goliath Ring — hero logo medallion */
.gg-hero-logo-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient ring border */
.gg-hero-logo-ring::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gg-goliath-gradient);
  -webkit-mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  opacity: 0.7;
  filter: blur(0.5px);
}

/* Glow halo behind the badge */
.gg-hero-logo-ring::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(155, 48, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .gg-hero-logo-ring::before { width: 170px; height: 170px; }
  .gg-hero-logo-ring::after  { width: 200px; height: 200px; }
}

.gg-hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(155, 48, 255, 0.35));
  animation: gg-logo-pop 800ms var(--gg-ease-out-quint) both;
}

@media (max-width: 767px) {
  .gg-hero-logo { width: 150px; height: 150px; }
}

@keyframes gg-logo-pop {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.gg-hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--gg-radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: gg-fade-up 600ms 200ms var(--gg-ease-out-quint) both;
  white-space: nowrap;
}

.gg-hero-headline {
  font-family: var(--gg-font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--gg-bone-50);
  text-align: left;
  margin: 0;
  animation: gg-fade-up 600ms 300ms var(--gg-ease-out-quint) both;
}

@media (max-width: 600px) {
  .gg-hero-headline { text-align: center; }
  .gg-hero-subhead { font-size: 0.9375rem; }
}

.gg-hero-subhead {
  max-width: 560px;
  color: var(--gg-bone-200);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin-bottom: 28px;
  text-align: center;
  animation: gg-fade-up 600ms 400ms var(--gg-ease-out-quint) both;
}

.gg-hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: gg-fade-up 600ms 500ms var(--gg-ease-out-quint) both;
}

@media (max-width: 600px) {
  .gg-hero-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    width: 100%;
  }
  .gg-trust-item {
    justify-content: center;
    font-size: 0.75rem;
  }
}

.gg-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gg-bone-200);
  text-transform: uppercase;
  white-space: nowrap;
}

.gg-trust-item svg { flex-shrink: 0; }

.gg-hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 48, 255, 0.4), rgba(0, 229, 255, 0.4), transparent);
  margin-block: 0 0;
}

@keyframes gg-fade-up {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── 12. Featured Products Section ───────────────────*/
.gg-products-section {
  position: relative;
  z-index: 2;
  padding-block: 48px 80px;
  background: var(--gg-ink-900);
}

.gg-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
}

.gg-section-header--centered {
  align-items: center;
  text-align: center;
}

.gg-products-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gg-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gg-spectrum-1), var(--gg-spectrum-2));
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--gg-radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gg-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1279px) {
  .gg-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .gg-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 399px) {
  .gg-product-grid { grid-template-columns: 1fr; }
}

.gg-products-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── 13. Category Strip ───────────────────────────── */
.gg-categories-section {
  background: var(--gg-ink-800);
  padding-block: 64px;
  border-top: 1px solid var(--gg-ink-500);
  border-bottom: 1px solid var(--gg-ink-500);
}

.gg-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .gg-category-grid { grid-template-columns: repeat(2, 1fr); }
}

.gg-category-tile {
  background: var(--gg-ink-700);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 120px;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.gg-category-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gg-goliath-gradient);
  transform: scaleX(0);
  transition: transform 200ms var(--gg-ease-out-quint);
  transform-origin: left;
}

.gg-category-tile:hover {
  border-color: var(--gg-ink-500);
  transform: translateY(-2px);
  box-shadow: var(--gg-shadow-2);
  background:
    linear-gradient(var(--gg-ink-700), var(--gg-ink-700)) padding-box,
    var(--gg-goliath-gradient) border-box;
  border-color: transparent;
}

.gg-category-tile:hover::before {
  transform: scaleX(1);
}

.gg-category-icon {
  width: 40px;
  height: 40px;
  color: var(--gg-bone-400);
  transition: color 200ms;
}

.gg-category-tile:hover .gg-category-icon {
  color: var(--gg-spectrum-4);
}

.gg-category-name {
  font-family: var(--gg-font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gg-bone-50);
}

/* ── 14. Stack Builder / Proof Section ──────────────*/
.gg-stack-section {
  background: var(--gg-ink-800);
  padding-block: 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gg-ink-500);
}

.gg-stack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,242,236,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.gg-stack-headline {
  font-family: var(--gg-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--gg-bone-50);
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.gg-stack-headline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gg-goliath-gradient);
  border-radius: 2px;
}

.gg-stack-subhead {
  color: var(--gg-bone-200);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

/* ── 15. Trust / Proof Strip ─────────────────────── */
.gg-trust-strip {
  background: var(--gg-ink-900);
  border-top: 1px solid var(--gg-ink-500);
  border-bottom: 1px solid var(--gg-ink-500);
  padding-block: 24px;
}

.gg-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.gg-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gg-bone-200);
  white-space: nowrap;
}

.gg-trust-strip-item + .gg-trust-strip-item {
  border-left: 1px solid var(--gg-ink-500);
}

@media (max-width: 767px) {
  .gg-trust-strip { display: none; }
}

/* ── 16. Footer ───────────────────────────────────── */
.gg-footer {
  background: var(--gg-ink-900);
  border-top: 2px solid transparent;
  border-image: var(--gg-goliath-gradient) 1;
  padding-top: 48px;
}

.gg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 1023px) {
  .gg-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 599px) {
  .gg-footer-grid { grid-template-columns: 1fr; }
}

.gg-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gg-footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.gg-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gg-bone-200);
  max-width: 300px;
}

.gg-footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gg-bone-200);
  margin-bottom: 16px;
}

.gg-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gg-footer-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gg-bone-400);
  transition: color 200ms;
}

.gg-footer-link:hover { color: var(--gg-bone-50); }

.gg-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gg-footer-email-form {
  display: flex;
  gap: 8px;
}

.gg-footer-email-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  background: var(--gg-ink-600);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.875rem;
  min-width: 0;
  transition: border-color 200ms;
}

.gg-footer-email-input::placeholder { color: var(--gg-bone-400); }

.gg-footer-email-input:focus {
  outline: none;
  border-color: var(--gg-spectrum-4);
}

.gg-footer-bottom {
  border-top: 1px solid var(--gg-ink-500);
  padding-block: 20px;
}

.gg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gg-footer-copyright {
  font-family: var(--gg-font-mono);
  font-size: 0.8125rem;
  color: var(--gg-bone-400);
}

.gg-footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gg-footer-legal-link {
  font-family: var(--gg-font-mono);
  font-size: 0.75rem;
  color: var(--gg-bone-400);
  transition: color 200ms;
}

.gg-footer-legal-link:hover { color: var(--gg-bone-200); }

.gg-fda-disclaimer {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--gg-bone-200);
  max-width: 80ch;
  padding-block: 20px;
  border-top: 1px solid var(--gg-ink-500);
}

/* ── 17. Shop page layout ─────────────────────────── */
.gg-page-hero {
  background: var(--gg-ink-900);
  padding-block: 48px;
  border-bottom: 1px solid var(--gg-ink-500);
  position: relative;
  overflow: hidden;
}

.gg-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gg-goliath-gradient);
}

.gg-page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gg-shop-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gg-sort-select {
  height: 40px;
  padding: 0 36px 0 14px;
  background: var(--gg-ink-600);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.8125rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8780' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.gg-sort-select:focus {
  outline: none;
  border-color: var(--gg-spectrum-4);
}

.gg-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gg-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  background: color-mix(in oklab, var(--gg-spectrum-3) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--gg-spectrum-3) 30%, transparent);
  border-radius: var(--gg-radius-pill);
  color: var(--gg-bone-50);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}

.gg-filter-chip:hover,
.gg-filter-chip[aria-pressed="true"],
.gg-filter-chip.active-filter {
  background: color-mix(in oklab, var(--gg-spectrum-1) 30%, transparent);
  border-color: color-mix(in oklab, var(--gg-spectrum-1) 50%, transparent);
}

.gg-filter-chip .chip-close {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.gg-shop-content {
  padding-block: 40px;
}

.gg-shop-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gg-product-count {
  font-size: 0.875rem;
  color: var(--gg-bone-400);
}

/* ── 18. FAQ page ─────────────────────────────────── */
.gg-faq-section {
  padding-block: 64px;
  max-width: 800px;
  margin-inline: auto;
}

.gg-faq-item {
  border-bottom: 1px solid var(--gg-ink-500);
}

.gg-faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gg-bone-50);
  cursor: pointer;
  transition: color 200ms;
}

.gg-faq-question:hover { color: var(--gg-bone-200); }

.gg-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 240ms var(--gg-ease-out-quint);
  color: var(--gg-bone-400);
}

.gg-faq-item.open .gg-faq-icon {
  transform: rotate(45deg);
}

.gg-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms var(--gg-ease-out-quint), padding 300ms;
  color: var(--gg-bone-200);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.gg-faq-item.open .gg-faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

/* ── 19. Orders page ──────────────────────────────── */
.gg-orders-section {
  padding-block: 64px;
}

.gg-auth-card {
  background: var(--gg-ink-700);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-card);
  padding: 40px;
  max-width: 440px;
  margin-inline: auto;
}

.gg-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.gg-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gg-bone-200);
}

.gg-form-input {
  height: 48px;
  padding: 0 16px;
  background: var(--gg-ink-600);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  color: var(--gg-bone-50);
  font-family: var(--gg-font-body);
  font-size: 0.9375rem;
  transition: border-color 200ms, box-shadow 200ms;
}

.gg-form-input::placeholder { color: var(--gg-bone-400); }

.gg-form-input:focus {
  outline: none;
  background:
    linear-gradient(var(--gg-ink-600), var(--gg-ink-600)) padding-box,
    var(--gg-goliath-gradient) border-box;
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(155, 48, 255, 0.2);
}

/* ── 20. Cart Drawer ──────────────────────────────── */
.gg-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--gg-z-drawer);
  pointer-events: none;
}

.gg-cart-drawer.open { pointer-events: all; }

.gg-cart-backdrop {
  position: absolute;
  inset: 0;
  background: var(--gg-scrim-modal);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 240ms var(--gg-ease-out-quint);
}

.gg-cart-drawer.open .gg-cart-backdrop { opacity: 1; }

.gg-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  max-width: 100vw;
  background: var(--gg-ink-900);
  border-top: 2px solid transparent;
  border-image: var(--gg-goliath-gradient) 1;
  transform: translateX(100%);
  transition: transform 240ms var(--gg-ease-out-quint);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gg-cart-drawer.open .gg-cart-panel { transform: translateX(0); }

.gg-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gg-ink-500);
  flex-shrink: 0;
}

.gg-cart-title {
  font-family: var(--gg-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gg-bone-50);
}

.gg-cart-close {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-bone-400);
  border-radius: var(--gg-radius-input);
  transition: color 200ms;
}

.gg-cart-close:hover { color: var(--gg-bone-50); }

/* Free shipping progress */
.gg-shipping-progress {
  padding: 12px 24px;
  background: var(--gg-ink-800);
  border-bottom: 1px solid var(--gg-ink-500);
  flex-shrink: 0;
}

.gg-progress-label {
  font-size: 0.8125rem;
  color: var(--gg-bone-200);
  margin-bottom: 8px;
}

.gg-progress-bar {
  height: 4px;
  background: var(--gg-ink-500);
  border-radius: 2px;
  overflow: hidden;
}

.gg-progress-fill {
  height: 100%;
  background: var(--gg-goliath-gradient);
  border-radius: 2px;
  transition: width 400ms var(--gg-ease-out-quint);
}

.gg-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.gg-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  height: 100%;
  padding: 40px;
  color: var(--gg-bone-400);
}

.gg-cart-empty-icon { opacity: 0.3; }

.gg-cart-empty-title {
  font-family: var(--gg-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gg-bone-200);
}

.gg-cart-line-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-block: 16px;
  border-bottom: 1px solid var(--gg-ink-500);
}

.gg-cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--gg-ink-700);
  border-radius: var(--gg-radius-badge);
  flex-shrink: 0;
  overflow: hidden;
}

.gg-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-cart-item-info {
  flex: 1;
  min-width: 0;
}

.gg-cart-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gg-bone-50);
  margin-bottom: 4px;
}

.gg-cart-item-spec {
  font-family: var(--gg-font-mono);
  font-size: 0.75rem;
  color: var(--gg-bone-400);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gg-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gg-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-input);
  overflow: hidden;
}

.gg-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gg-ink-700);
  color: var(--gg-bone-200);
  font-size: 1.125rem;
  font-weight: 600;
  transition: background 160ms, color 160ms;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.gg-qty-btn:hover {
  background: var(--gg-ink-600);
  color: var(--gg-bone-50);
}

.gg-qty-value {
  font-family: var(--gg-font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gg-bone-50);
  width: 40px;
  text-align: center;
  background: var(--gg-ink-800);
  padding-block: 10px;
}

.gg-remove-btn {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-bone-400);
  border-radius: var(--gg-radius-input);
  transition: color 200ms;
  flex-shrink: 0;
}

.gg-remove-btn:hover { color: var(--gg-danger); }

.gg-cart-item-price {
  font-family: var(--gg-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gg-bone-50);
  flex-shrink: 0;
}

.gg-cart-footer {
  border-top: 1px solid var(--gg-ink-500);
  padding: 20px 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gg-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.gg-cart-subtotal-label {
  font-size: 0.875rem;
  color: var(--gg-bone-200);
  font-weight: 500;
}

.gg-cart-subtotal-value {
  font-family: var(--gg-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gg-bone-50);
}

/* ── 21. Toast ────────────────────────────────────── */
.gg-toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--gg-z-toast);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.gg-toast {
  background: var(--gg-ink-700);
  border: 1px solid var(--gg-ink-500);
  border-radius: var(--gg-radius-card);
  box-shadow: var(--gg-shadow-2);
  padding: 14px 20px;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gg-bone-50);
  pointer-events: all;
  animation: gg-toast-in 240ms var(--gg-ease-out-quint) both;
  position: relative;
  overflow: hidden;
}

.gg-toast--success { border-left: 4px solid var(--gg-success); }
.gg-toast--warn    { border-left: 4px solid var(--gg-warn); }
.gg-toast--danger  { border-left: 4px solid var(--gg-danger); }

@keyframes gg-toast-in {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── 22. Misc helpers ─────────────────────────────── */
.gg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.gg-gradient-line {
  height: 1px;
  background: var(--gg-goliath-gradient);
  opacity: 0.5;
}

.gg-section-divider {
  height: 1px;
  background: var(--gg-ink-500);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
