/* =============================================================
   THE OZ LABEL — Full Design System
   PicoStrap5 Child Theme  |  v1.0.0
   ============================================================= */

/* ----------------------------------------
   0. GOOGLE FONTS
   ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ----------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------- */

:root,
body,
body.theme-dark-mono {
  --bg: #08080a;
  --surface: #101012;
  --fg: #e9e6df;
  --dim: #6b6b70;
  --line: #222226;
  --accent: #e9e6df;
  --accent-fg: #08080a;
  --ph1: #141416;
  --ph2: #1c1c1f;
  --phtx: #4a4a50;
  --dark: 1;
  --ease: cubic-bezier(.22,.61,.36,1);
  --radius: 0px;
  --display: 'Anton', sans-serif;
  color-scheme: dark;
}

body.theme-dark-red {
  --bg: #0a0809;
  --surface: #130f10;
  --fg: #ece8e1;
  --dim: #73686a;
  --line: #2a2122;
  --accent: #b3121b;
  --accent-fg: #f3ece9;
  --ph1: #161011;
  --ph2: #1e1517;
  --phtx: #4f4244;
  --dark: 1;
  color-scheme: dark;
}

body.theme-dark-gold {
  --bg: #13110e;
  --surface: #1b1814;
  --fg: #e8e1d3;
  --dim: #7c7466;
  --line: #2c2820;
  --accent: #c79a4e;
  --accent-fg: #13110e;
  --ph1: #1a1712;
  --ph2: #221d17;
  --phtx: #544e42;
  --dark: 1;
  color-scheme: dark;
}

body.theme-light {
  --bg: #f4f3f1;
  --surface: #ffffff;
  --fg: #0b0b0b;
  --dim: #8a8a86;
  --line: #dcdad5;
  --accent: #0b0b0b;
  --accent-fg: #f4f3f1;
  --ph1: #e7e5e0;
  --ph2: #dedcd6;
  --phtx: #9c9a94;
  --dark: 0;
  color-scheme: light;
}

/* ----------------------------------------
   2. GLOBAL RESETS & BASE
   ---------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override PicoStrap5 / Bootstrap defaults */
body.dark { background: var(--bg) !important; }
.navbar, .nav { display: none !important; }
#page-content, .container, .container-fluid { padding: 0 !important; max-width: none !important; }

::selection { background: var(--fg); color: var(--bg); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

/* ----------------------------------------
   3. GRAIN + DARK VIGNETTE
   ---------------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

body.dark .grain {
  mix-blend-mode: screen;
  opacity: .42;
}

body.dark::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 52%, rgba(0,0,0,.55) 100%);
}

/* ----------------------------------------
   4. BUTTONS
   ---------------------------------------- */

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-fg);
  border: none;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), filter .25s;
  white-space: nowrap;
  line-height: 1;
}

.btn-solid:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  color: var(--accent-fg);
  text-decoration: none;
}

.btn-solid.full {
  width: 100%;
  padding: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 16px 26px;
  border-radius: var(--radius);
  transition: background .25s var(--ease), color .25s, border-color .25s;
  white-space: nowrap;
  line-height: 1;
}

.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}

.btn-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 0;
  background: var(--fg);
  transition: width .3s var(--ease);
}

.btn-line:hover::after { width: 100%; }

/* ----------------------------------------
   5. ANNOUNCEMENT BAR
   ---------------------------------------- */

.announcement-bar {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 9px 48px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-bar__track {
  display: inline-block;
  animation: announceTicker 32s linear infinite;
}

.announcement-bar:hover .announcement-bar__track {
  animation-play-state: paused;
}

.announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--accent-fg);
  font-size: 18px;
  line-height: 1;
  opacity: .6;
  padding: 4px;
  transition: opacity .2s;
}

.announcement-bar__close:hover { opacity: 1; }

@keyframes announceTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------
   6. SITE HEADER
   ---------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top .3s var(--ease);
}

.site-header.has-bar {
  top: var(--bar-h, 36px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}

.header-bar.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: transparent;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  background: var(--fg);
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
  transition: background .2s;
}

.site-logo:hover .site-logo__mark {
  background: var(--accent);
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--display);
}

