/* ==========================================================================
   Wear The Spirit — Design System
   Premium dark streetwear aesthetic. Near-black base, three design accents.
   ========================================================================== */

@font-face {
  font-family: 'Anton';
  src: url('/fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Surfaces */
  --bg: #08080a;
  --bg-elevated: #131316;
  --bg-elevated-2: #1b1b1f;
  --border: #262629;
  --border-soft: #1c1c20;

  /* Text */
  --text: #f5f5f4;
  --text-muted: #a8a7ac;
  --text-dim: #706f76;

  /* Brand accents */
  --purple: #a259ff;
  --purple-glow: rgba(162, 89, 255, 0.4);
  --blue: #22b8ff;
  --blue-glow: rgba(34, 184, 255, 0.4);
  --fire: #ff6a1a;
  --fire-glow: rgba(255, 106, 26, 0.4);

  --accent: var(--purple);
  --accent-glow: var(--purple-glow);

  --success: #3ddc84;
  --error: #ff5a5a;

  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1280px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-glow: 0 0 60px -10px var(--accent-glow);
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
input, select, textarea { font-family: inherit; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--purple);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ---- Typography ---- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-weight: 400;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple), #d68bff 45%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
}
.section-lede {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--text);
  color: #0a0a0a;
}
.btn-primary:hover { box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,0.06); }
.btn-accent {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-accent:hover { box-shadow: 0 0 24px var(--accent-glow); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,10,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.brand span { color: var(--purple); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  transition: color .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.cart-count {
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border-soft);
  padding: 16px 24px;
}
.mobile-nav:not([hidden]) { display: flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 15% 15%, rgba(162,89,255,0.22), transparent 60%),
    radial-gradient(ellipse 60% 55% at 85% 30%, rgba(34,184,255,0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,106,26,0.10), transparent 60%),
    var(--bg);
}
.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(255,255,255,0.02));
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-115vh) translateX(20px); opacity: 0; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}
/* Text takes ~30%, image ~70% of the hero row. */
.hero__inner--wide-visual {
  grid-template-columns: 0.85fr 2fr;
  gap: 24px;
}
.hero__copy { padding: 64px 0; }
.hero__title {
  font-size: clamp(52px, 8.5vw, 118px);
  margin-bottom: 8px;
}
.hero__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero__lede {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.85));
}
/* For transparent PNG art that should float on the page background, not be
   boxed/cropped like a photo. */
.hero__visual--float {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  aspect-ratio: auto;
}
.hero__visual--float::after { display: none; }
.hero__visual--float img,
.hero__visual--float video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 28px;
  background: linear-gradient(var(--text-dim), transparent);
}

/* ---- Section shell ---- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ---- Collection / product cards ---- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-accent, var(--purple));
  box-shadow: 0 24px 60px -20px var(--card-glow, var(--purple-glow));
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75));
}
.product-card__swatch {
  position: absolute;
  top: 14px; left: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--card-accent, var(--purple));
  box-shadow: 0 0 12px var(--card-glow, var(--purple-glow));
  z-index: 2;
}
.product-card__body { padding: 20px 22px 24px; }
.product-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.product-card__tagline {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 14px;
  min-height: 34px;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.product-card__price { font-weight: 700; font-size: 16px; }
.product-card__sizes { color: var(--text-dim); font-size: 12px; letter-spacing: 0.05em; }
.product-card__actions { display: flex; gap: 10px; }

/* Accent variables applied per design */
.accent-fire-spirit { --card-accent: var(--fire); --card-glow: var(--fire-glow); }
.accent-purple-energy { --card-accent: var(--purple); --card-glow: var(--purple-glow); }
.accent-blue-focus { --card-accent: var(--blue); --card-glow: var(--blue-glow); }

/* ---- Betta story ---- */
.story {
  position: relative;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg), #0d0d10 50%, var(--bg));
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story__visual img { width: 100%; height: 100%; object-fit: cover; }
.story__statement {
  font-size: clamp(26px, 3vw, 34px);
  margin: 20px 0 20px;
  color: var(--text);
}
.story__body { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; }
.story__closer {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 28px);
  margin-top: 24px;
}

/* ---- Values ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--purple);
}
.value-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.value-card__body { color: var(--text-muted); font-size: 14.5px; }

/* ---- Lifestyle editorial gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
}
.gallery__caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.gallery__item--a { grid-column: span 3; grid-row: span 3; }
.gallery__item--b { grid-column: span 3; grid-row: span 2; }
.gallery__item--c { grid-column: span 2; grid-row: span 2; }
.gallery__item--d { grid-column: span 2; grid-row: span 2; }
.gallery__item--e { grid-column: span 2; grid-row: span 2; }

/* ---- CTA band ---- */
.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(162,89,255,0.18), transparent 70%),
    #0c0c0f;
  border-top: 1px solid var(--border-soft);
}
.cta-band__title { font-size: clamp(36px, 6vw, 64px); margin-bottom: 10px; }
.cta-band__sub { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px;
  background: #060607;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand__tagline { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Page hero (interior pages) ---- */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border-soft);
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(162,89,255,0.14), transparent 65%);
}
.page-hero__title { font-size: clamp(38px, 6vw, 64px); }
.page-hero__lede { color: var(--text-muted); margin-top: 14px; max-width: 620px; }
.breadcrumb { color: var(--text-dim); font-size: 13px; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--text); }

