/* ===================================================================
   EQUALLYOKED APPAREL — Design system
   Dark canvas. Product photography is the only light in the room.
   Mobile-first: base rules target phone widths, larger screens scale up.
   =================================================================== */

:root {
  /* garment palette */
  --ink: #14120F;
  --earth: #6B5946;
  --clay: #A8937A;
  --bone: #E0D6C4;
  --chalk: #F2EFE8;
  --signal: #F5C400;

  /* site surface */
  --bg: #080808;
  --surface: #0C0C0C;
  --surface-raised: #121212;
  --hairline: #1E1E1E;
  --text: #F5F5F0;
  --muted: #7A7A76;
  --dim: #4A4A48;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  --radius-ui: 14px;
  --radius-sm: 8px;

  --side-pad: 20px;
  --section-pad: 64px;
  --container: 1280px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 700px) {
  :root { --side-pad: 32px; --section-pad: 88px; }
}
@media (min-width: 1200px) {
  :root { --side-pad: 48px; --section-pad: 120px; }
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--side-pad); }
.wrap { padding-left: var(--side-pad); padding-right: var(--side-pad); }

section { padding: var(--section-pad) 0; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--signal);
  flex-shrink: 0;
}
.eyebrow.yellow { color: var(--signal); }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-weight: 400;
}
em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- yoke curve divider ---------- */
.yoke-divider {
  width: 100%;
  height: 40px;
  display: block;
}
.yoke-divider path { stroke: var(--hairline); stroke-width: 1; fill: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: var(--radius-ui);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--signal); color: var(--ink); }
.btn-primary:hover { background: #ffd633; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(245,245,240,0.25); }
.btn-outline:hover { border-color: var(--signal); color: var(--signal); }
.btn-ghost { color: var(--muted); padding: 8px 0; font-size: 12px; }
.btn-ghost:hover { color: var(--text); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ===================================================================
   NAV
   =================================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--side-pad);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding: 12px var(--side-pad);
}
.brand-mark { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none; line-height: 1; }
.brand-mark-line1 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-dash { display: inline-block; width: 10px; height: 3px; border-radius: 1px; background: var(--signal); }
.brand-mark-line2 {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(245,245,240,0.6);
  padding-left: 16px;
}
.nav-logo .brand-mark-line1 { font-size: 14px; }
.nav-logo .brand-mark-line2 { font-size: 11px; }
.footer-brand-mark .brand-mark-line1 { font-size: 19px; }
.footer-brand-mark .brand-mark-line2 { font-size: 15px; }
@media (min-width: 900px) {
  .nav-logo .brand-mark-line1 { font-size: 16px; }
  .nav-logo .brand-mark-line2 { font-size: 12px; }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(245,245,240,0.65);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-icon-btn {
  position: relative;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.nav-icon-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--signal);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.cart-count[hidden] { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-logo { height: 34px; }
}

/* mobile full-screen menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(14px);
  z-index: 490;
  display: flex; flex-direction: column;
  padding: 96px var(--side-pad) 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(30px, 9vw, 42px);
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.mobile-menu-foot a { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border: none; padding: 0; }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--side-pad) 56px;
  overflow: hidden;
  background: #000 center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.35) 35%, rgba(8,8,8,0.75) 75%, rgba(8,8,8,0.96) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s var(--ease) .15s forwards;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--signal); }
.hero-headline {
  font-size: clamp(42px, 12vw, 96px);
  line-height: 0.92;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s var(--ease) .3s forwards;
}
.hero-brandline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 5.5vw, 34px);
  color: var(--text);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s var(--ease) .45s forwards;
}
.hero-cta {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .9s var(--ease) .6s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 22px; right: var(--side-pad);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.5);
  display: none;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(245,245,240,0.35); }
@media (min-width: 700px) {
  .hero { padding-bottom: 80px; background-position: center 25%; }
  .hero-scroll { display: flex; }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===================================================================
   COLLECTION STRIP (category tiles)
   =================================================================== */
.strip-head { padding: 0 var(--side-pad); max-width: var(--container); margin: 0 auto 32px; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--hairline);
}
@media (min-width: 700px) { .strip-grid { grid-template-columns: repeat(3, 1fr); } }

.strip-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #000;
}
.strip-tile-img {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  transition: transform .6s var(--ease);
}
.strip-tile:hover .strip-tile-img { transform: scale(1.04); }
.strip-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.05) 0%, rgba(8,8,8,0.65) 100%);
  z-index: 1;
}
.strip-tile-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px;
}
.strip-tile-range {
  font-size: 10px; letter-spacing: 0.18em; color: var(--signal); margin-bottom: 6px; display: block;
}
.strip-tile-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 26px);
  text-transform: uppercase;
  color: var(--text);
}