.wordmark__name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.wordmark__sub {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .22em;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color .2s;
}

.header-nav-links a:hover { color: var(--fg); }

/* Cart icon */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--fg);
  padding: 8px;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.cart-btn:hover { color: var(--accent); }

.cart-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  pointer-events: none;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  pointer-events: none;
  transition: transform .2s var(--ease);
  padding: 0 3px;
}

.cart-count.bump { transform: scale(1.45); }
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* Hamburger */
.menu-toggle {
  background: none;
  border: none;
  color: var(--fg);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s, width .3s;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------
   7. FULLSCREEN NAV OVERLAY
   ---------------------------------------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  clip-path: circle(0% at calc(100% - 52px) 52px);
  transition: clip-path .65s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}

.nav-overlay.open {
  clip-path: circle(160% at calc(100% - 52px) 52px);
  pointer-events: all;
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  padding: 120px 64px 64px;
  min-height: 100svh;
}

.nav-primary li {
  border-top: 1px solid var(--line);
}

.nav-primary li:last-child {
  border-bottom: 1px solid var(--line);
}

.nav-primary a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--fg);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.nav-primary a:hover {
  color: var(--accent);
  padding-left: 10px;
  text-decoration: none;
}

.nav-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--dim);
  font-weight: 400;
}

.nav-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.nav-secondary a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color .2s;
}

.nav-secondary a:hover { color: var(--fg); }

.nav-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-social {
  display: flex;
  gap: 20px;
}

.nav-social a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color .2s;
}

.nav-social a:hover { color: var(--fg); }

.nav-theme-switcher {
  display: flex;
  gap: 8px;
}

.theme-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}

.theme-dot:hover { transform: scale(1.2); border-color: var(--fg); }
.theme-dot[data-theme="dark-mono"] { background: #08080a; }
.theme-dot[data-theme="dark-red"]  { background: #b3121b; }
.theme-dot[data-theme="dark-gold"] { background: #c79a4e; }
.theme-dot[data-theme="light"]     { background: #f4f3f1; border-color: #dcdad5; }

/* ----------------------------------------
   8. HERO
   ---------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ph1);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,8,10,.2) 0%,
    rgba(8,8,10,.05) 45%,
    rgba(8,8,10,.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: #fff;
  margin: 0 0 32px;
}

.hero-title span { display: block; }

.hero__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__season {
  position: absolute;
  bottom: 80px;
  right: 48px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  z-index: 2;
}

/* ----------------------------------------
   9. MARQUEE
   ---------------------------------------- */

.marquee-strip {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;
  z-index: 2;
}

.marquee {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.marquee-strip:hover .marquee { animation-play-state: paused; }

.marquee__item { padding: 0 28px; white-space: nowrap; }
.marquee__sep  { opacity: .45; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------
   10. SECTION COMMON
   ---------------------------------------- */

.oz-section {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.oz-section--wide {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 14px;
}

.block-title {
  font-family: var(--display);
  font-size: clamp(40px, 7.5vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--fg);
  margin: 0 0 40px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.section-header .block-title { margin-bottom: 0; }

/* ----------------------------------------
   11. PRODUCT CARD
   ---------------------------------------- */

.products-grid,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 768px) {
  .products-grid, ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .products-grid, ul.products { grid-template-columns: 1fr; }
}

.card,
ul.products li.product {
  position: relative;
  background: var(--ph1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--fg);
}

.card__images {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ph1);
  flex-shrink: 0;
}

.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), opacity .4s;
}

.card__img--b { opacity: 0; }

.card:hover .card__img--a { opacity: 0; }
.card:hover .card__img--b { opacity: 1; }
.card:hover .card__images img { transform: scale(1.03); }

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  pointer-events: none;
}

.card-sku {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--dim);
  mix-blend-mode: difference;
  pointer-events: none;
}

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--accent);
  color: var(--accent-fg);
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
}

.card:hover .quick-add {
  transform: translateY(0);
  opacity: 1;
}

.card-meta {
  padding: 14px 4px 10px;
  flex: 1;
}

.card-meta__name {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 6px;
  line-height: 1.3;
}