/* ---- Shop grid page ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Product detail ---- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery__main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
  margin-bottom: 12px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; }
.product-gallery__thumbs button {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 76px; height: 96px;
  padding: 0;
  cursor: pointer;
  background: #000;
  opacity: 0.7;
}
.product-gallery__thumbs button.active { border-color: var(--accent); opacity: 1; }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info__eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12.5px; margin-bottom: 10px; }
.product-info__title { font-size: clamp(36px, 5vw, 52px); margin-bottom: 10px; }
.product-info__price { font-size: 24px; font-weight: 700; margin-bottom: 18px; }
.product-info__desc { color: var(--text-muted); margin-bottom: 28px; font-size: 15.5px; }

.spirit-select { margin-bottom: 28px; }
.field-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
  display: block;
}
.swatch-row { display: flex; gap: 14px; }
.swatch {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.swatch.active { border-color: var(--text); }
.swatch[data-design="fire-spirit"] { background: radial-gradient(circle, #ff6a1a, #7a1e00); }
.swatch[data-design="purple-energy"] { background: radial-gradient(circle, #a259ff, #3d1170); }
.swatch[data-design="blue-focus"] { background: radial-gradient(circle, #22b8ff, #0a3a5c); }

.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size-btn {
  min-width: 52px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.size-btn:hover { border-color: var(--text-muted); }
.size-btn.active { border-color: var(--accent); background: var(--accent); color: #0a0a0a; }

.qty-row { display: flex; align-items: center; gap: 14px; margin: 28px 0; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; }
.qty-stepper button {
  width: 40px; height: 40px;
  background: none; border: none; color: var(--text);
  font-size: 18px; cursor: pointer;
}
.qty-stepper span { min-width: 30px; text-align: center; font-weight: 700; }

.product-actions { display: flex; gap: 14px; margin-bottom: 32px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.feature-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 13.5px; }
.feature-item svg { flex: none; color: var(--accent); }

.add-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(140%);
  transition: transform .3s ease;
  z-index: 200;
}
.add-toast.show { transform: translateY(0); }

/* ---- Cart ---- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
}
.cart-item__img { width: 88px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; background: #000; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; letter-spacing: 0.02em; }
.cart-item__meta { color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item__remove { color: var(--text-dim); font-size: 12.5px; text-decoration: underline; cursor: pointer; background: none; border: none; }
.cart-item__remove:hover { color: var(--error); }

.summary-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--text-muted); font-size: 14.5px; }
.summary-row--total { color: var(--text); font-weight: 700; font-size: 18px; border-top: 1px solid var(--border-soft); margin-top: 8px; padding-top: 16px; }
.summary-note { color: var(--text-dim); font-size: 12.5px; margin-top: 14px; }

.empty-state { text-align: center; padding: 96px 0; }
.empty-state p { color: var(--text-muted); margin: 14px 0 28px; }

/* ---- Forms / Checkout ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--error); font-size: 13px; margin-top: 6px; }
.form-status { border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; margin-top: 16px; }
.form-status--error { background: rgba(255,90,90,0.1); border: 1px solid rgba(255,90,90,0.35); color: #ff9c9c; }
.form-status--success { background: rgba(61,220,132,0.1); border: 1px solid rgba(61,220,132,0.35); color: #8ff0bb; }

.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.checkout-section { margin-bottom: 40px; }
.checkout-section__title { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; margin-bottom: 18px; letter-spacing: 0.02em; }
#square-card-container { padding: 4px 0; }
.pay-methods { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pay-method-btn {
  flex: 1;
  min-width: 140px;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

.order-summary-mini { border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; margin-bottom: 16px; }
.order-summary-mini__item { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-muted); padding: 6px 0; }

.confirmation-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}
.confirmation-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(61,220,132,0.12);
  border: 1px solid rgba(61,220,132,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}

/* ---- Admin ---- */
.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border-soft); }
.admin-table th { color: var(--text-dim); text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.06em; }
.status-pill { padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; display: inline-block; }
.status-pill--paid, .status-pill--submitted_to_printify, .status-pill--completed { background: rgba(61,220,132,0.15); color: #8ff0bb; }
.status-pill--fulfillment_pending, .status-pill--pending_payment { background: rgba(255,196,64,0.15); color: #ffd98a; }
.status-pill--failed { background: rgba(255,90,90,0.15); color: #ff9c9c; }

/* ---- Honeypot (hidden from real users, catches bots) ---- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .collection-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .gallery__item--a { grid-column: span 4; grid-row: span 3; }
  .gallery__item--b, .gallery__item--c, .gallery__item--d, .gallery__item--e { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .collection-grid, .shop-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--a, .gallery__item--b, .gallery__item--c, .gallery__item--d, .gallery__item--e { grid-column: span 2; grid-row: span 2; }
  .hero { min-height: auto; }
  .hero__copy { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
}

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