/* six category tiles, each panning to a different figure in the group
   portrait — cover (never stretch), just a shifted focal point */
.strip-tile-img {
  background-image: url('../images/IMG_4577.jpeg');
  background-size: cover;
}
.tile-foundation .strip-tile-img { background-position: 2% 25%; }
.tile-trousers   .strip-tile-img { background-position: 22% 25%; }
.tile-shirting   .strip-tile-img { background-position: 42% 25%; }
.tile-knitwear   .strip-tile-img { background-position: 62% 25%; }
.tile-outerwear  .strip-tile-img { background-position: 82% 25%; }
.tile-rest       .strip-tile-img { background-position: 100% 25%; }

/* ===================================================================
   SIGNATURE MOMENT
   =================================================================== */
.signature { background: var(--surface); position: relative; }
.signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .signature-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.signature-media {
  aspect-ratio: 4/5;
  background-repeat: no-repeat;
  border-radius: 0;
  position: relative;
  background-image: url('../images/heavy-coat.jpg');
  background-size: 480%;
  background-position: 33% 41%;
}
.signature-media::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(245,245,240,0.08);
}
.signature-text h2 {
  font-size: clamp(30px, 6vw, 52px);
  margin-bottom: 20px;
}
.signature-text p {
  font-size: 15px;
  color: rgba(245,245,240,0.7);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 14px;
}
.signature-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.signature-bar span.chip { width: 18px; height: 6px; background: var(--signal); border-radius: 2px; display: inline-block; }

/* ===================================================================
   PRODUCT CARDS / GRIDS
   =================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .product-grid { gap: 20px; } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.product-card { display: block; text-decoration: none; color: var(--text); }
.product-media {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--ink);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-media .pm-img,
.product-media .pm-img-hover {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  transition: opacity .5s ease;
}
.product-media .pm-img-hover { opacity: 0; }
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .pm-img-hover { opacity: 1; }
}
.product-media.swatch { display: flex; align-items: flex-end; padding: 16px; }
.product-media.swatch .swatch-number {
  font-family: var(--font-display);
  font-size: clamp(38px, 9vw, 56px);
  line-height: 0.85;
  opacity: 0.9;
  mix-blend-mode: overlay;
}
.product-media.swatch.on-light .swatch-number { color: #000; mix-blend-mode: multiply; opacity: .55; }
.product-media.swatch.on-dark .swatch-number { color: #fff; mix-blend-mode: overlay; opacity: .8; }

.quick-add {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(8,8,8,0.55);
  border: 1px solid rgba(245,245,240,0.25);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.quick-add:hover { background: var(--signal); color: var(--ink); border-color: var(--signal); }

.product-info-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.product-num { font-size: 11px; color: var(--muted); letter-spacing: .06em; }
.product-name { font-size: 13px; font-weight: 500; margin-top: 2px; }
.product-colour { font-size: 11px; color: var(--muted); margin-top: 2px; }
.product-price { font-size: 13px; font-weight: 500; white-space: nowrap; }

/* ===================================================================
   FEATURED SECTION HEADER (shared pattern)
   =================================================================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.section-head h2 { font-size: clamp(30px, 6vw, 52px); }
@media (min-width: 700px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* ===================================================================
   FOLD TEASER
   =================================================================== */
