/** Shopify CDN: Minification failed

Line 781:0 Unexpected "}"

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

:root {
  --ink: #0A0A0A;
  --bone: #F2EDE4;
  --sulfur: #F5D000;
  --ash: #8E8E8B;
  --bone-dark: #ECEAE0;
  --bone-mid: #F8F4EB;
}

html, body { background: var(--bone); scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; color: var(--ink); overflow-x: hidden; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--ink); }

/* ── Typography Utilities ──────────────────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-mono    { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; }
.font-body    { font-family: 'Space Grotesk', sans-serif; }

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes ticker  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse   { 0%,100% { opacity:1; } 50% { opacity:0.25; } }
@keyframes slideUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes menuIn  { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

/* ── Reset helpers ─────────────────────────────────────────────────────────── */
.btn-reset { background: none; border: none; cursor: pointer; padding: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
select { -webkit-appearance: none; }
input, textarea, select { font-family: inherit; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.1em;
  padding: 14px 32px; transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover { background: #1e1e1e; }
.btn--yellow  { background: var(--sulfur); color: var(--ink); }
.btn--yellow:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,208,0,0.3); }
.btn--outline { background: transparent; color: var(--bone); border: 1px solid rgba(255,255,255,0.25); font-family: 'Space Grotesk',sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; }
.btn--outline:hover { border-color: rgba(255,255,255,0.6); }
.btn--outline-dark { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,0.2); font-family: 'JetBrains Mono',monospace; font-size: 10px; letter-spacing: 0.1em; padding: 11px 28px; }
.btn--outline-dark:hover { background: var(--ink); color: var(--bone); }
.btn--full { width: 100%; }
.btn--sm { font-size: 11px; padding: 8px 18px; }

/* ── Announcement Bar / Ticker ─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--ink);
  height: 30px; overflow: hidden;
  display: flex; align-items: center;
}
.ticker-wrap--yellow { background: var(--sulfur); }
.ticker-track {
  display: flex; animation: ticker 28s linear infinite; white-space: nowrap;
}
.ticker-text {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  color: rgba(242,237,228,0.55);
}
.ticker-wrap--yellow .ticker-text { color: var(--ink); }

/* ── Header / Nav ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 54px; position: relative;
}
.site-header__logo {
  background: none; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--bone); letter-spacing: 0.05em; line-height: 1;
  text-decoration: none; cursor: pointer;
}
.site-header__logo span { color: var(--sulfur); }

.site-nav {
  display: flex; gap: 32px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.site-nav__link {
  background: none; border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--bone); letter-spacing: 0.12em; opacity: 0.65;
  transition: opacity 0.15s; cursor: pointer; text-decoration: none;
}
.site-nav__link:hover { opacity: 1; }

.site-header__actions { display: flex; align-items: center; gap: 24px; }
.site-header__action {
  background: none; border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--bone); letter-spacing: 0.1em; opacity: 0.5; transition: opacity 0.15s; cursor: pointer;
}
.site-header__action:hover { opacity: 1; }

.cart-toggle {
  background: none; border: none;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--bone); letter-spacing: 0.1em; cursor: pointer;
}
.cart-count-bubble {
  background: var(--sulfur); color: var(--ink); border-radius: 50%;
  width: 17px; height: 17px; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
}

.nav-progress { height: 2px; background: rgba(255,255,255,0.04); position: relative; }
.nav-progress__fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--sulfur); transition: width 0.4s ease;
}

/* Hamburger */
.hamburger-btn {
  display: none; background: none; border: none;
  color: var(--bone); font-size: 20px; line-height: 1; padding: 4px 0; cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--ink); flex-direction: column;
  padding: 80px 32px 48px; animation: menuIn 0.2s ease;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  background: none; border: none; text-align: left;
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--bone); letter-spacing: 0.04em; line-height: 1.1;
  margin-bottom: 4px; opacity: 0.9; cursor: pointer; text-decoration: none;
}
.mobile-menu__actions { display: flex; gap: 24px; margin-top: 40px; }
.mobile-menu__action {
  background: none; border: none;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ash); letter-spacing: 0.12em; cursor: pointer;
}
.mobile-menu__footer {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  color: var(--ash); letter-spacing: 0.12em; line-height: 1.8;
}