.card-meta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-meta__cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.card-meta__price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--fg);
}

/* ----------------------------------------
   12. LOOKBOOK BLOCK
   ---------------------------------------- */

.lookbook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.lookbook__main {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.lookbook__secondary {
  position: relative;
  overflow: hidden;
}

.lookbook__main img,
.lookbook__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.lookbook__main:hover img,
.lookbook__secondary:hover img { transform: scale(1.04); }

.lookbook__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: var(--surface);
}

.lb-title {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0 0 18px;
}

.lb-copy {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 360px;
}

/* ----------------------------------------
   13. SPLIT EDITORIAL
   ---------------------------------------- */

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.split-block__img {
  position: relative;
  overflow: hidden;
}

.split-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.split-block__img:hover img { transform: scale(1.03); }

.split-block__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--surface);
}

.split-name {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0 0 22px;
}

.split-copy {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 40px;
}

/* ----------------------------------------
   14. STATEMENT BLOCK
   ---------------------------------------- */

.statement-block {
  text-align: center;
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.state-text {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------
   15. INSTAGRAM GRID
   ---------------------------------------- */

.ig-section { overflow: hidden; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ph2);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s;
}

.ig-item:hover img {
  transform: scale(1.06);
  opacity: .8;
}

.ig-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,10,.45);
  opacity: 0;
  transition: opacity .3s;
}

.ig-item:hover .ig-item__overlay { opacity: 1; }

.ig-item__overlay svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.ig-ph {
  width: 100%;
  height: 100%;
  background: var(--ph2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-ph svg {
  width: 28px;
  height: 28px;
  fill: var(--phtx);
}

/* ----------------------------------------
   16. PLP — COLLECTION PAGE
   ---------------------------------------- */

.plp-header {
  padding: 120px 48px 40px;
  border-bottom: 1px solid var(--line);
}

.plp-breadcrumbs {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plp-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.plp-breadcrumbs a:hover { color: var(--fg); }
.plp-breadcrumbs span { opacity: .45; margin: 0 6px; }

.plp-title {
  font-family: var(--display);
  font-size: clamp(46px, 9vw, 120px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0 0 16px;
}

.plp-count {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--dim);
  text-transform: uppercase;
}

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.filter-chips::-webkit-scrollbar { display: none; }

.chip {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
  border-radius: var(--radius);
}

.chip:hover,
.chip.on {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.sort-select {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--dim);
  border: 1px solid var(--line);
  padding: 8px 30px 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%236b6b70' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 160px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

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

.sort-select option {
  background: var(--bg);
  color: var(--fg);
}

/* ----------------------------------------
   17. PDP — SINGLE PRODUCT
   ---------------------------------------- */

.pdp-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 120px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .pdp-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px 24px 60px;
  }
}

/* Gallery */
.pdp-gallery { position: sticky; top: 90px; }

.pdp-main-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ph1);
  margin-bottom: 8px;
}

.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.pdp-main-img:hover img { transform: scale(1.02); }

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pdp-thumb {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ph2);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}

.pdp-thumb.active { border-color: var(--fg); }

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}

.pdp-thumb:hover img { opacity: .8; }

/* Info panel */
.pdp-info { position: sticky; top: 90px; }

.pdp-sku {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.pdp-name {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0 0 14px;
}

.pdp-price {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.pdp-price del {
  font-size: 15px;
  color: var(--dim);
  opacity: .6;
  margin-right: 8px;
}

.pdp-short-desc {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 30px;
}

/* Option labels */
.pdp-option-group { margin-bottom: 24px; }

.pdp-option-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pdp-option-label strong { color: var(--fg); font-weight: 400; }

/* Swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }

.swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: border-color .2s, color .2s;
  cursor: pointer;
}

.swatch.active {
  border-color: var(--fg);
  color: var(--fg);
}

.sw-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.12);
}

/* Size selector */
.sizes-wrap { position: relative; }

.sizes { display: flex; flex-wrap: wrap; gap: 8px; }

.size {
  min-width: 48px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}

.size:hover { border-color: var(--fg); color: var(--fg); }

.size.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.size.unavailable {
  opacity: .3;
  pointer-events: none;
  position: relative;
}

.size.unavailable::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 110%;
  height: 1px;
  background: var(--dim);
}

.size-error {
  display: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--accent);
  margin-top: 10px;
}

