:root {
  --green: #2b5d1c;
  --teal: #0e93a4;
  --purple: #5b23e8;
  --red: #8a1414;
  --orange: #f3701c;
  --yellow: #f5c518;
  --ink: #16150f;
  --paper: #faf6ea;
  --cream: #ffffff;
  --line: rgba(22,21,15,0.14);
  --radius: 20px;
  --border-w: 2.5px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-heading: "Archivo", "Arial Black", sans-serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .hero-inner > *, .chant-reveal li { opacity: 1 !important; transform: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--teal), var(--red));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Buttons — thick border + hard offset shadow, press-down on click */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: var(--border-w) solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 5px 5px 0 var(--orange);
}
.btn-primary:hover { background: #262419; transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--orange); }
.btn-primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--orange); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-light:hover { background: var(--orange); transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-light:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.1); transform: translate(-1px,-1px); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(250,246,234,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--border-w) solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--ink);
  background: rgba(250,246,234,0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 9px;
  border: 2px solid var(--ink);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-dots { color: var(--orange); }
.main-nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 3px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--green);
  transition: background-color 0.7s ease;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.25), transparent 55%);
}
.hero-inner {
  text-align: center;
  padding-top: 76px;
}
.hero-inner > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.hero-inner.loaded > *:nth-child(1) { transition-delay: 0.05s; }
.hero-inner.loaded > *:nth-child(2) { transition-delay: 0.16s; }
.hero-inner.loaded > *:nth-child(3) { transition-delay: 0.3s; }
.hero-inner.loaded > *:nth-child(4) { transition-delay: 0.42s; }
.hero-inner.loaded > *:nth-child(5) { transition-delay: 0.52s; }
.hero-inner.loaded > *:nth-child(6) { transition-delay: 0.62s; }
.hero-inner.loaded > * {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.eyebrow-dark { color: rgba(22,21,15,0.55); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.rotator {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.rotator.swap {
  opacity: 0;
  transform: translateY(12px);
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dots button.active {
  background: var(--cream);
  transform: scale(1.2);
}
.hero-limited-badge {
  display: inline-flex;
  margin: 34px auto 0;
  padding: 9px 18px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-limited-badge:hover {
  transform: rotate(-2deg) translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-cue span {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.collection-grid .reveal:nth-child(1) { transition-delay: 0s; }
.collection-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.collection-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.collection-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: var(--border-w) solid var(--ink);
  border-bottom: var(--border-w) solid var(--ink);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Collections */
.collections { padding: 110px 0 90px; }
.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 6px 0 14px;
  line-height: 1.05;
}
.section-lead {
  color: rgba(22,21,15,0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.coming-soon-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
}
.collection-card-sm .card-media {
  aspect-ratio: 1 / 1;
}
.collection-card-sm .card-body {
  padding: 18px 20px 22px;
}
.collection-card-sm .card-body h3 {
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.collection-card-sm .card-body p {
  font-size: 0.85rem;
  margin: 0 0 12px;
}
.collection-card-sm .card-link {
  font-size: 0.82rem;
}
.collection-card-sm .coming-soon-badge {
  top: 10px;
  right: 10px;
  padding: 5px 11px;
  font-size: 0.6rem;
}

/* Limited-edition card (Fly Your Kite) — pairs with Kindness as a small-card row */
.collection-card-kite .card-body h3,
.collection-card-kite .card-link {
  color: var(--ink);
}
.limited-edition-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--yellow);
}

.collection-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-w) solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.collection-card:hover {
  transform: translate(-4px,-4px) rotate(-0.6deg);
  box-shadow: 11px 11px 0 var(--ink);
}
.collection-card:nth-child(even):hover {
  transform: translate(-4px,-4px) rotate(0.6deg);
}
.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--card-color);
  border-bottom: var(--border-w) solid var(--ink);
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .card-media img { transform: scale(1.06); }

/* Photo galleries (cards with real product photography) */
.card-gallery .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.5s ease;
}
.card-gallery .gallery-slide.active {
  opacity: 1;
}
.gallery-dots {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-dots button.active {
  background: var(--cream);
  transform: scale(1.25);
}

/* Coming-soon sticker */
.coming-soon-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--ink);
  animation: stickerWobble 3.6s ease-in-out infinite;
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(-2deg); }
}
.card-body { padding: 26px 28px 30px; }
.card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--card-color);
}
.card-body p {
  margin: 0 0 16px;
  color: rgba(22,21,15,0.68);
  line-height: 1.55;
  font-size: 0.96rem;
}
.card-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--card-color);
}
.card-link span { transition: transform 0.2s ease; }
.card-link:hover span { transform: translateX(4px); }