/* ── Cart Drawer ────────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity 0.3s; backdrop-filter: blur(0px);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; backdrop-filter: blur(2px); }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--bone); z-index: 301;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.2);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  padding: 18px 24px; border-bottom: 1px solid rgba(0,0,0,0.09);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.cart-drawer__title { font-family: 'Bebas Neue',sans-serif; font-size: 20px; letter-spacing: 0.05em; }
.cart-drawer__close {
  background: none; border: none; font-size: 18px; color: var(--ink);
  opacity: 0.5; transition: opacity 0.15s; cursor: pointer; line-height: 1;
}
.cart-drawer__close:hover { opacity: 1; }

.cart-drawer__threshold {
  padding: 10px 24px; flex-shrink: 0;
  background: rgba(0,0,0,0.04); transition: background 0.3s;
}
.cart-drawer__threshold.is-unlocked { background: var(--sulfur); }
.cart-threshold__text {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: 0.1em; margin-bottom: 6px; color: var(--ash);
}
.cart-drawer__threshold.is-unlocked .cart-threshold__text { color: var(--ink); }
.cart-threshold__bar { height: 2px; background: rgba(0,0,0,0.1); }
.cart-threshold__fill { height: 100%; background: var(--ink); transition: width 0.4s ease; }

.cart-drawer__body { flex: 1; overflow-y: auto; }

.cart-drawer__empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 16px; padding: 40px;
  text-align: center;
}
.cart-drawer__empty p { font-family:'Bebas Neue',sans-serif; font-size: 28px; color: var(--ash); letter-spacing: 0.05em; }

.cart-item {
  padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.07);
  display: grid; grid-template-columns: 72px 1fr; gap: 14px;
  animation: slideUp 0.25s ease;
}
.cart-item__img-wrap { display: block; }
.cart-item__img-wrap img { width: 72px; height: 72px; object-fit: cover; }
.cart-item__img-placeholder {
  width: 72px; height: 72px; background: #D8D2C8;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #999;
}
.cart-item__name { font-family:'Space Grotesk',sans-serif; font-weight: 600; font-size: 13px; margin-bottom: 3px; }
.cart-item__size { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.08em; margin-bottom: 12px; }
.cart-item__controls { display: flex; align-items: center; justify-content: space-between; }

.qty-control { display: flex; align-items: center; border: 1px solid rgba(0,0,0,0.15); }
.qty-btn {
  background: none; border: none; width: 34px; height: 34px;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
}
.qty-value { font-family:'JetBrains Mono',monospace; font-size: 11px; width: 24px; text-align: center; }

.cart-item__right { display: flex; gap: 14px; align-items: center; }
.cart-item__remove {
  background: none; border: none; font-family:'JetBrains Mono',monospace;
  font-size: 9px; color: var(--ash); letter-spacing: 0.08em;
  text-decoration: underline; cursor: pointer;
}
.cart-item__price { font-family:'Space Grotesk',sans-serif; font-weight: 600; font-size: 14px; }

.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.09); flex-shrink: 0; }
.cart-footer__row {
  display: flex; justify-content: space-between; margin-bottom: 6px;
  font-family:'JetBrains Mono',monospace; font-size: 9px; letter-spacing: 0.1em;
}
.cart-footer__row--muted { color: var(--ash); margin-bottom: 18px; }
.cart-footer__subtotal { font-family:'Space Grotesk',sans-serif; font-weight: 600; font-size: 14px; }
.cart-footer__checkout { margin-bottom: 10px; }
.cart-footer__pay-methods { display: flex; gap: 6px; }
.cart-footer__pay-methods span {
  flex: 1; background: rgba(0,0,0,0.05); padding: 7px 4px;
  text-align: center; font-family:'JetBrains Mono',monospace;
  font-size: 8px; letter-spacing: 0.06em; color: var(--ash);
}

/* ── Product Card ───────────────────────────────────────────────────────────── */
.product-card { cursor: pointer; }
.product-card__img-wrap { position: relative; margin-bottom: 11px; overflow: hidden; }
.product-card__img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-card__placeholder {
  width: 100%; aspect-ratio: 3/4; background: #D8D2C8;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; color: #999;
  text-align: center; padding: 0 12px; line-height: 1.8;
}
.product-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.08em;
  padding: 3px 8px; background: var(--ink); color: var(--bone);
}
.product-card__badge--new { background: var(--sulfur); color: var(--ink); }
.product-card__badge--sold-out { background: var(--ash); }