.size-error.visible { display: block; }

@keyframes sizeShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(3px); }
}

.sizes-wrap.shake .sizes { animation: sizeShake .4s var(--ease); }

/* Buy row */
.buy-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 28px 0;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--fg);
  width: 46px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .2s;
}

.qty-btn:hover { background: var(--surface); }

.qty-val {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  width: 44px;
  text-align: center;
  border: none;
  background: none;
  color: var(--fg);
  padding: 0;
}

.qty-val:focus { outline: none; }

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--dim);
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }

.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.accordion-head svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.accordion-item.open .accordion-head svg { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.accordion-item.open .accordion-body { max-height: 300px; }

.accordion-body-inner {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dim);
}

/* Related products */
.related-section {
  padding: 80px 48px;
  border-top: 1px solid var(--line);
}

/* ----------------------------------------
   18. CART DRAWER
   ---------------------------------------- */

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(8,8,9,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.cart-scrim.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  width: min(440px, 92vw);
  background: var(--surface);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  will-change: transform;
}

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

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cart-drawer__title .cart-count-label {
  color: var(--dim);
  margin-left: 2px;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  opacity: .5;
  transition: opacity .2s;
  cursor: pointer;
}

.cart-drawer__close:hover { opacity: 1; }
.cart-drawer__close svg { pointer-events: none; }

/* Shipping progress */
.shipping-bar {
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.shipping-bar__label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.shipping-bar__track {
  height: 2px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}

.shipping-bar__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  transition: width .6s var(--ease);
}

/* Cart items */
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 28px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ph1);
  flex-shrink: 0;
}

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

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cart-item__name {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-item__variant {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
}

.cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}

.cart-item__qty-btn {
  background: none;
  border: none;
  color: var(--dim);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: color .2s;
}

.cart-item__qty-btn:hover { color: var(--fg); }

.cart-item__qty-val {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  width: 30px;
  text-align: center;
  color: var(--fg);
}

.cart-item__price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
  opacity: .5;
  transition: opacity .2s, color .2s;
  flex-shrink: 0;
}

.cart-item__remove:hover { opacity: 1; color: var(--accent); }
.cart-item__remove svg { pointer-events: none; flex-shrink: 0; }

/* Empty cart */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  text-align: center;
}

.cart-empty__icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  opacity: .35;
  margin: 0 auto 22px;
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.cart-empty__text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
}

/* Cart footer */
.cart-drawer__foot {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.cart-subtotal__label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.cart-subtotal__val {
  font-family: 'Space Mono', monospace;
  font-size: 17px;
}

.cart-tax-note {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cart-continue {
  display: block;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  background: none;
  border: none;
  width: 100%;
  padding: 10px 0;
  transition: color .2s;
}

.cart-continue:hover { color: var(--fg); }

/* ----------------------------------------
   19. TOAST
   ---------------------------------------- */

.oz-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 48px));
  z-index: 9999;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 24px;
  white-space: nowrap;
  border-radius: var(--radius);
  /* Matches 2.2s dismiss in JS */
  transition: transform .38s var(--ease), opacity .35s;
  opacity: 0;
  pointer-events: none;
  max-width: calc(100vw - 48px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.oz-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ----------------------------------------
   20. FOOTER
   ---------------------------------------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-hero {
  text-align: center;
  padding: 72px 32px 56px;
  border-bottom: 1px solid var(--line);
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--fg);
  opacity: .7;
  margin: 0 auto 22px;
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.foot-ctd {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
  margin: 0 0 12px;
}

.footer-brand-name {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
}

.footer-est {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--dim);
  opacity: .5;
}