/* Manifesto */
.manifesto {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.manifesto-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.manifesto-mark img {
  width: 100%;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--cream);
  box-shadow: 8px 8px 0 var(--orange);
}
.manifesto-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.manifesto-id .manifesto-credit { margin-top: 9px; }
.manifesto-id-name {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,253,248,0.9);
}
.manifesto-id-name .sep { color: var(--orange); margin: 0 6px; }
.manifesto-credit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.manifesto-credit-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-align: left;
  white-space: nowrap;
}
.manifesto-credit a { color: var(--yellow); font-weight: 800; font-size: 1.15rem; }
.manifesto-credit .credit-logo {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
  border: var(--border-w) solid var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
  flex-shrink: 0;
}
.manifesto-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 6px 0 20px;
}
.manifesto-copy p {
  color: rgba(255,253,248,0.78);
  line-height: 1.65;
  font-size: 1rem;
  margin: 0 0 14px;
}
.manifesto-copy .manifesto-beat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--cream);
  margin: 24px 0 12px;
}
.manifesto-chant {
  list-style: none;
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1.5px solid rgba(255,253,248,0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.manifesto-chant li {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: rgba(255,253,248,0.5);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.16,.84,.44,1);
}
.manifesto-chant.in-view li {
  opacity: 1;
  transform: translateX(0);
}
.manifesto-chant.in-view li:nth-child(1) { transition-delay: 0.05s; }
.manifesto-chant.in-view li:nth-child(2) { transition-delay: 0.28s; }
.manifesto-chant.in-view li:nth-child(3) { transition-delay: 0.51s; }
.manifesto-chant.in-view li:nth-child(4) { transition-delay: 0.74s; }
.manifesto-chant li.chant-final {
  color: var(--orange);
  font-size: 2rem;
  margin-top: 6px;
}

/* Shop CTA */
.shop-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(43,93,28,0.12), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(91,35,232,0.12), transparent 40%),
    radial-gradient(circle at 30% 85%, rgba(14,147,164,0.12), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(138,20,20,0.12), transparent 40%),
    var(--paper);
}
.shop-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 14px;
}
.shop-cta p {
  color: rgba(22,21,15,0.65);
  margin: 0 0 34px;
  font-size: 1.05rem;
}
.signup-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.signup-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 999px;
  border: var(--border-w) solid var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.signup-form input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-msg {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: var(--border-w) solid var(--ink);
  padding: 70px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-brand p {
  color: rgba(22,21,15,0.6);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 6px 0 0;
  max-width: 220px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  color: rgba(22,21,15,0.5);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1.5px solid var(--line);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(22,21,15,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }
.umbrella-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(22,21,15,0.5);
  transition: color 0.2s ease;
}
.umbrella-credit:hover { color: var(--ink); }
.umbrella-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--line);
}

/* Cart toggle (header) */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cart-toggle:hover {
  border-color: var(--ink);
  background: var(--cream);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--cream);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 1;
}
.cart-count[hidden] { display: none; }

/* Product card commerce controls */
.card-body p.card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.size-picker {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.size-opt {
  width: 38px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.size-opt:hover { border-color: var(--ink); }
.size-opt.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.add-cart-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--card-color);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.add-cart-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--card-color); }
.add-cart-btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--card-color); }
.add-cart-btn.added { background: var(--green); border-color: var(--green); }
.collection-card-sm .card-body p.card-price { font-size: 0.95rem; margin-bottom: 8px; }
.collection-card-sm .size-picker { gap: 6px; margin-bottom: 10px; }
.collection-card-sm .size-opt { width: 32px; height: 28px; font-size: 0.68rem; }
.collection-card-sm .add-cart-btn { padding: 8px 16px; font-size: 0.76rem; }

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,21,15,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--paper);
  border-left: var(--border-w) solid var(--ink);
  box-shadow: -10px 0 0 rgba(22,21,15,0.08);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.cart-drawer.open { transform: translateX(0); }
.cart-view { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.cart-view[hidden] { display: none; }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.cart-drawer-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0;
  flex: 1;
}
.cart-close, .cart-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.cart-close:hover, .cart-back:hover { background: var(--orange); }

.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--line);
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--ink);
}
.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 2px;
}
.cart-item-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(22,21,15,0.55);
  margin: 0 0 8px;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: var(--cream);
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1;
}
.cart-item-qty span { font-family: var(--font-mono); font-size: 0.85rem; min-width: 14px; text-align: center; }
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  gap: 8px;
}
.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(22,21,15,0.45);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-item-remove:hover { color: var(--red); }

.cart-empty {
  margin: auto 0;
  text-align: center;
  color: rgba(22,21,15,0.5);
  font-size: 0.95rem;
}

.cart-summary { margin-top: auto; padding-top: 20px; }
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.cart-row.cart-total {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1.5px solid var(--line);
}
.cart-free-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange);
  margin: -2px 0 10px;
}
.cart-checkout-btn { width: 100%; margin-top: 16px; }

.checkout-form { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(22,21,15,0.6);
}
.checkout-form input,
.checkout-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--cream);
  resize: vertical;
}
.checkout-form input:focus,
.checkout-form textarea:focus { outline: none; border-color: var(--orange); }
.payment-method {
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-method legend {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(22,21,15,0.6);
  padding: 0 4px;
}
.payment-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.payment-opt input { accent-color: var(--ink); width: 16px; height: 16px; }
.checkout-error {
  margin: 0;
  padding: 10px 14px;
  background: rgba(138,20,20,0.08);
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  font-size: 0.85rem;
  line-height: 1.4;
}
#placeOrderBtn[disabled] { opacity: 0.6; cursor: not-allowed; }

.order-confirm {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding-top: 20px;
}
.order-confirm-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.order-confirm-id {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 10px;
}
.order-confirm-msg {
  color: rgba(22,21,15,0.65);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 8px;
  max-width: 300px;
}
.order-confirm .cart-summary { width: 100%; text-align: left; }
.order-confirm #confirmDone { margin-top: 20px; width: 100%; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: var(--border-w) solid var(--ink);
  }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .collection-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-mark { max-width: 320px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