.product-card__quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.92); color: var(--bone); border: none;
  padding: 13px; font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; cursor: pointer; opacity: 0;
  transition: opacity 0.15s; animation: slideUp 0.15s ease;
}
.product-card:hover .product-card__quick-add { opacity: 1; }
.product-card__info { }
.product-card__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 3px;
}
.product-card__name { font-family:'Space Grotesk',sans-serif; font-weight: 600; font-size: 13px; }
.product-card__price { font-family:'Space Grotesk',sans-serif; font-weight: 600; font-size: 13px; }
.product-card__sizes { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.06em; }

/* ── Home: Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__inner { position: relative; height: 92vh; min-height: 560px; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__live {
  position: absolute; top: 28px; right: 32px;
  display: flex; align-items: center; gap: 8px;
}
.hero__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sulfur); animation: pulse 1.6s ease-in-out infinite;
}
.hero__live-text {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--bone); letter-spacing: 0.12em; opacity: 0.8;
}
.hero__copy {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 56px 64px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero__label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(242,237,228,0.5); letter-spacing: 0.18em; margin-bottom: 16px;
}
.hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 11vw, 152px);
  color: var(--bone); line-height: 0.88; letter-spacing: 0.015em; margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Manifesto */
.manifesto { background: var(--ink); padding: 40px 56px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.manifesto__text {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 2.8vw, 36px);
  color: rgba(242,237,228,0.75); letter-spacing: 0.04em; line-height: 1.15; max-width: 960px;
}

/* ── Home: Featured Products ─────────────────────────────────────────────────── */
.featured-products { padding: 72px 56px; background: var(--bone); }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px;
}
.section-title { font-family:'Bebas Neue',sans-serif; font-size: 44px; letter-spacing: 0.04em; }
.section-link {
  background: none; border: none;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink); letter-spacing: 0.1em; text-decoration: underline; cursor: pointer;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── Home: Campaign Split ───────────────────────────────────────────────────── */
.campaign-split {
  display: grid; grid-template-columns: 55% 45%;
  background: var(--ink); min-height: 560px;
}
.campaign-split__img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.campaign-split__img-placeholder { width: 100%; height: 100%; min-height: 560px; background: #111; }
.campaign-split__copy {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 72px 64px;
}
.campaign-split__label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  color: var(--ash); letter-spacing: 0.18em; margin-bottom: 24px;
}
.campaign-split__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 88px);
  color: var(--bone); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 28px;
}
.campaign-split__body {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  color: rgba(242,237,228,0.55); line-height: 1.75; margin-bottom: 32px; max-width: 320px;
}

/* ── Home: UGC Grid ─────────────────────────────────────────────────────────── */
.ugc-section { padding: 72px 56px; background: var(--bone); }
.ugc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.ugc-title { font-family:'Bebas Neue',sans-serif; font-size: 28px; letter-spacing: 0.04em; }
.ugc-platforms { font-family:'JetBrains Mono',monospace; font-size: 10px; color: var(--ash); letter-spacing: 0.1em; }
.ugc-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.ugc-item { overflow: hidden; cursor: pointer; }
.ugc-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.3s; }
.ugc-item:hover img { transform: scale(1.04); }
.ugc-placeholder { width: 100%; aspect-ratio: 1; background: #D8D2C8; }

/* ── Home: Press Bar ────────────────────────────────────────────────────────── */
.press-bar {
  background: var(--bone-dark); padding: 28px 56px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; justify-content: space-between; align-items: center;
}
.press-bar__label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.12em; }
.press-bar__name { font-family:'Bebas Neue',sans-serif; font-size: 20px; letter-spacing: 0.06em; color: rgba(10,10,10,0.35); }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); padding: 64px 56px 36px; color: var(--bone); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { font-family:'Bebas Neue',sans-serif; font-size: 26px; letter-spacing: 0.05em; margin-bottom: 6px; }
.footer-logo span { color: var(--sulfur); }
.footer-tagline { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.12em; line-height: 1.8; }
.footer-col__label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.15em; margin-bottom: 18px; }
.footer-col__link {
  display: block; font-family:'Space Grotesk',sans-serif; font-size: 13px;
  margin-bottom: 10px; color: rgba(242,237,228,0.75);
  cursor: pointer; transition: color 0.15s; text-decoration: none;
}
.footer-col__link:hover { color: var(--bone); }
.footer-newsletter__label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.15em; margin-bottom: 14px; }
.footer-newsletter__form { display: flex; border: 1px solid rgba(255,255,255,0.12); margin-bottom: 6px; }
.footer-newsletter__input {
  flex: 1; background: none; border: none; padding: 10px 14px;
  color: var(--bone); font-family: 'Space Grotesk', sans-serif; font-size: 13px; outline: none;
}
.footer-newsletter__btn {
  background: var(--bone); color: var(--ink); border: none;
  padding: 10px 16px; font-family:'JetBrains Mono',monospace; font-size: 13px; font-weight: 500; cursor: pointer;
}
.footer-newsletter__note { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.08em; line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.1em; }