/* Footer columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 48px 48px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 960px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; padding: 40px 24px 32px; } }

.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 20px;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--fg); }

/* Newsletter */
.footer-newsletter__copy {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

/* Input + button row */
.footer-newsletter__field {
  display: flex;
  border: 1px solid var(--line);
  transition: border-color .2s;
}

.footer-newsletter__field:focus-within {
  border-color: var(--fg);
}

.footer-newsletter__input {
  flex: 1;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 14px;
  outline: none;
  min-width: 0;
}

.footer-newsletter__input::placeholder { color: var(--dim); opacity: .7; }

.footer-newsletter__submit {
  background: none;
  border: none;
  border-left: 1px solid var(--line);
  color: var(--fg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s;
  flex-shrink: 0;
}

.footer-newsletter__submit:hover {
  background: var(--fg);
  color: var(--bg);
}

.footer-newsletter__submit svg {
  display: block;
  pointer-events: none;
}

/* Success / error message */
.footer-newsletter__confirm {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  min-height: 16px;
}

.footer-newsletter__confirm:empty { display: none; }

/* Footer base */
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-base span {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ----------------------------------------
   21. RESPONSIVE
   ---------------------------------------- */

@media (max-width: 1024px) {
  .header-nav-links { display: none; }
  .lookbook { grid-template-columns: 1fr; }
  .lookbook__main { grid-row: span 1; aspect-ratio: 16/9; }
  .split-block { grid-template-columns: 1fr; }
  .split-block__img { aspect-ratio: 16/9; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-bar { padding: 0 20px; }
  .hero { padding-bottom: 60px; }
  .hero__content { padding: 0 24px; }
  .hero__season { display: none; }
  .oz-section { padding: 60px 24px; }
  .plp-header { padding: 100px 24px 32px; }
  .filter-bar { padding: 0 24px; }
  .pdp-wrap { grid-template-columns: 1fr; }
  .pdp-gallery, .pdp-info { position: static; }
  .related-section { padding: 60px 24px; }
  .nav-overlay__inner { padding: 100px 32px 48px; }
  .footer-base { padding: 18px 24px; flex-direction: column; text-align: center; }
  .footer-hero { padding: 56px 24px 40px; }
  .lookbook__content { padding: 32px 28px; }
  .split-block__copy { padding: 56px 32px; }
}

@media (max-width: 480px) {
  .products-grid, ul.products { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-row { grid-template-columns: 1fr; }
  .buy-row .qty-stepper { width: fit-content; }
}

/* ----------------------------------------
   22. WOOCOMMERCE OVERRIDES
   ---------------------------------------- */

.woocommerce-page #page-content,
.woocommerce-page .woocommerce {
  background: var(--bg);
  color: var(--fg);
}

.woocommerce .woocommerce-breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--dim);
  text-transform: uppercase;
  padding: 0 !important;
}

.woocommerce .price {
  font-family: 'Space Mono', monospace !important;
  color: var(--fg) !important;
  font-size: 13px !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  color: var(--fg) !important;
  border-radius: 0 !important;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  padding: 14px 16px !important;
  box-shadow: none !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--fg) !important;
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce form .form-row label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.woocommerce #payment { background: var(--surface) !important; border-radius: 0 !important; }
.woocommerce #payment div.payment_box { background: var(--ph2) !important; }

.woocommerce #place_order,
.woocommerce button.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--accent) !important;
  color: var(--accent-fg) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: .04em !important;
  padding: 17px 32px !important;
  transition: filter .2s, transform .2s !important;
}

.woocommerce #place_order:hover,
.woocommerce button.button.alt:hover {
  filter: brightness(1.12) !important;
  transform: translateY(-1px) !important;
}

/* ----------------------------------------
   23. UTILITIES
   ---------------------------------------- */

.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;
}

.oz-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) { .oz-container { padding: 0 24px; } }

/* ============================================================
   24. HEADER v2 — 3-COLUMN GRID
   ============================================================ */

/* 3-col grid replaces old flex layout */
.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 32px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s var(--ease),
              border-color .25s, backdrop-filter .35s;
}

.site-header.is-scrolled .header-bar {
  height: 52px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

/* When announcement bar is present and user scrolls, float header to top */
.site-header.has-bar.is-scrolled { top: 0; }

.header-col { display: flex; align-items: center; }
.header-col--left  { justify-content: flex-start; }
.header-col--center { justify-content: center; }
.header-col--right { justify-content: flex-end; gap: 4px; }

/* Menu toggle: horizontal burger + MENU label */
.menu-toggle {
  flex-direction: row;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 8px 0;
  align-items: center;
  justify-content: flex-start;
}

/* Scoped so .menu-toggle__label span doesn't inherit the bar styles */
.menu-toggle .burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5.5px;
  width: 22px;
}