.fold-teaser {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fold-teaser::before {
  content: 'THE FOLD';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 24vw, 260px);
  color: rgba(245,245,240,0.025);
  white-space: nowrap;
  pointer-events: none;
}
.fold-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.fold-inner .eyebrow { justify-content: center; }
.fold-inner .eyebrow::before { display: none; }
.fold-inner h2 { font-size: clamp(28px, 6vw, 44px); margin-bottom: 16px; }
.fold-inner p { color: rgba(245,245,240,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.fold-form { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto; }
@media (min-width: 560px) { .fold-form { flex-direction: row; } }
.fold-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 15px 18px;
  border-radius: var(--radius-ui);
  font-size: 14px;
  outline: none;
}
.fold-form input::placeholder { color: rgba(245,245,240,0.35); }
.fold-form input:focus { border-color: var(--signal); }
.fold-note { font-size: 11px; color: var(--dim); margin-top: 14px; }
.fold-success { display: none; font-size: 13px; color: var(--signal); margin-top: 14px; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer { background: var(--bg); border-top: 1px solid var(--hairline); padding: 56px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media (min-width: 700px) { .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); } }
.footer-brand-mark { margin-bottom: 14px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: rgba(245,245,240,0.55); max-width: 260px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col a, .footer-col button {
  display: block; font-size: 14px; color: rgba(245,245,240,0.6); text-decoration: none;
  margin-bottom: 12px; text-align: left; transition: color .2s ease;
}
.footer-col a:hover, .footer-col button:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copy { font-size: 11px; color: var(--dim); letter-spacing: .03em; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.footer-socials a:hover { color: var(--signal); }

/* ===================================================================
   REVEAL ON SCROLL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================================
   SHOP / COLLECTION PAGE
   =================================================================== */
.shop-header { padding-top: 120px; padding-bottom: 24px; }
.shop-header h1 { font-size: clamp(34px, 8vw, 64px); }
.shop-header p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 480px; }

.filter-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  margin-bottom: 32px;
}
.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px var(--side-pad);
  margin: 0 calc(var(--side-pad) * -1);
}
.filter-scroll::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  border: 1px solid rgba(245,245,240,0.15);
  color: rgba(245,245,240,0.6);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s ease;
}
.chip.active { background: var(--signal); border-color: var(--signal); color: var(--ink); font-weight: 500; }
.chip:not(.active):hover { border-color: rgba(245,245,240,0.4); color: var(--text); }
.filter-row2 { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding: 0 var(--side-pad); }
.result-count { font-size: 12px; color: var(--dim); }
.sort-select {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.load-more-wrap { display: flex; justify-content: center; margin-top: 48px; }

/* ===================================================================
   PRODUCT PAGE
   =================================================================== */
.pdp { padding-top: 96px; }
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .pdp-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: flex-start; } }

.pdp-gallery { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: 0; }
@media (min-width: 900px) { .pdp-gallery { flex-direction: column; overflow: visible; } }
.pdp-gallery .pg-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  background-repeat: no-repeat;
  position: relative;
}
.pdp-gallery .pg-slide.swatch { display: flex; align-items: flex-end; padding: 28px; }
.pdp-gallery .pg-slide.swatch .swatch-number { font-family: var(--font-display); font-size: clamp(60px, 14vw, 110px); }

.pdp-info { position: static; }
@media (min-width: 900px) { .pdp-info { position: sticky; top: 100px; } }
.pdp-eyebrow { font-size: 11px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.pdp-name { font-size: clamp(28px, 6vw, 42px); margin-bottom: 8px; }
.pdp-colour { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pdp-colour .dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(245,245,240,0.2); display: inline-block; }
.pdp-price { font-size: 22px; font-weight: 500; margin-bottom: 22px; }
.pdp-desc { font-size: 14px; color: rgba(245,245,240,0.65); line-height: 1.7; margin-bottom: 26px; max-width: 440px; }

.size-row { margin-bottom: 22px; }
.size-row-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.size-row-head span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.size-row-head button { font-size: 11px; letter-spacing: .05em; text-decoration: underline; color: var(--muted); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-opt {
  width: 46px; height: 46px;
  border: 1px solid rgba(245,245,240,0.18);
  border-radius: var(--radius-ui);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all .2s ease;
}
.size-opt.active { background: var(--text); color: var(--ink); border-color: var(--text); }
.size-opt:not(.active):hover { border-color: var(--text); }

.qty-add-row { display: flex; gap: 12px; margin-bottom: 16px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid rgba(245,245,240,0.18); border-radius: var(--radius-ui); }
.qty-stepper button { width: 44px; height: 54px; font-size: 16px; }
.qty-stepper span { width: 32px; text-align: center; font-size: 14px; }
.pdp-add { flex: 1; }
.pdp-added-note { font-size: 12px; color: var(--signal); margin-top: -4px; margin-bottom: 16px; display: none; }

.pdp-yoke-block {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(245,196,0,0.05);
  border: 1px solid rgba(245,196,0,0.18);
  border-radius: var(--radius-ui);
  margin-bottom: 28px;
}
.pdp-yoke-block .chip-bar { width: 14px; height: 34px; background: var(--signal); border-radius: 3px; flex-shrink: 0; }
.pdp-yoke-block p { font-size: 13px; color: rgba(245,245,240,0.7); line-height: 1.6; }

.accordion { border-top: 1px solid var(--hairline); }
.accordion-item { border-bottom: 1px solid var(--hairline); }
.accordion-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}
.accordion-trigger .plus { font-size: 18px; transition: transform .25s ease; color: var(--muted); }
.accordion-item.open .accordion-trigger .plus { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel-inner { padding-bottom: 18px; font-size: 13px; color: rgba(245,245,240,0.6); line-height: 1.7; }

.pairs-with { margin-top: 24px; }
.pairs-with h3 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-family: var(--font-body); font-weight: 500; }

/* ===================================================================
   CART DRAWER
   =================================================================== */
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 800; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: var(--surface);
  border-left: 1px solid var(--hairline);
  z-index: 801;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px var(--side-pad); border-bottom: 1px solid var(--hairline); }