/* ── Collection / Shop Page ─────────────────────────────────────────────────── */
.collection-header { padding: 44px 56px 36px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.collection-header__label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.14em; margin-bottom: 10px; }
.collection-header__top { display: flex; justify-content: space-between; align-items: flex-end; }
.collection-header__title { font-family:'Bebas Neue',sans-serif; font-size: 64px; letter-spacing: 0.04em; line-height: 1; }
.collection-header__count { font-family:'JetBrains Mono',monospace; font-size: 10px; color: var(--ash); letter-spacing: 0.08em; margin-top: 6px; }
.filter-toggle-btn {
  display: none; background: transparent; color: var(--ink);
  border: 1px solid var(--ink); padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
  cursor: pointer; transition: all 0.15s; flex-shrink: 0;
}
.filter-toggle-btn.is-active { background: var(--ink); color: var(--bone); }

.collection-body { display: grid; grid-template-columns: 228px 1fr; }
.collection-sidebar {
  padding: 36px 28px; border-right: 1px solid rgba(0,0,0,0.08);
  position: sticky; top: 56px; height: fit-content;
}
.sidebar-section { margin-bottom: 36px; }
.sidebar-label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.14em; margin-bottom: 14px; }
.sidebar-cat-btn {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 7px 0; font-family:'Space Grotesk',sans-serif; font-size: 13px; font-weight: 400;
  color: var(--ash); border-bottom: 1px solid transparent;
  transition: all 0.15s; cursor: pointer;
}
.sidebar-cat-btn.is-active { font-weight: 700; color: var(--ink); border-bottom-color: var(--ink); }
.size-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.size-btn {
  background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,0.18);
  padding: 5px 9px; font-family:'JetBrains Mono',monospace; font-size: 9px;
  letter-spacing: 0.06em; transition: all 0.15s; cursor: pointer;
}
.size-btn.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.color-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
  width: 22px; height: 22px; border: 1px solid rgba(0,0,0,0.14);
  cursor: pointer; transition: transform 0.15s;
}
.color-swatch:hover { transform: scale(1.15); }
.drop-filter { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.drop-filter__check { width: 12px; height: 12px; border: 1px solid rgba(0,0,0,0.2); flex-shrink: 0; }
.drop-filter__label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.06em; }
.sidebar-clear {
  margin-top: 24px; font-family:'JetBrains Mono',monospace; font-size: 9px;
  color: var(--ash); letter-spacing: 0.1em; background: none; border: none;
  text-decoration: underline; cursor: pointer;
}

.collection-grid-wrap { padding: 36px 56px; }
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px;
}
.collection-toolbar__count { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.08em; }
.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.08em; }
.sort-select {
  background: none; border: 1px solid rgba(0,0,0,0.15); padding: 4px 10px;
  font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ink);
  letter-spacing: 0.08em; cursor: pointer; outline: none;
}