.menu-toggle .burger-icon span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .2s, width .3s var(--ease);
}

.menu-toggle .burger-icon span:nth-child(1) { width: 22px; }
.menu-toggle .burger-icon span:nth-child(2) { width: 14px; }
.menu-toggle .burger-icon span:nth-child(3) { width: 22px; }

/* Higher specificity than .menu-toggle span — resets the label */
.menu-toggle .menu-toggle__label {
  height: auto;
  width: auto;
  background: transparent;
  display: block;
  transform: none;
  transition: opacity .2s;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Burger → X animation when overlay is open */
.menu-toggle.is-open .burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.menu-toggle.is-open .burger-icon span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.is-open .burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Search / account icon buttons */
.header-icon-btn {
  background: none;
  border: none;
  color: var(--fg);
  opacity: .6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  border-radius: 0;
}
.header-icon-btn:hover { opacity: 1; color: var(--fg); text-decoration: none; }
.header-icon-btn svg { display: block; pointer-events: none; flex-shrink: 0; }

/* Cart: text-based CART [N] */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: none;
  border: none;
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.cart-btn svg { display: none; }

/* Scoped override: inline count replaces old absolute badge */
.cart-btn .cart-count {
  position: static;
  background: none;
  color: var(--dim);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  min-width: 0;
  height: auto;
  border-radius: 0;
  padding: 0;
  display: inline-block;
  vertical-align: baseline;
  pointer-events: none;
  transition: color .2s;
}
.cart-btn .cart-count:not(:empty)::before { content: '['; }
.cart-btn .cart-count:not(:empty)::after  { content: ']'; }
.cart-btn .cart-count:empty { display: none; }
.cart-btn .cart-count.bump { color: var(--accent); transform: none; }

body.menu-open { overflow: hidden; }

/* ============================================================
   25. NAV OVERLAY v2 — SPLIT LAYOUT + PREVIEW PANEL
   ============================================================ */

/* Clip reveals from top-left (hamburger side) */
.nav-overlay {
  clip-path: circle(0% at 40px 40px);
  overflow: hidden; /* prevent scroll during clip */
}
.nav-overlay.open {
  clip-path: circle(160% at 40px 40px);
  overflow-y: auto;
}

/* 2-column inner: links | preview */
.nav-overlay__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 100svh;
  padding: 0;
}

.nav-col {
  display: flex;
  flex-direction: column;
  padding: 100px 64px 56px;
}

/* Preview panel */
.nav-preview-panel {
  position: relative;
  overflow: hidden;
  background: var(--ph1);
}

.nav-preview-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.nav-preview-img.is-visible { opacity: 1; transform: scale(1); }

.nav-preview-label {
  position: absolute;
  bottom: 28px;
  left: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease) .1s, transform .3s var(--ease) .1s;
  pointer-events: none;
}
.nav-preview-label.is-visible { opacity: 1; transform: translateY(0); }

/* Close button */
.nav-close-btn {
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 5;
  background: none;
  border: none;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
}
.nav-close-btn:hover { opacity: 1; }
.nav-close-btn svg { pointer-events: none; flex-shrink: 0; }

/* Responsive */
@media (max-width: 960px) {
  .nav-overlay__inner { grid-template-columns: 1fr; }
  .nav-preview-panel  { display: none; }
  .nav-col            { padding: 88px 40px 48px; }
}
@media (max-width: 768px) {
  .header-bar  { padding: 0 20px; height: 56px; }
  .site-header.is-scrolled .header-bar { height: 48px; }
  .header-col--right { gap: 0; }
}
@media (max-width: 480px) {
  .nav-col { padding: 80px 24px 40px; }
  .nav-primary a { font-size: clamp(28px, 9vw, 48px); }
}

/* ============================================================
   26. TEMPLATE-HOME.PHP — section-specific styles
   ============================================================ */

/* ---- Hero v2 ---- */