.cart-head h3 { font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.cart-close { font-size: 22px; line-height: 1; width: 30px; height: 30px; }
.cart-progress-wrap { padding: 16px var(--side-pad); border-bottom: 1px solid var(--hairline); }
.cart-progress-label { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.cart-progress-label strong { color: var(--text); }
.cart-progress-track { height: 3px; background: var(--hairline); border-radius: 2px; overflow: hidden; }
.cart-progress-bar { height: 100%; background: var(--signal); width: 0%; transition: width .4s ease; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px var(--side-pad); }
.cart-empty { padding: 60px 0; text-align: center; color: var(--muted); font-size: 14px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.cart-item-img { width: 72px; height: 92px; flex-shrink: 0; background-repeat: no-repeat; position: relative; }
.cart-item-img .swatch-number { position: absolute; bottom: 4px; left: 6px; font-family: var(--font-display); font-size: 18px; }
.cart-item-body { flex: 1; display: flex; flex-direction: column; }
.cart-item-name { font-size: 13px; font-weight: 500; }
.cart-item-meta { font-size: 11px; color: var(--muted); margin-top: 3px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.cart-item-qty button { font-size: 14px; color: var(--muted); }
.cart-item-price { font-size: 13px; font-weight: 500; }
.cart-item-remove { font-size: 11px; color: var(--dim); text-decoration: underline; margin-top: 6px; align-self: flex-start; }
.cart-foot { padding: 18px var(--side-pad) 24px; border-top: 1px solid var(--hairline); }
.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 16px; }
.cart-subtotal-row strong { font-weight: 500; }
.cart-note { font-size: 11px; color: var(--dim); text-align: center; margin-top: 12px; }

/* ===================================================================
   MODALS (size guide / delivery / search / contact)
   =================================================================== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 900; opacity: 0; pointer-events: none; transition: opacity .3s ease;
  display: flex; align-items: flex-end; justify-content: center;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
@media (min-width: 700px) { .modal-backdrop { align-items: center; } }
.modal-box {
  background: var(--surface-raised);
  border: 1px solid var(--hairline);
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  padding: 28px var(--side-pad) 36px;
  transform: translateY(24px);
  transition: transform .35s var(--ease);
}
.modal-backdrop.open .modal-box { transform: translateY(0); }
@media (min-width: 700px) { .modal-box { border-radius: 20px; padding: 32px; } }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-head h3 { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; }
.modal-close { font-size: 22px; width: 30px; height: 30px; color: var(--muted); }
.modal-body { font-size: 14px; color: rgba(245,245,240,0.7); line-height: 1.7; }
.modal-body p { margin-bottom: 14px; }
.modal-body h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin: 18px 0 8px; }
.size-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12px; }
.size-table th, .size-table td { border: 1px solid var(--hairline); padding: 9px 8px; text-align: center; }
.size-table th { color: var(--muted); font-weight: 500; text-transform: uppercase; font-size: 10px; letter-spacing: .05em; }
.search-input-wrap { position: relative; margin-bottom: 16px; }
.search-input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius-ui);
  font-size: 14px;
  outline: none;
}
.search-input-wrap input:focus { border-color: var(--signal); }
.search-results { display: flex; flex-direction: column; }
.search-result { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--hairline); text-decoration: none; color: var(--text); font-size: 13px; }
.search-result span.sr-num { color: var(--muted); margin-right: 8px; }
.search-empty { font-size: 13px; color: var(--dim); padding: 20px 0; text-align: center; }
.contact-line { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.contact-line span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); }
.contact-line a { font-size: 15px; color: var(--text); text-decoration: none; }
.contact-line a:hover { color: var(--signal); }

/* body lock when overlay open */
body.no-scroll { overflow: hidden; }

/* misc small screens polish */
@media (max-width: 420px) {
  .hero-headline { font-size: clamp(38px, 13vw, 60px); }
}