.mobile-filter-panel {
  display: none; padding: 24px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08); background: var(--bone-mid);
  animation: slideUp 0.2s ease;
}
.mobile-filter-panel.is-open { display: block; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination__link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(0,0,0,0.15);
  font-family:'JetBrains Mono',monospace; font-size: 11px; color: var(--ink);
  text-decoration: none; transition: all 0.15s;
}
.pagination__link.is-active, .pagination__link:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ── PDP (Product Detail Page) ──────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 56px; border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; gap: 10px; align-items: center;
  font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.1em;
  overflow-x: auto; white-space: nowrap;
}
.breadcrumb__link { color: var(--ash); text-decoration: none; transition: color 0.15s; cursor: pointer; }
.breadcrumb__link:hover { color: var(--ink); }
.breadcrumb__current { color: var(--ink); }

.pdp { display: grid; grid-template-columns: 1fr 1fr; background: var(--bone); min-height: 100vh; }
.pdp__gallery { padding: 32px 16px 32px 56px; }
.pdp__carousel { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #E8E3DA; }
.pdp__slides {
  display: flex; height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pdp__slide { flex: 0 0 100%; height: 100%; }
.pdp__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--bone); border: 1px solid rgba(0,0,0,0.12);
  font-size: 18px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.pdp__arrow:hover { background: var(--ink); color: var(--bone); }
.pdp__arrow--prev { left: 12px; }
.pdp__arrow--next { right: 12px; }

.pdp__info { padding: 48px 56px 48px 24px; }
.pdp__drop-label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.12em; margin-bottom: 6px; }
.pdp__badge {
  display: inline-block; background: var(--ink); color: var(--bone);
  font-family:'JetBrains Mono',monospace; font-size: 8px; padding: 3px 9px;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.pdp__title { font-family:'Bebas Neue',sans-serif; font-size: 58px; letter-spacing: 0.03em; line-height: 0.95; margin-bottom: 4px; }
.pdp__color-title { font-family:'Bebas Neue',sans-serif; font-size: 38px; letter-spacing: 0.03em; color: var(--ash); margin-bottom: 10px; }
.pdp__meta { font-family:'JetBrains Mono',monospace; font-size: 10px; color: var(--ash); margin-bottom: 28px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.pdp__price { font-family:'Space Grotesk',sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); }

.pdp__swatch-label { font-family:'JetBrains Mono',monospace; font-size: 8px; letter-spacing: 0.12em; color: var(--ash); margin-bottom: 10px; }
.pdp__swatch { width: 36px; height: 36px; border: 2px solid var(--ink); margin-bottom: 28px; }

.pdp__size-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pdp__size-label { font-family:'JetBrains Mono',monospace; font-size: 8px; letter-spacing: 0.12em; color: var(--ash); }
.pdp__size-label.has-selection { color: var(--ink); }
.pdp__size-guide { background: none; border: none; font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.1em; text-decoration: underline; cursor: pointer; }
.pdp__sizes { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.pdp__size-btn {
  width: 52px; height: 52px; background: transparent; color: var(--ink);
  border: 1px solid rgba(0,0,0,0.18); font-family:'JetBrains Mono',monospace;
  font-size: 10px; letter-spacing: 0.04em; transition: all 0.15s; cursor: pointer;
}
.pdp__size-btn.is-selected { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.pdp__size-btn:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.pdp__sold-out-note { font-family:'JetBrains Mono',monospace; font-size: 10px; color: var(--ash); }

.pdp__atc {
  width: 100%; padding: 16px; border: none; cursor: pointer;
  font-family:'Bebas Neue',sans-serif; font-size: 22px; letter-spacing: 0.1em;
  background: var(--ink); color: var(--bone);
  transition: background 0.25s; margin-bottom: 12px;
}
.pdp__atc:disabled { background: rgba(0,0,0,0.2); cursor: not-allowed; }
.pdp__atc.is-added { background: #2A5E23; }
.pdp__atc.is-sold-out { background: var(--ash); cursor: not-allowed; }
.pdp__buy-now {
  width: 100%; padding: 16px; border: 2px solid var(--ink); cursor: pointer;
  font-family:'Bebas Neue',sans-serif; font-size: 22px; letter-spacing: 0.1em;
  background: transparent; color: var(--ink);
  transition: background 0.2s, color 0.2s; margin-bottom: 12px;
}
.pdp__buy-now:hover:not(:disabled) { background: var(--ink); color: var(--bone); }
.pdp__buy-now:disabled { opacity: 0.35; cursor: not-allowed; }
.pdp__buy-now.is-sold-out { opacity: 0.35; cursor: not-allowed; }
.pdp__ship-note {
  font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash);
  text-align: center; margin-bottom: 36px; letter-spacing: 0.08em;
}

.pdp__specs { border-top: 1px solid rgba(0,0,0,0.1); }
.pdp__spec-row {
  display: flex; padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 24px; align-items: flex-start;
}
.pdp__spec-key { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.12em; width: 76px; flex-shrink: 0; padding-top: 1px; }
.pdp__spec-val { font-family:'Space Grotesk',sans-serif; font-size: 13px; line-height: 1.4; }

.pdp__pairs { padding: 64px 56px; border-top: 1px solid rgba(0,0,0,0.08); }
.pdp__pairs-title { font-family:'Bebas Neue',sans-serif; font-size: 32px; letter-spacing: 0.04em; margin-bottom: 32px; }

/* Carousel dots */
.pdp__dots {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; gap: 6px; justify-content: center; pointer-events: none;
}
.pdp__dot {
  height: 7px; border-radius: 4px; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.5); transition: all 0.25s; pointer-events: auto;
}
.pdp__dot.is-active { width: 20px; background: var(--bone); }
.pdp__dot:not(.is-active) { width: 7px; }

/* ── Cart Page ──────────────────────────────────────────────────────────────── */
.cart-page { background: var(--bone); min-height: 100vh; padding: 56px; }
.cart-page__title { font-family:'Bebas Neue',sans-serif; font-size: 64px; letter-spacing: 0.04em; margin-bottom: 40px; }
.cart-page__layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.cart-page-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-page-item img { width: 100px; height: 100px; object-fit: cover; }
.cart-page__sidebar {
  background: var(--bone-dark); padding: 32px;
  position: sticky; top: 80px;
}
.cart-summary__row { display: flex; justify-content: space-between; margin-bottom: 12px; }
.cart-summary__label { font-family:'JetBrains Mono',monospace; font-size: 9px; color: var(--ash); letter-spacing: 0.1em; }
.cart-summary__total {
  display: flex; justify-content: space-between;
  padding-top: 16px; border-top: 2px solid rgba(0,0,0,0.12);
}
.cart-summary__total-label, .cart-summary__total-amount { font-family:'Bebas Neue',sans-serif; font-size: 24px; letter-spacing: 0.04em; }

/* ── Contact Page ───────────────────────────────────────────────────────────── */
.contact-page { background: var(--bone); min-height: 100vh; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 84px); }
.contact-info {
  background: var(--ink); padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-headline {
  font-family:'Bebas Neue',sans-serif; font-size: clamp(72px,7vw,108px);
  color: var(--bone); line-height: 0.88; letter-spacing: 0.02em; margin-bottom: 40px;
}
.contact-body { font-family:'Space Grotesk',sans-serif; font-size: 14px; color: rgba(242,237,228,0.58); line-height: 1.8; margin-bottom: 48px; max-width: 380px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail__label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.14em; margin-bottom: 5px; }
.contact-detail__val { font-family:'Space Grotesk',sans-serif; font-size: 13px; color: var(--bone); white-space: pre-line; line-height: 1.6; }
.contact-socials { display: flex; gap: 20px; margin-top: 32px; }
.contact-social { font-family:'JetBrains Mono',monospace; font-size: 10px; color: var(--ash); cursor: pointer; letter-spacing: 0.1em; transition: color 0.15s; text-decoration: none; }
.contact-social:hover { color: var(--bone); }

.contact-faq { }
.contact-faq__label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.14em; margin-bottom: 20px; margin-top: 56px; }
.contact-faq__item { border-top: 1px solid rgba(255,255,255,0.08); }
.contact-faq__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 14px 0; text-align: left; cursor: pointer;
}
.contact-faq__q { font-family:'Space Grotesk',sans-serif; font-size: 12px; font-weight: 500; color: var(--bone); letter-spacing: 0.03em; padding-right: 12px; }
.contact-faq__icon { color: var(--ash); font-size: 18px; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.contact-faq__icon.is-open { transform: rotate(45deg); }
.contact-faq__a { font-family:'Space Grotesk',sans-serif; font-size: 13px; color: rgba(242,237,228,0.6); line-height: 1.7; padding-bottom: 16px; }

.contact-form-wrap { padding: 72px 64px; }
.contact-form-label-top { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.14em; margin-bottom: 36px; }
.contact-success { display: flex; flex-direction: column; gap: 16px; animation: slideUp 0.3s ease; }
.contact-success__title { font-family:'Bebas Neue',sans-serif; font-size: 48px; letter-spacing: 0.04em; line-height: 1; }

/* Form fields */
.field { margin-bottom: 24px; }
.field__label { font-family:'JetBrains Mono',monospace; font-size: 8px; color: var(--ash); letter-spacing: 0.12em; display: block; margin-bottom: 8px; }
.field__input, .field__select, .field__textarea {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding: 10px 0; font-family:'Space Grotesk',sans-serif; font-size: 15px;
  color: var(--ink); outline: none; transition: border-color 0.15s;
}
.field__input:focus, .field__select:focus, .field__textarea:focus { border-bottom-color: var(--ink); }
.field__textarea { resize: none; }
.field--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.field--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.field__checkbox-wrap { display: flex; gap: 10px; align-items: center; cursor: pointer; font-family:'Space Grotesk',sans-serif; font-size: 13px; color: var(--ash); }
.field__checkbox { accent-color: var(--ink); width: 16px; height: 16px; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .site-header__inner { padding: 0 20px; }
  .site-nav { display: none; }
  .site-header__actions { gap: 16px; }
  .site-header__action--desktop { display: none; }
  .hamburger-btn { display: block; }

  /* Cart drawer */
  .cart-drawer { width: 100vw; }

  /* Quick add always visible on mobile */
  .product-card__quick-add { opacity: 1; }

  /* Hero */
  .hero__inner { height: 88vh; min-height: 500px; }
  .hero__copy { padding: 32px 20px 44px; }
  .hero__headline { font-size: clamp(64px, 18vw, 96px); }

  /* Sections padding */
  .manifesto { padding: 28px 20px; }
  .featured-products { padding: 48px 20px; }
  .ugc-section { padding: 40px 20px; }
  .ugc-section { padding: 40px 20px; }

  /* Grids */
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .products-grid--3 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .ugc-grid { grid-template-columns: repeat(3,1fr); }

  /* Campaign split */
  .campaign-split { grid-template-columns: 1fr; }
  .campaign-split__img, .campaign-split__img-placeholder { min-height: 280px; }
  .campaign-split__copy { padding: 40px 20px; }
  .campaign-split__headline { font-size: clamp(48px, 14vw, 72px); }

  /* Press bar */
  .press-bar { padding: 20px; flex-wrap: wrap; gap: 12px; }

  /* Footer */
  .site-footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > *:first-child, .footer-grid > *:last-child { grid-column: 1 / -1; }
  .section-title { font-size: 32px; }

  /* Collection */
  .collection-header { padding: 28px 20px 20px; }
  .collection-header__title { font-size: 48px; }
  .collection-body { grid-template-columns: 1fr; }
  .collection-sidebar { display: none; }
  .filter-toggle-btn { display: flex; }
  .collection-grid-wrap { padding: 20px; }
  .products-grid--3 { grid-template-columns: repeat(2,1fr); gap: 14px; }

  /* PDP */
  .breadcrumb { padding: 12px 20px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { padding: 0; }
  .pdp__carousel { aspect-ratio: 3/4; }
  .pdp__info { padding: 24px 20px 48px; }
  .pdp__title { font-size: 48px; }
  .pdp__color-title { font-size: 30px; }
  .pdp__pairs { padding: 40px 20px; }

  /* Cart page */
  .cart-page { padding: 28px 20px; }
  .cart-page__title { font-size: 48px; }
  .cart-page__layout { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 48px 20px; }
  .contact-form-wrap { padding: 48px 20px; }
  .contact-headline { font-size: clamp(56px, 16vw, 80px); }
  .contact-faq__label, .contact-faq__item { margin-top: 0; }
}
/* Fix product image aspect ratio to 3:4 */
.product-card__img-wrap {
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
}

.product-card__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

}