.hero--home {
  min-height: 92vh;
  padding-bottom: 96px; /* room for bottom row */
}

.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--ph1);
}

/* Top row: EST / logo mark / CITY */
.hero__top-row {
  position: absolute;
  top: max(calc(var(--bar-h, 0px) + 80px), 104px);
  left: 0;
  right: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero__meta-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

.hero__mark-lg {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.8);
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}

/* H1 with outlined second line */
.hero-title--home {
  font-size: clamp(58px, 12vw, 188px);
}

.hero-title--home .line--solid  { display: block; color: #fff; }

.hero-title--home .line--outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.85);
}

/* Bottom row: scroll / season */
.hero__bottom-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 48px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .5;  transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

.hero__season-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* ---- Marquee divider ---- */

.marquee-strip--divider {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.marquee-strip--divider .marquee {
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -.01em;
  animation-duration: 45s;
  gap: 0;
}

.marquee-strip--divider .marquee__item {
  padding: 0 40px;
}

/* ---- New Arrivals ---- */

.arrivals-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* 6-product grid: 3-col × 2-row (existing .products-grid CSS covers layout) */

/* ---- Lookbook v2 ---- */

.lookbook-v2 {
  background: #0c0c0d;
  overflow: hidden;
}

.lookbook-v2__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
  padding: 80px 48px 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.lookbook-v2__heading-col .section-eyebrow { color: rgba(255,255,255,.35); }

.lookbook-v2__title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
  color: #e9e6df;
  margin: 12px 0 0;
}

.lookbook-v2__copy-col {
  max-width: 320px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.lookbook-v2__copy {
  font-size: 14px;
  color: rgba(233,230,223,.5);
  line-height: 1.7;
}

.lookbook-v2__copy-col .btn-line {
  color: rgba(233,230,223,.65);
}

.lookbook-v2__copy-col .btn-line::after {
  background: rgba(233,230,223,.65);
}

.lookbook-v2__copy-col .btn-line:hover { color: #e9e6df; }
.lookbook-v2__copy-col .btn-line:hover::after { background: #e9e6df; }

.lookbook-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.lookbook-v2__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1b;
}

.lookbook-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.lookbook-v2__img:hover img { transform: scale(1.04); }

/* ---- Collections split ---- */

.collections-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2.1;
  background: var(--ph1);
  text-decoration: none;
}

.collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.collection-card:hover .collection-card__img { transform: scale(1.04); }

.collection-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.7) 0%,
    rgba(0,0,0,.15) 50%,
    transparent 100%
  );
}

.collection-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.collection-card__name {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: #fff;
}

.collection-card__cta {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .25s;
  white-space: nowrap;
  padding-bottom: 4px;
}

.collection-card:hover .collection-card__cta { color: #fff; }

/* ---- Brand statement ---- */

.brand-statement {
  text-align: center;
  padding: 96px 48px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-statement__mark {
  display: block;
  width: 44px;
  height: 44px;
  background: var(--fg);
  opacity: .45;
  margin: 0 auto 32px;
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.brand-statement__quote {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 68px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--fg);
  max-width: 960px;
  margin: 0 auto 24px;
}

.brand-statement__byline {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---- Instagram grid — logo mark hover ---- */

.ig-header {
  text-align: center;
  padding: 48px 32px 28px;
}

.ig-follow-link {
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.ig-follow-link:hover { opacity: .7; }

.ig-logo-mark {
  display: block;
  width: 28px;
  height: 28px;
  background: #fff;
  -webkit-mask-image: url('../images/logo.svg');
  mask-image: url('../images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.ig-item--placeholder .ig-ph {
  width: 100%;
  height: 100%;
  background: var(--ph2);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .lookbook-v2__head {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 40px 48px;
  }
  .lookbook-v2__copy-col { max-width: 560px; }
}

@media (max-width: 768px) {
  .hero--home { min-height: 88vh; }
  .hero__top-row { padding: 0 24px; }
  .hero__mark-lg { width: 52px; height: 52px; }
  .hero__bottom-row { padding: 0 24px 24px; }
  .hero__scroll-line { height: 32px; }

  .lookbook-v2__head { padding: 56px 24px 40px; }
  .lookbook-v2__grid { grid-template-columns: 1fr; gap: 2px; }
  .lookbook-v2__img { aspect-ratio: 4/3; }

  .collections-split { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 4/3; }

  .brand-statement { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero__top-row { top: max(calc(var(--bar-h, 0px) + 64px), 88px); }
  .lookbook-v2__head { padding: 48px 20px 32px; }
  .collection-card__label { padding: 20px 20px; }
  .brand-statement { padding: 56px 20px; }
  .ig-header { padding: 36px 20px 20px; }
}

/* ============================================================
   27. PRODUCT CARD — .card-media + PLP layout
   ============================================================ */

/* .card-media aliases .card__images so both markup versions work */
.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ph1);
  flex-shrink: 0;
}

/* Scale both image containers on hover */
.card:hover .card-media img  { transform: scale(1.03); }

/* Invisible cover link fills the image zone (z-index 1, below overlays) */
.card-media__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

/* Card tag + SKU sit above the cover link */
.card-media .card-tag,
.card-media .card-sku { z-index: 3; }

/* Quick add sits above everything */
.card-media .quick-add { z-index: 4; }

/* Quick add — out-of-stock variant */
.quick-add--unavail {
  cursor: default;
  background: var(--ph2);
  color: var(--phtx);
  pointer-events: none;
  font-size: 10px;
}

/* ---- Card meta typography spec ---- */
.card-meta__name a {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.card-meta__name a:hover { color: var(--accent); }

.card-meta__cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

.card-meta__price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--fg);
}

/* ---- PLP layout ---- */

.plp-grid {
  padding: 0;
}

/* WooCommerce outputs pagination as .woocommerce-pagination */
.woocommerce-pagination,
.plp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 56px 48px;
  flex-wrap: wrap;
}

.woocommerce-pagination ul,
.plp-pagination { list-style: none; }

.woocommerce-pagination .page-numbers,
.plp-pagination .page-numbers,
.plp-pagination a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--dim);
  text-decoration: none;
  transition: background .2s var(--ease), color .2s, border-color .2s;
}

.woocommerce-pagination .page-numbers:hover,
.plp-pagination a:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.woocommerce-pagination .page-numbers.current,
.plp-pagination .current {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.woocommerce-pagination .page-numbers.dots,
.plp-pagination .dots {
  border-color: transparent;
  pointer-events: none;
}

/* Empty state */
.plp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  text-align: center;
  gap: 24px;
}

.plp-empty__msg {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (max-width: 768px) {
  .woocommerce-pagination,
  .plp-pagination { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .woocommerce-pagination,
  .plp-pagination { padding: 32px 16px; gap: 3px; }
}

/* ============================================================
   28. PDP — single-product.php additions
   ============================================================ */

/* Breadcrumb row above the wrap */
.pdp-breadcrumb-row {
  padding: calc(var(--bar-h, 0px) + 80px) 48px 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow row: category label + badge */
.pdp-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pdp-cat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
}

.pdp-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--accent);
  color: var(--accent-fg);
  line-height: 1;
}

.pdp-badge--sale { background: #b3121b; color: #f3ece9; }

/* Badge overlay on main image */
.pdp-main-img { position: relative; }

.pdp-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--accent);
  color: var(--accent-fg);
  pointer-events: none;
}

/* Thumbnails: adaptive grid, scrollable when many */
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 6px;
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
}

.pdp-thumbs::-webkit-scrollbar { display: none; }

/* Image counter */
.pdp-image-count {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--dim);
  text-align: center;
  margin-top: 10px;
  user-select: none;
}

/* Keyboard focus on thumbs */
.pdp-thumb:focus-visible {
  outline: 1px solid var(--fg);
  outline-offset: 2px;
}

/* Related section eyebrow */
.related-section .section-eyebrow {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .pdp-breadcrumb-row { padding: calc(var(--bar-h, 0px) + 72px) 24px 0; }
  .pdp-thumbs { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
}

@media (max-width: 768px) {
  .pdp-breadcrumb-row { padding-top: calc(var(--bar-h, 0px) + 64px); }
  .pdp-image-count { display: none; }
}
