/* ============================================================
   ALIGN Running — Satisfy clone
   Font: Space Mono (≈ ABC Simon Mono)
   Background: #fff  |  Text: #000  |  Nav: transparent/white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  --bg:   #ffffff;
  --ink:  #000000;
  --mut:  #767676;
  --line: rgba(0,0,0,.1);
  --card: #f5f4f1;
  --r:    0px;          /* Satisfy: square corners everywhere */
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;   /* stop iOS/Android auto-inflating text in landscape */
  text-size-adjust: 100%;
}

body {
  font-family: 'Space Mono', 'Courier New', monospace;
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;  /* remove grey tap flash → app-like */
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 120;
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: #000;
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
/* Left: hamburger + logo */
.nav-l { display: flex; align-items: center; gap: 16px; }
.brand { display: flex; align-items: center; }
.nav-icon { height: 30px; width: auto; filter: invert(1) brightness(0); }

/* Centre: desktop links */
.nav-links {
  display: flex; align-items: center; gap: 24px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #000; transition: opacity .15s;
}
.nav-links a:hover { opacity: .5; }

/* Right: icons */
.nav-r { display: flex; align-items: center; gap: 16px; }
.nav-r a, .nav-r select { color: #000; opacity: .8; transition: opacity .15s; }
.nav-r a:hover, .nav-r select:hover { opacity: 1; }
.nav-r select {
  background: transparent; border: none;
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; outline: none;
}
.nav-r i { font-size: 17px; }
.nav-r svg { display: block; }
#cartc {
  font-size: 11px; font-weight: 700; color: #000;
  background: transparent !important; position: static !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
}
#bag { display: flex; align-items: center; gap: 3px; }

/* Hamburger — black lines */
.nav-ham {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; flex-shrink: 0;
}
.nav-ham span {
  display: block; width: 20px; height: 1.5px;
  background: #000;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile: show hamburger, hide desktop links */
#mobile { display: none; background: #fff; border-top: 1px solid var(--line); }
#mobile a {
  display: block; padding: 14px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #000;
  border-bottom: 1px solid var(--line);
}
#mobile a:hover { background: #f5f4f1; }

@media(min-width: 821px) {
  .nav-ham { display: none; }
  .nav-links { display: flex; }
  #mobile { display: none !important; }
}
@media(max-width: 820px) {
  .nav-links { display: none !important; }
  .nav-ham { display: flex; }
}

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 350; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }

.sidebar {
  position: fixed; top: 0; left: 0;
  width: 280px; height: 100vh;
  background: #000; z-index: 400;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sidebar.open { transform: translateX(0); }
.sidebar-nav { padding-top: 72px; }
.sidebar-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: opacity .15s;
}
.sidebar-nav a:hover { opacity: .6; }
.sb-arrow { font-size: 14px; font-weight: 400; opacity: .5; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block; background: #000; color: #fff;
  font-family: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  transition: opacity .15s;
}
.btn:hover { opacity: .75; }
.btn-outline {
  display: inline-block; background: transparent; color: #000;
  font-family: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 13px 27px; border: 1px solid #000; cursor: pointer;
  transition: all .15s;
}
.btn-outline:hover { background: #000; color: #fff; }

/* ── Over label ──────────────────────────────────────────── */
.over {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--mut); margin-bottom: 14px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 100px 0 90px; border-bottom: 1px solid var(--line); }
.hero h1 {
  font-size: clamp(56px, 10vw, 128px);
  line-height: .9; letter-spacing: -.03em;
  font-weight: 700; color: #000;
}
.hero .sub {
  font-size: 13px; line-height: 1.8; color: var(--mut);
  max-width: 36ch; margin: 20px 0 36px;
}
.hero .btn { margin-top: 8px; }

/* ── Manifesto ───────────────────────────────────────────── */
.manifesto { padding: 80px 0; border-bottom: 1px solid var(--line); }
.manifesto p {
  font-size: clamp(22px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.015em; font-weight: 700;
}

/* ── Featured drop ───────────────────────────────────────── */
.drop { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.drop .dimg {
  min-height: 520px; background: var(--card);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.15); font-size: 80px; position: relative;
}
.drop .dimg .badge {
  position: absolute; top: 20px; left: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mut);
}
.drop .dtxt {
  padding: 72px 52px; display: flex; flex-direction: column;
  justify-content: center; border-left: 1px solid var(--line);
}
.drop .dtxt h2 {
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: .95; letter-spacing: -.02em; font-weight: 700;
}
.drop .dtxt .btn { margin-top: 32px; align-self: flex-start; }

/* ── Product grid ────────────────────────────────────────── */
section.feat { padding: 60px 0 40px; }
.shop-section { padding: 60px 0 40px; }
.feat-head {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.feat-head h2 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--mut);
}
.filters { display: flex; gap: 0; flex-wrap: wrap; }
.filters button {
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mut); background: none; border: none;
  padding: 8px 14px; cursor: pointer; transition: color .12s;
}
.filters button:hover { color: #000; }
.filters button.on { color: #000; text-decoration: underline; text-underline-offset: 3px; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.card { cursor: pointer; }
.thumb {
  aspect-ratio: 3/4; background: var(--card);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.12); font-size: 48px;
  position: relative; overflow: hidden;
}
.thumb-ph { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 12px; pointer-events: none; }
.thumb-ph-label { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,0,0,.2); }
.card:hover .thumb { background: #eceae4; }
.thumb i { transition: transform .5s; }
.card:hover .thumb i { transform: scale(1.04); }
.new {
  position: absolute; top: 10px; left: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: #000;
  padding: 3px 8px;
}
.add {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: #000; border: none;
  padding: 12px; cursor: pointer;
  opacity: 0; transform: translateY(4px); transition: .2s;
}
.card:hover .add { opacity: 1; transform: translateY(0); }
.add:hover { opacity: .8; }
.meta { display: flex; justify-content: space-between; align-items: baseline; margin: 10px 0 0; gap: 8px; }
.pname { font-size: 12px; font-weight: 400; color: #000; }
.price { font-size: 12px; color: var(--mut); white-space: nowrap; }
.pdesc { display: none; }

/* ── Newsletter ──────────────────────────────────────────── */
.news { padding: 80px 0; border-top: 1px solid var(--line); }
.news h2 { font-size: clamp(20px, 3.5vw, 40px); letter-spacing: -.01em; font-weight: 700; line-height: 1.1; }
.news p { margin: 12px auto 28px; font-size: 12px; color: var(--mut); max-width: 44ch; }
.signup { display: flex; max-width: 400px; border-bottom: 1.5px solid #000; }
.signup input {
  flex: 1; background: none; border: none; color: #000;
  font-family: inherit; font-size: 13px; padding: 12px 4px; outline: none;
}
.signup input::placeholder { color: var(--mut); }
.signup button {
  background: none; border: none; color: #000;
  font-family: inherit; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer; padding: 0 8px;
}
.terms-note { font-size: 11px; color: var(--mut); margin-top: 10px; }
.terms-note a { text-decoration: underline; color: var(--mut); }
.terms-note a:hover { color: #000; }

/* ── Static pages ────────────────────────────────────────── */
.page { padding: 72px 0 100px; }
.page h1 { font-size: clamp(28px, 5vw, 60px); letter-spacing: -.025em; font-weight: 700; margin-bottom: 8px; }
.updated { color: var(--mut); font-size: 11px; letter-spacing: .06em; margin-bottom: 36px; text-transform: uppercase; }
.prose h2 { font-size: 15px; font-weight: 700; letter-spacing: .02em; margin: 32px 0 10px; }
.prose h3 { font-size: 13px; font-weight: 700; margin: 20px 0 6px; }
.prose p { margin-bottom: 14px; color: #333; font-size: 13px; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 14px 20px; }
.prose li { margin-bottom: 6px; font-size: 13px; color: #333; }
.prose a { text-decoration: underline; }
.tbl { width: 100%; border-collapse: collapse; margin: 12px 0 24px; font-size: 12px; }
.tbl th, .tbl td { border: 1px solid var(--line); padding: 9px 11px; text-align: left; }
.tbl th { background: var(--card); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 10px; }
.faq { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 700;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 16px; font-weight: 400; color: var(--mut); }
.faq[open] summary::after { content: '−'; }
.faq .a { padding: 0 0 16px; color: var(--mut); font-size: 13px; line-height: 1.7; max-width: 60ch; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  font-family: inherit; font-size: 13px; padding: 11px 13px;
  border: 1px solid var(--line); background: #fff; color: #000; outline: none;
}
.form input:focus, .form textarea:focus { border-color: #000; }
.form textarea { min-height: 120px; resize: vertical; }

/* ── Cart page ───────────────────────────────────────────── */
.cartpg { padding: 60px 0 100px; }
.cartpg h1 { font-size: clamp(24px, 4vw, 44px); letter-spacing: -.02em; margin-bottom: 28px; }
.cart-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
#cartItems .empty { color: var(--mut); padding: 40px 0; font-size: 13px; }
.crow {
  display: grid; grid-template-columns: 72px 1fr auto auto 28px;
  gap: 16px; align-items: center; padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cthumb {
  width: 72px; height: 88px; background: var(--card);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.15); font-size: 22px;
}
.cname { font-weight: 700; font-size: 12px; letter-spacing: .02em; }
.ccat { font-size: 10px; color: var(--mut); letter-spacing: .08em; text-transform: uppercase; margin: 3px 0 8px; }
.csize { font-family: inherit; font-size: 11px; padding: 5px 8px; border: 1px solid var(--line); background: #fff; }
.cqty { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); padding: 5px 9px; }
.cqty button { background: none; border: none; font-size: 16px; cursor: pointer; color: #000; }
.cline { font-weight: 700; font-size: 13px; white-space: nowrap; min-width: 60px; text-align: right; }
.crm { background: none; border: none; color: var(--mut); cursor: pointer; font-size: 16px; }
.crm:hover { color: #000; }
.summary { border: 1px solid var(--line); padding: 24px; }
.summary h3 { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.sline { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 10px; color: #333; }
.stotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.summary .btn { width: 100%; text-align: center; margin-top: 18px; display: block; }
.summary .note { font-size: 10px; color: var(--mut); margin-top: 12px; line-height: 1.7; letter-spacing: .02em; }

/* ── Category hero ───────────────────────────────────────── */
.cat-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--line); position: relative; }
.cat-hero[style*="background-image"] { min-height: 420px; display: flex; align-items: flex-end; border-bottom: none; }
.cat-hero[style*="background-image"]::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 60%, transparent 100%); }
.cat-hero[style*="background-image"] .wrap { position: relative; z-index: 1; }
.cat-hero[style*="background-image"] .cat-label { color: rgba(255,255,255,.75); }
.cat-hero[style*="background-image"] h1 { color: #fff; }
.cat-hero .cat-label { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mut); margin-bottom: 14px; }
.cat-hero h1 { font-size: clamp(40px, 9vw, 100px); line-height: .9; letter-spacing: -.03em; font-weight: 700; }

/* ── Company / brand pages ───────────────────────────────── */
.comp-hero { padding: 80px 0 72px; border-bottom: 1px solid var(--line); }
.comp-hero h1 { font-size: clamp(36px, 7vw, 88px); line-height: .92; letter-spacing: -.03em; font-weight: 700; }
.comp-hero .lead { font-size: 13px; line-height: 1.8; color: var(--mut); max-width: 50ch; margin-top: 20px; }
.comp-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.comp-section:last-child { border-bottom: none; }
.comp-section h2 { font-size: clamp(22px, 3.5vw, 40px); letter-spacing: -.02em; font-weight: 700; margin-bottom: 6px; }
.comp-section .section-lead { font-size: 13px; color: var(--mut); margin-bottom: 36px; max-width: 56ch; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-txt p { font-size: 13px; line-height: 1.8; color: var(--mut); margin-bottom: 14px; }
.split-img { aspect-ratio: 4/3; background: var(--card); display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,.12); font-size: 52px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin-top: 40px; }
.value-cell { background: #fff; padding: 36px 28px; }
.value-cell i { font-size: 22px; margin-bottom: 16px; display: block; }
.value-cell h3 { font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.value-cell p { font-size: 12px; color: var(--mut); line-height: 1.7; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 52px 0; }
.stat-cell { padding: 36px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 6px; }
.stat-label { font-size: 10px; color: var(--mut); letter-spacing: .1em; text-transform: uppercase; }
.timeline { margin-top: 36px; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 24px 0; border-top: 1px solid var(--line); }
.tl-year { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.tl-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.tl-body p { font-size: 12px; color: var(--mut); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 36px; }
.team-card .avatar { aspect-ratio: 1; background: var(--card); display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,.12); font-size: 32px; margin-bottom: 12px; }
.team-card .tc-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.team-card .tc-role { font-size: 11px; color: var(--mut); letter-spacing: .04em; }
.tech-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin-top: 36px; }
.tech-card { background: #fff; padding: 28px; }
.tech-card .tc-icon { font-size: 22px; margin-bottom: 14px; display: block; }
.tech-card h3 { font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 8px; }
.tech-card p { font-size: 12px; color: var(--mut); line-height: 1.65; }
.tc-props { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.tc-prop { display: flex; justify-content: space-between; font-size: 11px; }
.tc-prop span:first-child { color: var(--mut); }
.tc-prop span:last-child { font-weight: 700; }
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cert { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: 6px 12px; color: var(--mut); }
.commit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 36px; }
.commit-cell { background: #fff; padding: 36px 28px; }
.commit-cell .c-year { font-size: clamp(22px, 3vw, 36px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.commit-cell .c-tag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); margin-bottom: 12px; display: block; }
.commit-cell h3 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.commit-cell p { font-size: 12px; color: var(--mut); line-height: 1.7; }
.store-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); margin-top: 36px; }
.store-card { background: #fff; padding: 24px; position: relative; }
.store-card .sc-type { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); margin-bottom: 10px; }
.store-card .sc-city { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 3px; }
.store-card .sc-country { font-size: 11px; color: var(--mut); margin-bottom: 16px; letter-spacing: .04em; }
.store-card address { font-style: normal; font-size: 12px; color: var(--mut); line-height: 1.7; }
.store-card .sc-hours { font-size: 11px; color: var(--mut); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.store-card .sc-badge { position: absolute; top: 18px; right: 18px; font-size: 9px; font-weight: 700; letter-spacing: .1em; background: #000; color: #fff; padding: 3px 8px; text-transform: uppercase; }
.job-list { border-top: 1px solid var(--line); margin-top: 36px; }
.job-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); gap: 20px; }
.job-info .job-title { font-size: 14px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 3px; }
.job-info .job-dept { font-size: 10px; color: var(--mut); letter-spacing: .08em; text-transform: uppercase; }
.job-meta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.job-tag { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--card); padding: 4px 9px; color: var(--mut); }
.job-apply { font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.job-apply:hover { text-decoration: underline; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 36px; }
.benefit-cell { background: #fff; padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start; }
.benefit-cell i { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.benefit-cell h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.benefit-cell p { font-size: 12px; color: var(--mut); line-height: 1.6; }
.manifesto-pull { padding: 80px 0; text-align: center; border-bottom: 1px solid var(--line); }
.manifesto-pull p { font-size: clamp(18px, 3vw, 40px); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; max-width: 24ch; margin: 0 auto; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: #000; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 12px 18px; z-index: 600;
  opacity: 0; transform: translateY(6px); transition: .2s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #1a6b38; }
.toast.error   { background: #b52b2b; }

/* ── Modals (checkout, profile) ──────────────────────────── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; padding: 36px; width: min(500px, 92vw);
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(8px); transition: transform .2s;
}
.overlay.open .modal { transform: translateY(0); }
.modal h2 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.modal .sub-title { font-size: 11px; color: var(--mut); letter-spacing: .04em; margin-bottom: 20px; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--mut);
}
.modal-close:hover { color: #000; }
.modal-row { display: flex; justify-content: space-between; font-size: 12px; color: #444; margin-bottom: 7px; }
.modal-divider { border: none; border-top: 1px solid var(--line); margin: 12px 0; }
.modal-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; margin-bottom: 20px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.co-section { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); margin: 22px 0 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.co-section:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.form-r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-r2 input, .form-r2 select { font-family: inherit; font-size: 13px; padding: 10px 12px; border: 1px solid var(--line); background: #fff; color: #000; }
.co-summary-item { display: flex; justify-content: space-between; font-size: 12px; color: #444; margin-bottom: 6px; }
.co-divider { border: none; border-top: 1px solid var(--line); margin: 10px 0; }
.co-total-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; color: #333; }
.co-grand { font-weight: 700; font-size: 14px; color: #000; margin-bottom: 0; }
.btn-atc { width: 100%; padding: 16px; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transition: opacity .15s; }
.confirm-wrap { text-align: center; padding: 12px 0; }
.confirm-wrap .check { font-size: 40px; margin-bottom: 14px; width: 60px; height: 60px; background: var(--card); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.confirm-wrap h2 { margin-bottom: 8px; }
.confirm-wrap p { color: var(--mut); font-size: 12px; margin-bottom: 4px; }
.order-id-pill { display: inline-block; font-size: 11px; background: var(--card); padding: 5px 12px; margin-top: 10px; letter-spacing: .06em; }
.confirm-actions { display: flex; justify-content: center; margin-top: 24px; }

/* ── Search overlay ──────────────────────────────────────── */
.search-ov { position: fixed; inset: 0; background: rgba(255,255,255,.97); z-index: 600; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .2s; }
.search-ov.open { opacity: 1; pointer-events: auto; }
.search-ov-close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 26px; cursor: pointer; color: #000; opacity: .5; transition: opacity .15s; }
.search-ov-close:hover { opacity: 1; }
.search-wrap { display: flex; align-items: center; gap: 12px; border-bottom: 1.5px solid #000; padding-bottom: 12px; width: min(560px, 85vw); }
.search-wrap input { flex: 1; background: none; border: none; color: #000; font-family: inherit; font-size: 24px; font-weight: 700; outline: none; }
.search-wrap input::placeholder { color: rgba(0,0,0,.2); }
.search-wrap button { background: none; border: none; font-size: 20px; cursor: pointer; color: #000; opacity: .6; }
.search-wrap button:hover { opacity: 1; }
.search-hint { font-size: 10px; color: var(--mut); margin-top: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* ── Product detail ──────────────────────────────────────── */
.pdp-page { padding: 36px 0 100px; }
.pdp-bc { display: flex; gap: 6px; align-items: center; font-size: 10px; color: var(--mut); margin-bottom: 32px; letter-spacing: .06em; flex-wrap: wrap; }
.pdp-bc a:hover { color: #000; }
.bc-sep { color: var(--line); }
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pdp-gallery { position: sticky; top: 92px; }
.pdp-img { aspect-ratio: 3/4; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 96px; color: rgba(0,0,0,.12); }
.pdp-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.pdp-thumb { width: 68px; height: 82px; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(0,0,0,.15); cursor: pointer; border: 1.5px solid transparent; transition: .12s; }
.pdp-thumb.on { border-color: #000; }
.pdp-thumb:hover { border-color: rgba(0,0,0,.3); }
.pdp-info { padding-top: 4px; }
.pdp-cat { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.product-badge-inline { font-size: 9px; font-weight: 700; letter-spacing: .08em; background: #000; color: #fff; padding: 2px 7px; text-transform: uppercase; }
.pdp-name { font-size: clamp(24px, 3.5vw, 38px); line-height: 1.0; letter-spacing: -.02em; font-weight: 700; margin-bottom: 12px; }
.pdp-price { font-size: 15px; font-weight: 400; color: var(--mut); margin-bottom: 18px; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--mut); margin-bottom: 18px; letter-spacing: .04em; }
.stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.stock-dot.out { background: #ef4444; }
.pdp-desc { font-size: 12px; line-height: 1.8; color: var(--mut); margin-bottom: 24px; }
.size-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.size-label-text { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.size-guide-link { font-size: 10px; color: var(--mut); text-decoration: underline; letter-spacing: .06em; }
.size-guide-link:hover { color: #000; }
.size-options { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pdp-sz { font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 10px 14px; border: 1px solid var(--line); background: none; cursor: pointer; transition: .12s; min-width: 52px; text-align: center; }
.pdp-sz:hover { border-color: #000; }
.pdp-sz.on { background: #000; color: #fff; border-color: #000; }
.shake { animation: pdpShake .35s ease; }
@keyframes pdpShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.product-actions { margin-bottom: 24px; }
.pdp-atc { width: 100%; padding: 17px; font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; background: #000; color: #fff; border: none; cursor: pointer; transition: opacity .15s; }
.pdp-atc:hover:not(:disabled) { opacity: .75; }
.pdp-atc:disabled { opacity: .3; cursor: not-allowed; }
.product-features { border-top: 1px solid var(--line); padding-top: 20px; margin-bottom: 2px; }
.product-features h3 { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); margin-bottom: 12px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.feature-list li { font-size: 12px; color: #000; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.feature-list li::before { content: '—'; flex-shrink: 0; color: var(--mut); margin-top: 1px; }
.detail-item { border-top: 1px solid var(--line); }
.detail-item summary { padding: 15px 0; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.detail-item summary::-webkit-details-marker { display: none; }
.detail-item summary::after { content: '+'; font-size: 16px; font-weight: 400; color: var(--mut); }
.detail-item[open] summary::after { content: '−'; }
.detail-body { padding: 0 0 16px; font-size: 12px; color: var(--mut); line-height: 1.75; }
.pdp-sg { border-bottom: 1px solid var(--line); margin: 0 0 20px; }
.pdp-sg > summary { padding: 12px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mut); border-top: 1px solid var(--line); }
.pdp-sg > summary::-webkit-details-marker { display: none; }
.pdp-sg > summary::after { content: '+'; font-size: 15px; font-weight: 400; }
.pdp-sg[open] > summary::after { content: '−'; }
.pdp-sg-body { padding-bottom: 18px; }
.pdp-sg-intro { font-size: 12px; color: var(--mut); line-height: 1.65; margin-bottom: 8px; }
.pdp-sg-how { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 14px 0 8px; }
.pdp-sg-step { font-size: 12px; color: var(--mut); margin-bottom: 6px; padding-left: 14px; position: relative; line-height: 1.55; }
.pdp-sg-step::before { content: '—'; position: absolute; left: 0; }
.pdp-sg-tbl { width: 100%; border-collapse: collapse; font-size: 11px; margin-top: 12px; }
.pdp-sg-tbl th { padding: 8px 9px; text-align: left; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--line); color: var(--mut); }
.pdp-sg-tbl td { padding: 8px 9px; border-bottom: 1px solid var(--line); color: var(--mut); }
.pdp-sg-tbl tr.sg-on td { color: #000; font-weight: 700; }
.pdp-sg-link { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: underline; display: inline-block; margin-top: 10px; color: var(--mut); }
.pdp-sg-link:hover { color: #000; }
.related-section { padding: 64px 0; border-top: 1px solid var(--line); }
.related-section h2 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); margin-bottom: 24px; }

/* ── Shop page featured row ──────────────────────────────── */
.shop-featured { border-bottom: 1px solid var(--line); padding-bottom: 0; }
.shop-featured .over { padding-top: 52px; }
.featured-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 20px; }
.featured-card .thumb { aspect-ratio: 3/4; }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: #000; color: #fff; padding: 0; }
.foot-top {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: 36px !important;
  padding: 60px 0 52px !important;
  align-items: start !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
}
.fcol-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { width: 110px !important; height: auto !important; }
.foot-tagline { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; line-height: 1.6; }
.fcol { display: flex; flex-direction: column; }
.fcol h4 { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.fcol a { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 11px; letter-spacing: .02em; transition: color .12s; }
.fcol a:hover { color: #fff; }
.foot-newsletter { padding: 36px 0 32px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.foot-nl-label { font-size: clamp(16px, 2vw, 22px); font-weight: 700; color: #fff; white-space: nowrap; letter-spacing: -.01em; }
.foot-nl-form { display: flex; flex-direction: column; gap: 7px; flex: 1; max-width: 380px; }
.foot-nl-terms { font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: .02em; }
.foot-nl-terms a { color: rgba(255,255,255,.35); text-decoration: underline; }
.foot-nl-terms a:hover { color: #fff; }
.foot-newsletter .signup { border-bottom: 1px solid rgba(255,255,255,.3) !important; max-width: 100% !important; }
.foot-newsletter .signup input { color: #fff !important; font-size: 13px !important; }
.foot-newsletter .signup input::placeholder { color: rgba(255,255,255,.25) !important; }
.foot-newsletter .signup button { color: #fff !important; font-size: 10px !important; letter-spacing: .18em !important; font-weight: 700 !important; }
.fbot { padding: 16px 0 26px !important; display: flex; justify-content: space-between; align-items: center; font-size: 10px !important; color: rgba(255,255,255,.25) !important; letter-spacing: .08em !important; flex-wrap: wrap; gap: 10px; }
.fbot .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.fbot .legal a { font-size: 10px !important; color: rgba(255,255,255,.25) !important; letter-spacing: .08em !important; }
.fbot .legal a:hover { color: rgba(255,255,255,.6) !important; }
.fbot s { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width: 980px) {
  .grid { grid-template-columns: repeat(2,1fr) !important; }
  .tech-cards, .value-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--line); }
  .commit-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr !important; gap: 28px !important; padding: 48px 0 40px !important; }
}
@media(max-width: 820px) {
  .drop { grid-template-columns: 1fr; }
  .drop .dtxt { border-left: none; border-top: 1px solid var(--line); padding: 48px 28px; }
  .cart-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-layout { grid-template-columns: 1fr; gap: 36px; }
  .pdp-gallery { position: static; }
  .split { grid-template-columns: 1fr; }
  .split-img { display: none; }
  .benefit-grid { grid-template-columns: 1fr; }
  .foot-newsletter { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-nl-form { max-width: 100%; width: 100%; }
  .featured-row { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .wrap { padding: 0 16px; }
  .grid { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
  .foot-top { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: clamp(44px, 14vw, 72px); }
  .crow { grid-template-columns: 60px 1fr 28px; grid-template-areas: 't i r' 't q l'; row-gap: 8px; }
  .cthumb { grid-area: t; }
  .cinfo { grid-area: i; }
  .cqty { grid-area: q; }
  .cline { grid-area: l; text-align: left; }
  .crm { grid-area: r; }
}

/* ── PATCH: correct values from DevTools ──────────────────── */
/* footerBg: rgb(248,249,249) = #f8f9f9  (light, not black)   */
/* cardBg:   rgb(248,249,249) = #f8f9f9                       */

:root { --card: #f8f9f9; }

footer { background: #f8f9f9 !important; color: #000 !important; }

/* Footer text → dark on light background */
.foot-top { border-bottom: 1px solid rgba(0,0,0,.08) !important; }
.fcol-brand, .fcol { color: #000; }
.footer-logo { filter: brightness(0); }   /* invert white logo → black */
.foot-tagline { color: rgba(0,0,0,.4) !important; }
.fcol h4 { color: rgba(0,0,0,.35) !important; }
.fcol a { color: rgba(0,0,0,.55) !important; }
.fcol a:hover { color: #000 !important; }

/* Footer newsletter → dark */
.foot-newsletter { border-bottom: 1px solid rgba(0,0,0,.08) !important; }
.foot-nl-label { color: #000 !important; }
.foot-nl-terms { color: rgba(0,0,0,.35) !important; }
.foot-nl-terms a { color: rgba(0,0,0,.5) !important; }
.foot-nl-terms a:hover { color: #000 !important; }
.foot-newsletter .signup { border-bottom: 1px solid rgba(0,0,0,.2) !important; }
.foot-newsletter .signup input { color: #000 !important; }
.foot-newsletter .signup input::placeholder { color: rgba(0,0,0,.3) !important; }
.foot-newsletter .signup button { color: #000 !important; }

/* Footer bottom bar → dark */
.fbot { color: rgba(0,0,0,.3) !important; }
.fbot .legal a { color: rgba(0,0,0,.3) !important; }
.fbot .legal a:hover { color: rgba(0,0,0,.7) !important; }

/* Card background */
.thumb, .pdp-img, .pdp-thumb, .split-img, .team-card .avatar,
.cthumb, .confirm-wrap .check { background: #f8f9f9 !important; }

/* ── NAV: fix vertical alignment + positioning ─────────────── */
nav { position: relative }

/* nav-in must be position:relative so absolute nav-links work */
.nav-in {
  position: relative !important;
  height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Logo + hamburger aligned to centre of nav height */
.nav-l { display: flex; align-items: center; gap: 16px; height: 100%; }
.brand  { display: flex; align-items: center; }
.nav-icon { height: 28px; width: auto; filter: brightness(0); }

/* Centre links: absolute, full height, flex-centred */
.nav-links {
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  transform: translateX(-50%) !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  pointer-events: auto !important;
}
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #000;
  white-space: nowrap; line-height: 1;
}

/* Right icons aligned to centre */
.nav-r { display: flex; align-items: center; gap: 14px; height: 100%; }

/* Hamburger - mobile only, black */
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-ham span { display: block; width: 20px; height: 1.5px; background: #000; transition: transform .25s; transform-origin: center; }
.nav-ham.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

@media(min-width: 821px) {
  .nav-ham { display: none !important; }
  .nav-links { display: flex !important; }
}
@media(max-width: 820px) {
  .nav-links { display: none !important; }
  .nav-ham { display: flex !important; }
}

/* ── FOOTER: fully readable on #f8f9f9 light background ───── */
footer {
  background-color: #f8f9f9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #000;
  font-family: inherit;
  position: relative;
}
footer[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  pointer-events: none;
  z-index: 0;
}
footer[style*="background-image"] .wrap { position: relative; z-index: 1; }
footer[style*="background-image"] .foot-top { border-bottom-color: rgba(255,255,255,.1) !important; }
footer[style*="background-image"] .fcol h4 { color: rgba(255,255,255,.35) !important; }
footer[style*="background-image"] .fcol a { color: rgba(255,255,255,.6) !important; }
footer[style*="background-image"] .fcol a:hover { color: #fff !important; }
footer[style*="background-image"] .foot-tagline { color: rgba(255,255,255,.4) !important; }
footer[style*="background-image"] .fcol-brand img { filter: brightness(0) invert(1); }
footer[style*="background-image"] .fbot { color: rgba(255,255,255,.3) !important; border-top-color: rgba(255,255,255,.1) !important; }
footer[style*="background-image"] .fbot .legal a { color: rgba(255,255,255,.3) !important; }
footer[style*="background-image"] .fbot .legal a:hover { color: rgba(255,255,255,.7) !important; }
footer[style*="background-image"] .foot-nl-label { color: #fff !important; }
footer[style*="background-image"] .foot-newsletter { border-bottom-color: rgba(255,255,255,.12) !important; }
footer[style*="background-image"] .foot-newsletter .signup { border-bottom-color: rgba(255,255,255,.3) !important; }
footer[style*="background-image"] .foot-newsletter .signup input { color: #fff !important; }
footer[style*="background-image"] .foot-newsletter .signup input::placeholder { color: rgba(255,255,255,.4) !important; }
footer[style*="background-image"] .foot-newsletter .signup button { color: #fff !important; }

/* Reset ALL colour rules we may have set for dark footer */
.foot-top, .foot-newsletter, .fbot,
.fcol-brand, .fcol, .fcol h4, .fcol a,
.foot-nl-label, .foot-nl-terms, .foot-nl-terms a,
.fbot .legal a { color: inherit; }

/* Apply clean dark-on-light colours */
footer .foot-top  { border-bottom: 1px solid rgba(0,0,0,.1) !important; padding: 56px 0 48px !important; }
footer .fcol h4   { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(0,0,0,.35); margin-bottom: 18px; }
footer .fcol a    { font-size: 12px; color: rgba(0,0,0,.55); margin-bottom: 11px; letter-spacing: .01em; display: block; }
footer .fcol a:hover { color: #000; }
footer .foot-tagline { font-size: 10px; color: rgba(0,0,0,.4); letter-spacing: .1em; text-transform: uppercase; }

/* Footer newsletter */
footer .foot-newsletter  { border-bottom: 1px solid rgba(0,0,0,.1) !important; padding: 32px 0 28px; }
footer .foot-nl-label    { color: #000 !important; }
footer .foot-nl-terms    { color: rgba(0,0,0,.4) !important; font-size: 10px; }
footer .foot-nl-terms a  { color: rgba(0,0,0,.5); text-decoration: underline; }
footer .foot-nl-terms a:hover { color: #000; }
footer .foot-newsletter .signup { border-bottom: 1.5px solid rgba(0,0,0,.25) !important; }
footer .foot-newsletter .signup input { color: #000 !important; }
footer .foot-newsletter .signup input::placeholder { color: rgba(0,0,0,.3) !important; }
footer .foot-newsletter .signup button { color: #000 !important; }

/* Footer bottom bar */
footer .fbot { padding: 14px 0 24px !important; border-top: 1px solid rgba(0,0,0,.08); }
footer .fbot, footer .fbot .legal a { color: rgba(0,0,0,.35) !important; font-size: 10px !important; letter-spacing: .06em; }
footer .fbot .legal a:hover { color: #000 !important; }
footer .fbot s { display: none; }

/* Logo in footer → black */
footer .footer-logo { filter: brightness(0) !important; width: 110px !important; }

/* ============================================================
   Homepage — Satisfy editorial layout
   ============================================================ */

/* ── Hero: full viewport, text bottom-left ─────────────────── */
.sf-hero{
  min-height:88vh;
  display:flex;align-items:flex-end;
  position:relative;overflow:hidden;
  background:#f8f9f9;
  border-bottom:1px solid var(--line);
}
.sf-hero-bg{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:clamp(160px,28vw,320px);
  color:rgba(0,0,0,.04);
  pointer-events:none;
}
.sf-hero-content{
  position:relative;z-index:1;
  padding:0 0 56px;
  width:100%;
}
.sf-hero-content h1{
  font-size:clamp(52px,11vw,140px);
  line-height:.88;letter-spacing:-.04em;font-weight:700;
  margin-bottom:32px;max-width:14ch;
}
.sf-hero-content .btn{font-size:11px;letter-spacing:.18em;padding:13px 32px}

/* ── Campaign block: image + text side by side ──────────────── */
.sf-campaign{
  display:grid;grid-template-columns:1.2fr .8fr;
  min-height:580px;
  border-bottom:1px solid var(--line);
}
.sf-campaign.reverse{grid-template-columns:.8fr 1.2fr}
.sf-campaign-img{
  background:#f8f9f9;
  display:flex;align-items:center;justify-content:center;
  font-size:clamp(100px,16vw,180px);
  color:rgba(0,0,0,.07);
  position:relative;overflow:hidden;
}
.sf-campaign-img span{
  position:absolute;top:16px;left:16px;
  font-size:10px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(0,0,0,.35);
}
.sf-campaign-text{
  padding:60px 52px;
  display:flex;flex-direction:column;justify-content:flex-end;
  border-left:1px solid var(--line);
}
.sf-campaign.reverse .sf-campaign-text{border-left:none;border-right:1px solid var(--line)}
.sf-campaign-text .over{margin-bottom:10px}
.sf-campaign-text h2{
  font-size:clamp(28px,4.5vw,60px);
  line-height:.95;letter-spacing:-.025em;font-weight:700;
  margin-bottom:24px;
}
.sf-campaign-text .btn{align-self:flex-start}

/* ── Section header ─────────────────────────────────────────── */
.sf-section-hd{
  display:flex;align-items:baseline;justify-content:space-between;
  padding:48px 0 20px;border-top:1px solid var(--line);
  flex-wrap:wrap;gap:12px;
}
.sf-section-hd h2{
  font-size:11px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(0,0,0,.4);
}
.sf-section-hd a{
  font-size:10px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;text-decoration:underline;
  text-underline-offset:3px;color:rgba(0,0,0,.45);
}
.sf-section-hd a:hover{color:#000}

/* ── Category tiles: 4 across ───────────────────────────────── */
.sf-cats{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--line);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sf-cat{
  background:#f8f9f9;
  aspect-ratio:3/4;
  display:flex;flex-direction:column;
  align-items:flex-start;justify-content:flex-end;
  padding:20px;position:relative;overflow:hidden;
  text-decoration:none;color:#fff;
  transition:opacity .2s;
}
.sf-cat:hover{opacity:.88}
.sf-cat::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 45%, transparent 100%);
  pointer-events:none;
}
.sf-cat-icon{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-55%);
  font-size:clamp(52px,7vw,88px);
  color:rgba(255,255,255,.12);pointer-events:none;
}
.sf-cat h3{
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size:clamp(15px,2vw,20px);
  font-weight:500;
  letter-spacing:.01em;
  text-transform:none;
  position:relative;z-index:1;
  color:#fff;
}
.sf-cat p{font-size:10px;color:rgba(255,255,255,.6);letter-spacing:.06em;margin-top:3px;position:relative;z-index:1}

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:820px){
  .sf-campaign{grid-template-columns:1fr;min-height:auto}
  .sf-campaign .sf-campaign-img{min-height:320px}
  .sf-campaign-text{border-left:none !important;border-right:none !important;border-top:1px solid var(--line);padding:40px 28px}
  .sf-cats{grid-template-columns:repeat(2,1fr)}
  .sf-hero-content h1{font-size:clamp(44px,14vw,80px)}
}
@media(max-width:480px){
  .sf-cats{grid-template-columns:repeat(2,1fr)}
  .sf-campaign-text{padding:32px 20px}
}

/* ============================================================
   Font → Helvetica Neue throughout
   ============================================================ */
body,button,input,select,textarea{
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif !important;
}

/* ── Footer logo: bigger, no tagline ────────────────────── */
footer .footer-logo{width:160px !important}
footer .foot-tagline{display:none !important}

/* ============================================================
   Cart Drawer — Satisfy-style slide-in from right
   ============================================================ */
.cart-drawer-ov{
  position:fixed;inset:0;background:rgba(0,0,0,.35);
  z-index:450;opacity:0;pointer-events:none;transition:opacity .28s;
}
.cart-drawer-ov.open{opacity:1;pointer-events:auto}

.cart-drawer{
  position:fixed;top:0;right:0;
  width:min(420px,100vw);height:100vh;
  background:#fff;z-index:500;
  transform:translateX(100%);
  transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  border-left:1px solid var(--line);
}
.cart-drawer.open{transform:translateX(0)}

/* Header */
.cart-drawer-hd{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 24px;height:72px;
  border-bottom:1px solid var(--line);flex-shrink:0;
}
.cart-drawer-hd-title{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.cart-drawer-hd-close{
  background:none;border:none;cursor:pointer;
  font-size:22px;color:rgba(0,0,0,.4);line-height:1;padding:4px;transition:color .12s;
}
.cart-drawer-hd-close:hover{color:#000}

/* Items list */
.cart-drawer-body{flex:1;overflow-y:auto;padding:0}
.cart-drawer-empty{
  padding:60px 24px;text-align:center;
  font-size:13px;color:var(--mut);
}
.cart-drawer-empty a{color:#000;text-decoration:underline;text-underline-offset:3px}

.cdi{
  display:grid;grid-template-columns:72px 1fr;
  gap:16px;padding:20px 24px;
  border-bottom:1px solid var(--line);align-items:start;
}
.cdi-img{
  width:72px;height:88px;background:#f8f9f9;
  display:flex;align-items:center;justify-content:center;
  color:rgba(0,0,0,.12);font-size:24px;flex-shrink:0;
}
.cdi-info{display:flex;flex-direction:column;gap:3px;min-width:0}
.cdi-name{font-size:12px;font-weight:700;letter-spacing:-.005em;line-height:1.3}
.cdi-meta{font-size:10px;color:var(--mut);letter-spacing:.06em;text-transform:uppercase}
.cdi-row{display:flex;align-items:center;justify-content:space-between;margin-top:10px}
.cdi-qty{display:flex;align-items:center;gap:12px;border:1px solid var(--line);padding:5px 10px}
.cdi-qty button{background:none;border:none;cursor:pointer;font-size:16px;color:rgba(0,0,0,.4);line-height:1;padding:0}
.cdi-qty button:hover{color:#000}
.cdi-qty span{font-size:12px;font-weight:700;min-width:14px;text-align:center}
.cdi-price{font-size:12px;font-weight:700}
.cdi-remove{
  font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  color:var(--mut);text-decoration:underline;text-underline-offset:3px;
  background:none;border:none;cursor:pointer;margin-top:8px;padding:0;font-family:inherit;
}
.cdi-remove:hover{color:#000}

/* Footer */
.cart-drawer-ft{
  padding:20px 24px 36px;
  border-top:1px solid var(--line);flex-shrink:0;
}
.cart-drawer-ship{
  font-size:10px;color:var(--mut);letter-spacing:.04em;
  text-align:center;margin-bottom:14px;
}
.cart-drawer-total{
  display:flex;justify-content:space-between;align-items:baseline;
  margin-bottom:16px;
}
.cart-drawer-total-label{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--mut)}
.cart-drawer-total-val{font-size:15px;font-weight:700}
.cart-drawer-checkout{width:100%;text-align:center;display:block;padding:16px;font-size:11px;letter-spacing:.18em}
.cart-drawer-continue{
  display:block;text-align:center;margin-top:12px;
  font-size:10px;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--mut);
  text-decoration:underline;text-underline-offset:3px;
}
.cart-drawer-continue:hover{color:#000}

/* ============================================================
   Search — Satisfy style: full-screen clean
   ============================================================ */
.search-ov{
  position:fixed;inset:0;background:#fff;
  z-index:600;display:flex;flex-direction:column;
  opacity:0;pointer-events:none;transition:opacity .2s;
}
.search-ov.open{opacity:1;pointer-events:auto}
.search-ov-bar{
  display:flex;align-items:center;
  padding:0 24px;height:72px;
  border-bottom:1px solid var(--line);flex-shrink:0;
}
.search-ov-input{
  flex:1;border:none;background:none;
  font-family:inherit;font-size:16px;font-weight:400;
  color:#000;outline:none;padding:0 16px 0 0;
  letter-spacing:-.005em;
}
.search-ov-input::placeholder{color:rgba(0,0,0,.3)}
.search-ov-close{
  background:none;border:none;cursor:pointer;
  font-size:22px;color:rgba(0,0,0,.4);padding:4px;
  line-height:1;transition:color .12s;flex-shrink:0;
}
.search-ov-close:hover{color:#000}
.search-ov-body{flex:1;overflow-y:auto;padding:36px 24px}
.search-ov-hint{
  font-size:11px;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(0,0,0,.3);margin-bottom:24px;
}
.search-ov-results .grid{gap:1px}

/* ============================================================
   Profile / Account modal — Satisfy style
   ============================================================ */
.account-ov{
  position:fixed;inset:0;background:rgba(0,0,0,.35);
  z-index:450;opacity:0;pointer-events:none;transition:opacity .25s;
  display:flex;align-items:flex-start;justify-content:flex-end;
}
.account-ov.open{opacity:1;pointer-events:auto}
.account-panel{
  width:min(380px,100vw);height:100vh;background:#fff;
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  border-left:1px solid var(--line);overflow-y:auto;
}
.account-ov.open .account-panel{transform:translateX(0)}
.account-panel-hd{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 24px;height:72px;border-bottom:1px solid var(--line);flex-shrink:0;
}
.account-panel-hd span{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.account-panel-hd button{background:none;border:none;cursor:pointer;font-size:22px;color:rgba(0,0,0,.4);padding:4px;line-height:1}
.account-panel-hd button:hover{color:#000}
.account-panel-body{padding:36px 24px;flex:1}
.account-tabs{display:flex;margin-bottom:32px;border-bottom:1px solid var(--line)}
.account-tab{
  flex:1;text-align:center;padding:12px 0;
  font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--mut);cursor:pointer;border-bottom:2px solid transparent;
  margin-bottom:-1px;transition:color .12s;background:none;border-top:none;border-left:none;border-right:none;
  font-family:inherit;
}
.account-tab.on{color:#000;border-bottom-color:#000}
.account-tab:hover{color:#000}
.account-form-title{font-size:18px;font-weight:700;letter-spacing:-.01em;margin-bottom:20px}
.account-form{display:flex;flex-direction:column;gap:12px}
.account-form input{
  font-family:inherit;font-size:13px;padding:12px 14px;
  border:1px solid var(--line);background:#fff;color:#000;outline:none;
}
.account-form input:focus{border-color:#000}
.account-form .btn{padding:14px;font-size:11px;letter-spacing:.16em}
.account-divider{text-align:center;font-size:11px;color:var(--mut);margin:20px 0;letter-spacing:.06em}
.account-nl{margin-top:32px;padding-top:28px;border-top:1px solid var(--line)}
.account-nl p{font-size:12px;color:var(--mut);margin-bottom:12px;line-height:1.7}

/* ============================================================
   Transparent fixed nav — white logo + text, gradient bg
   ============================================================ */

/* Fixed position, transparent gradient */
nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.55) 0%,transparent 100%) !important;
  border-bottom: none !important;
  z-index: 120;
}

/* All nav elements: white */
.nav-links a         { color: rgba(255,255,255,.88) !important; }
.nav-links a:hover   { color: #fff !important; opacity:1 !important; }
.nav-r a             { color: rgba(255,255,255,.85) !important; opacity:1 !important; }
.nav-r a:hover       { color: #fff !important; }
.nav-r select        { color: rgba(255,255,255,.8) !important; }
.nav-r select option { background: #111; color: #fff; }
#cartc               { color: rgba(255,255,255,.9) !important; }
.nav-ham span        { background: #fff !important; }

/* Logo: white, bigger */
.nav-icon {
  height: 44px !important;
  filter: none !important;  /* use icon-white.png as-is */
}

/* ── When scrolled: solid white nav ─────────────────────────── */
nav.nav-solid {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}
nav.nav-solid .nav-links a   { color: #000 !important; }
nav.nav-solid .nav-links a:hover { opacity: .5 !important; }
nav.nav-solid .nav-r a       { color: rgba(0,0,0,.8) !important; }
nav.nav-solid .nav-r select  { color: rgba(0,0,0,.7) !important; }
nav.nav-solid #cartc          { color: #000 !important; }
nav.nav-solid .nav-ham span  { background: #000 !important; }
nav.nav-solid .nav-icon      { filter: brightness(0) !important; }

/* ── Body offset so fixed nav doesn't cover content ──────────── */
body { padding-top: 72px; }

/* Hero extends behind the fixed nav */
.sf-hero { margin-top: -72px; padding-bottom: 0; }

/* ============================================================
   Nav gradient fix + logo uncropped and bigger
   ============================================================ */

/* 1. Nav fully transparent — gradient lives on a pseudo-element
      that extends 220px below the top so it's soft and even    */
nav{background:transparent !important;border-bottom:none !important}
nav::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:220px;pointer-events:none;z-index:-1;
  background:linear-gradient(to bottom,
    rgba(0,0,0,.52) 0%,
    rgba(0,0,0,.28) 40%,
    rgba(0,0,0,.08) 70%,
    transparent    100%);
}

/* Solid state on scroll — overrides pseudo */
nav.nav-solid{background:rgba(255,255,255,.97) !important;backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.08) !important}
nav.nav-solid::before{display:none}

/* 2. Logo: no crop, natural shape, bigger */
.nav-l{overflow:visible}
.brand{overflow:visible;display:flex;align-items:center}
.nav-icon{
  height:52px !important;
  width:auto !important;
  max-width:none !important;
  object-fit:contain !important;
  display:block;
  filter:none !important;   /* keep white logo as-is */
  flex-shrink:0;
}
nav.nav-solid .nav-icon{filter:brightness(0) !important}

/* ============================================================
   Product detail accordions — clean minimalist + sign
   ============================================================ */

/* Container */
.detail-item{
  border-top:1px solid rgba(0,0,0,.1);
}
.detail-item:last-of-type{border-bottom:1px solid rgba(0,0,0,.1)}

/* Summary row */
.detail-item summary{
  display:flex;align-items:center;justify-content:space-between;
  padding:17px 0;
  cursor:pointer;
  font-size:11px;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;
  color:#000;
  list-style:none;user-select:none;
  gap:16px;
}
.detail-item summary::-webkit-details-marker{display:none}

/* + / − indicator */
.detail-item summary::after{
  content:'+';
  font-size:18px;font-weight:300;
  color:rgba(0,0,0,.4);
  flex-shrink:0;line-height:1;
  transition:transform .2s,opacity .2s;
}
.detail-item[open] summary::after{
  content:'+';
  transform:rotate(45deg);
  color:#000;
}

/* Body text */
.detail-body{
  padding:0 0 20px;
  font-size:13px;line-height:1.8;
  color:rgba(0,0,0,.55);
  letter-spacing:.01em;
}
.detail-body a{color:#000;text-decoration:underline;text-underline-offset:3px}

/* Same fix for pdp-sg (size guide accordion) */
.pdp-sg>summary::after{
  content:'+';
  font-size:18px;font-weight:300;
  color:rgba(0,0,0,.4);
  flex-shrink:0;line-height:1;
  transition:transform .2s;
}
.pdp-sg[open]>summary::after{
  content:'+';
  transform:rotate(45deg);
  color:#000;
}

/* ============================================================
   Nav: no gradient — fully transparent at top, solid on scroll
   ============================================================ */
nav{background:transparent !important;border-bottom:none !important}
nav::before{display:none !important}

nav.nav-solid{
  background:rgba(255,255,255,.97) !important;
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08) !important;
}
nav.nav-solid::before{display:none !important}

/* ============================================================
   Card placeholder — more visible, clearly intentional
   ============================================================ */
.thumb{background:#e8e7e3 !important}
.thumb[data-cat="outerwear"]  {background:#dddbd5 !important}
.thumb[data-cat="tops"]       {background:#e4e3de !important}
.thumb[data-cat="bottoms"]    {background:#e2e1db !important}
.thumb[data-cat="accessories"]{background:#e6e5e0 !important}
.card:hover .thumb{filter:brightness(.95)}
.thumb-ph-label{
  font-size:9px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(0,0,0,.35) !important;
}
.pname{font-size:12px;font-weight:500;color:#000;letter-spacing:-.005em}
.price{font-size:12px;color:rgba(0,0,0,.5)}
.meta{padding:0 2px}

/* ============================================================
   Product detail — Satisfy-style redesign
   ============================================================ */

/* Wider layout, more breathing room */
.pdp-page{padding:40px 0 120px}
.pdp-layout{
  display:grid;grid-template-columns:1.1fr .9fr;
  gap:80px;align-items:start;
}

/* Gallery */
.pdp-gallery{position:sticky;top:92px}
.pdp-img{
  aspect-ratio:4/5;
  background:#e8e7e3 !important;
  display:flex;align-items:center;justify-content:center;
  font-size:120px;color:rgba(0,0,0,.1);
}
.pdp-thumbs{display:flex;gap:6px;margin-top:8px}
.pdp-thumb{
  width:64px;height:78px;background:#e8e7e3;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;color:rgba(0,0,0,.18);
  cursor:pointer;border:1.5px solid transparent;transition:.12s;
}
.pdp-thumb.on{border-color:#000}

/* Info */
.pdp-cat{
  font-size:10px;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(0,0,0,.4);
  margin-bottom:10px;display:flex;align-items:center;gap:8px;
}
.pdp-name{
  font-size:clamp(26px,3.8vw,44px);
  line-height:.96;letter-spacing:-.025em;font-weight:700;
  margin-bottom:14px;
}
.pdp-price{font-size:16px;font-weight:400;color:rgba(0,0,0,.55);margin-bottom:28px}

/* Size */
.size-row{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:8px;
}
.size-label-text{font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.size-guide-link{
  font-size:10px;color:rgba(0,0,0,.45);
  text-decoration:underline;text-underline-offset:3px;letter-spacing:.04em;
}
.size-options{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px}
.pdp-sz{
  font-family:inherit;font-size:11px;font-weight:600;
  letter-spacing:.06em;padding:10px 16px;
  border:1px solid rgba(0,0,0,.18);background:none;cursor:pointer;transition:.12s;
  min-width:52px;text-align:center;
}
.pdp-sz:hover{border-color:#000}
.pdp-sz.on{background:#000;color:#fff;border-color:#000}

/* ATC */
.pdp-atc{
  width:100%;padding:16px;
  background:#000;color:#fff;
  font-family:inherit;font-size:11px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  border:none;cursor:pointer;transition:opacity .15s;
  margin-bottom:28px;
}
.pdp-atc:hover:not(:disabled){opacity:.75}
.pdp-atc:disabled{opacity:.25;cursor:not-allowed}

/* ── Metric bars — performance specs ── */
.pdp-specs{margin:28px 0;border-top:1px solid rgba(0,0,0,.08);padding-top:24px}
.pdp-specs-title{
  font-size:10px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(0,0,0,.35);
  margin-bottom:20px;
}
.spec-bar{margin-bottom:16px}
.spec-bar:last-child{margin-bottom:0}
.spec-bar-row{
  display:flex;justify-content:space-between;align-items:baseline;
  margin-bottom:6px;
}
.spec-bar-label{
  font-size:11px;font-weight:500;letter-spacing:.02em;color:#000;
}
.spec-bar-val{
  font-size:10px;font-weight:700;letter-spacing:.06em;
  color:rgba(0,0,0,.4);
}
.spec-bar-track{
  height:2px;background:rgba(0,0,0,.1);
  position:relative;overflow:hidden;
}
.spec-bar-fill{
  height:100%;background:#000;
  transform-origin:left;
  transition:transform .5s cubic-bezier(.4,0,.2,1) .1s;
}

/* Accordions — clean + sign */
.detail-item{border-top:1px solid rgba(0,0,0,.1)}
.detail-item:last-child{border-bottom:1px solid rgba(0,0,0,.1)}
.detail-item summary{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;cursor:pointer;
  font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  list-style:none;user-select:none;gap:12px;
}
.detail-item summary::-webkit-details-marker{display:none}
.detail-item summary::after{
  content:'+';font-size:16px;font-weight:300;
  color:rgba(0,0,0,.35);flex-shrink:0;line-height:1;transition:transform .2s;
}
.detail-item[open] summary::after{transform:rotate(45deg);color:#000}
.detail-body{
  padding:2px 0 18px;font-size:12px;line-height:1.85;
  color:rgba(0,0,0,.5);letter-spacing:.01em;
}
.detail-body a{color:#000;text-decoration:underline;text-underline-offset:3px}

/* Related */
.related-section{padding:60px 0;border-top:1px solid rgba(0,0,0,.1)}
.related-section h2{
  font-size:10px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(0,0,0,.35);margin-bottom:20px;
}

/* Mobile */
@media(max-width:820px){
  .pdp-layout{grid-template-columns:1fr;gap:36px}
  .pdp-gallery{position:static}
}

/* ============================================================
   Nav: solid white by default — transparent ONLY on home page
   ============================================================ */

/* Default: always solid */
nav{
  background:rgba(255,255,255,.97) !important;
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08) !important;
}
nav::before{display:none !important}

/* Home page only: starts transparent */
body.is-home nav{
  background:transparent !important;
  backdrop-filter:none !important;
  border-bottom:none !important;
}
body.is-home nav.nav-solid{
  background:rgba(255,255,255,.97) !important;
  backdrop-filter:blur(12px) !important;
  border-bottom:1px solid rgba(0,0,0,.08) !important;
}

/* Default nav text = black (non-home pages) */
nav:not(.nav-transparent) .nav-links a,
body:not(.is-home) .nav-links a{color:#000 !important}
body:not(.is-home) .nav-links a:hover{opacity:.5}
body:not(.is-home) .nav-r a{color:rgba(0,0,0,.7) !important}
body:not(.is-home) .nav-r select{color:rgba(0,0,0,.7) !important}
body:not(.is-home) #cartc{color:#000 !important}
body:not(.is-home) .nav-ham span{background:#000 !important}
body:not(.is-home) .nav-icon{filter:brightness(0) !important}

/* Home page text = white when transparent, black when solid */
body.is-home nav:not(.nav-solid) .nav-links a{color:rgba(255,255,255,.9) !important}
body.is-home nav:not(.nav-solid) .nav-links a:hover{color:#fff !important;opacity:1 !important}
body.is-home nav:not(.nav-solid) .nav-r a{color:rgba(255,255,255,.85) !important}
body.is-home nav:not(.nav-solid) .nav-r select{color:rgba(255,255,255,.8) !important}
body.is-home nav:not(.nav-solid) #cartc{color:rgba(255,255,255,.9) !important}
body.is-home nav:not(.nav-solid) .nav-ham span{background:#fff !important}
body.is-home nav:not(.nav-solid) .nav-icon{filter:none !important}
body.is-home nav.nav-solid .nav-links a{color:#000 !important}
body.is-home nav.nav-solid .nav-r a{color:rgba(0,0,0,.7) !important}
body.is-home nav.nav-solid #cartc{color:#000 !important}
body.is-home nav.nav-solid .nav-ham span{background:#000 !important}
body.is-home nav.nav-solid .nav-icon{filter:brightness(0) !important}

/* Admin: force dark logo on transparent nav (data-logo-mode="dark") */
nav[data-logo-mode="dark"]:not(.nav-solid) .nav-icon { filter: brightness(0) !important; }

/* Remove category corner labels from cards */
.thumb-ph{display:none !important}

/* ============================================================
   Product grid — readable names, vertical breathing room
   ============================================================ */

/* Row gap for vertical space between card rows */
.grid{
  column-gap:1px !important;
  row-gap:40px !important;
}

/* Meta area below image — stacked, generous spacing */
.meta{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:5px !important;
  margin:14px 0 0 !important;
  padding:0 !important;
}

/* Product name — slightly bigger, clear weight */
.pname{
  font-size:13px !important;
  font-weight:500 !important;
  color:#000 !important;
  letter-spacing:-.01em !important;
  line-height:1.3 !important;
}

/* Price — below name, muted */
.price{
  font-size:12px !important;
  color:rgba(0,0,0,.45) !important;
  letter-spacing:.01em !important;
  white-space:nowrap !important;
}

/* ============================================================
   Logo — crisp, no clipping, isolated from backdrop blur
   ============================================================ */

/* Force logo into its own compositing layer so backdrop-filter
   on the nav doesn't bleed into it and cause blurriness       */
.nav-l{overflow:visible !important;flex-shrink:0}
.brand{
  overflow:visible !important;
  flex-shrink:0;
  display:flex;
  align-items:center;
  /* Isolate from parent backdrop-filter stacking context */
  isolation:isolate;
  position:relative;
  z-index:1;
}
.nav-icon{
  height:54px !important;
  width:auto !important;
  max-width:none !important;
  overflow:visible !important;
  flex-shrink:0 !important;
  display:block !important;
  /* Force GPU compositing layer — keeps the image sharp
     regardless of parent filter/backdrop-filter effects  */
  will-change:transform;
  transform:translateZ(0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  image-rendering:-webkit-optimize-contrast;
  image-rendering:crisp-edges;
}

/* Logo — remove crisp-edges (causes pixelation), smooth rendering */
.nav-icon{
  image-rendering:auto !important;
  -webkit-backface-visibility:visible !important;
  backface-visibility:visible !important;
  will-change:auto !important;
  transform:none !important;
}

/* ============================================================
   Nav v5 — 3-col grid: links | BIG centred logo | icons
   ============================================================ */

/* Taller nav */
.nav-in{
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
  height:92px !important;
  position:relative;
}

/* Left: nav links (desktop) or hamburger (mobile) */
.nav-l{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:0;
  overflow:visible;
}

/* Nav links now live inside nav-l */
.nav-l .nav-links{
  position:static !important;
  transform:none !important;
  height:auto !important;
  display:flex !important;
  align-items:center !important;
  gap:26px !important;
}
.nav-l .nav-links a{
  font-size:11px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;white-space:nowrap;
}

/* Centre: logo — big, symmetric */
.brand{
  justify-self:center;
  display:flex;
  align-items:center;
  overflow:visible;
  isolation:isolate;
}
.nav-icon{
  height:88px !important;
  width:88px !important;
  max-width:none !important;
  display:block !important;
  overflow:visible !important;
  flex-shrink:0 !important;
  background-color: #fff;
  -webkit-mask-image: url('/assets/icon-white.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('/assets/icon-white.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  filter: none !important;
}

/* Right: icons right-aligned */
.nav-r{justify-self:end;display:flex;align-items:center;gap:18px}

/* Mobile: hide links, show hamburger */
@media(max-width:820px){
  .nav-l .nav-links{display:none !important}
  .nav-ham{display:flex !important}
  .nav-in{height:76px !important}
  .nav-icon{height:64px !important;width:64px !important}
}
@media(min-width:821px){
  .nav-ham{display:none !important}
  .nav-l .nav-links{display:flex !important}
}

/* Sidebar first link still accounts for nav height */
.sidebar-nav a:first-child{margin-top:92px}

/* White/black colours still driven by is-home + nav-solid rules */

/* ============================================================
   Shop panel + redesigned nav icons
   ============================================================ */

/* ── Shop trigger button (looks like a nav link) ─────────── */
.nav-shop-btn{
  background:none;border:none;cursor:pointer;
  font-family:inherit;font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  padding:0;transition:opacity .15s;
}
body:not(.is-home) .nav-shop-btn,
body.is-home nav.nav-solid .nav-shop-btn{color:#000 !important}
body.is-home nav:not(.nav-solid) .nav-shop-btn{color:rgba(255,255,255,.88) !important}
.nav-shop-btn:hover{opacity:.5}
.nav-shop-btn.active{opacity:1;text-decoration:underline;text-underline-offset:4px}

/* ── Shop panel overlay ───────────────────────────────────── */
.shop-panel-ov{
  position:fixed;inset:0;z-index:90;
  background:rgba(0,0,0,.18);
  opacity:0;pointer-events:none;transition:opacity .25s;
}
.shop-panel-ov.open{opacity:1;pointer-events:auto}

/* ── Shop panel itself ────────────────────────────────────── */
.shop-panel{
  position:fixed;top:92px;left:0;right:0;
  background:#fff;z-index:100;
  border-bottom:1px solid rgba(0,0,0,.1);
  transform:translateY(-8px);
  opacity:0;pointer-events:none;
  transition:transform .25s cubic-bezier(.4,0,.2,1), opacity .2s;
}
.shop-panel.open{transform:translateY(0);opacity:1;pointer-events:auto}

.shop-panel-inner{
  display:flex;gap:80px;
  padding:40px 0 44px;
}
.shop-panel-col{display:flex;flex-direction:column;gap:3px;min-width:120px}
.shop-panel-head{
  font-size:9px;font-weight:700;letter-spacing:.22em;
  text-transform:uppercase;color:rgba(0,0,0,.32);
  margin-bottom:14px;
}
.shop-panel-col a{
  font-size:15px;font-weight:500;color:#000;
  letter-spacing:-.01em;padding:5px 0;
  transition:opacity .12s;display:block;
}
.shop-panel-col a:hover{opacity:.45}

/* ── Redesigned nav icons ─────────────────────────────────── */
.nav-icon-btn{
  display:flex;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;
  padding:2px;transition:opacity .15s;
  text-decoration:none;
}
.nav-icon-btn:hover{opacity:.5 !important}

/* Bag button with count */
.nav-bag-btn{gap:4px}
#cartc{
  font-size:11px;font-weight:700;
  letter-spacing:.02em;
  background:transparent !important;
  position:static !important;
  width:auto !important;height:auto !important;
  border-radius:0 !important;
  min-width:0 !important;
  line-height:1;
}

/* Icon colours — black on solid/non-home, white on transparent home */
body:not(.is-home) .nav-icon-btn,
body:not(.is-home) #cartc{color:#000 !important}
body.is-home nav:not(.nav-solid) .nav-icon-btn,
body.is-home nav:not(.nav-solid) #cartc{color:rgba(255,255,255,.88) !important}
body.is-home nav.nav-solid .nav-icon-btn,
body.is-home nav.nav-solid #cartc{color:#000 !important}

/* Mobile: keep cart icon on right, hide bag count if 0 */
@media(max-width:820px){
  .shop-panel{top:76px}
  .shop-panel-inner{flex-direction:column;gap:24px;padding:28px 0 32px}
  .shop-panel-col{gap:2px}
  .shop-panel-col a{font-size:14px;padding:4px 0}
}

/* Home page transparent nav — dark text (hero bg is light) */
body.is-home nav:not(.nav-solid) .nav-links a,
body.is-home nav:not(.nav-solid) .nav-shop-btn{color:rgba(0,0,0,.75) !important}
body.is-home nav:not(.nav-solid) .nav-links a:hover,
body.is-home nav:not(.nav-solid) .nav-shop-btn:hover{color:#000 !important;opacity:1 !important}
body.is-home nav:not(.nav-solid) .nav-r a,
body.is-home nav:not(.nav-solid) .nav-icon-btn,
body.is-home nav:not(.nav-solid) #cartc{color:rgba(0,0,0,.65) !important}
body.is-home nav:not(.nav-solid) .nav-ham span{background:#000 !important}
body.is-home nav:not(.nav-solid) .nav-icon{filter:brightness(0) !important}
body.is-home nav:not(.nav-solid) .nav-r select{color:rgba(0,0,0,.6) !important}

/* ── Shop panel: all-caps link styles ─────────────────────── */
.shop-panel-col a{text-transform:uppercase;letter-spacing:.1em;font-size:13px}
.shop-all-link{
  font-size:13px !important;font-weight:700 !important;
  letter-spacing:.14em !important;text-transform:uppercase !important;
  text-decoration:underline;text-underline-offset:4px;
  margin-top:auto;padding-top:0;
}

/* ── Home newsletter — well designed, 2-col layout ──────── */
/* Current Season section background */
.cs-section{position:relative}
.cs-section[style*="background-image"]{background-size:cover;background-position:center}
.cs-section[style*="background-image"] .arrivals-hd,
.cs-section[style*="background-image"] .cs-grid{position:relative;z-index:1}

.news{
  padding:80px 0 !important;
  border-top:1px solid rgba(0,0,0,.1) !important;
  border-bottom:1px solid rgba(0,0,0,.1);
  position:relative;
}
/* Newsletter background image overlay */
.news[style*="background-image"]{background-size:cover !important;background-position:center !important;border:none !important}
.news[style*="background-image"]::before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.55);pointer-events:none;z-index:0}
.news[style*="background-image"] .wrap{position:relative;z-index:1}
.news[style*="background-image"] h2{color:#fff !important}
.news[style*="background-image"] p{color:rgba(255,255,255,.75) !important}
.news[style*="background-image"] .signup{border-bottom:2px solid #fff !important}
.news[style*="background-image"] .signup input{color:#fff !important;background:transparent !important;font-weight:500 !important}
.news[style*="background-image"] .signup input::placeholder{color:#fff !important;opacity:.75}
.news[style*="background-image"] .signup button{color:#fff !important}
.news[style*="background-image"] .terms-note,.news[style*="background-image"] .terms-note a{color:rgba(255,255,255,.85) !important}
.news .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.news-copy{}
.news h2{
  font-size:clamp(24px,4vw,44px) !important;
  letter-spacing:-.025em !important;
  font-weight:700 !important;
  line-height:1.05 !important;
  margin-bottom:10px !important;
}
.news p{
  font-size:13px !important;
  color:rgba(0,0,0,.5) !important;
  margin:0 !important;
  max-width:none !important;
  letter-spacing:.01em;
}
.news-form{display:flex;flex-direction:column;gap:10px}
.news .signup{
  max-width:100% !important;
  margin:0 !important;
  border-bottom:1.5px solid #000 !important;
}
.news .signup input{
  font-size:16px !important;
  padding-top:14px !important;
  padding-bottom:14px !important;
  padding-left:0 !important;
  padding-right:8px !important;
  -webkit-padding-start:0 !important;
  margin-left:0 !important;
  text-indent:0 !important;
}
.news .signup button{
  font-size:10px !important;font-weight:700 !important;
  letter-spacing:.18em !important;text-transform:uppercase !important;
  white-space:nowrap;
}
.news .terms-note{font-size:10px !important;color:rgba(0,0,0,.35) !important;margin:0 !important;padding:0 !important;text-align:left !important}
.news .terms-note a{color:rgba(0,0,0,.45)}

@media(max-width:640px){
  .news .wrap{grid-template-columns:1fr;gap:28px}
}

/* ── Hero: real photo background ─────────────────────────── */
.sf-hero-img{
  background-image: url('/assets/mockhomepage.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Hide the old icon placeholder */
.sf-hero-bg{display:none !important}

/* Text readable over photo — white with a soft shadow */
.sf-hero-img .sf-hero-content h1{
  color:#fff;
  text-shadow:none;
}
/* Inverted button so it pops on a dark photo */
.sf-hero-btn{
  background: transparent !important;
  color: var(--hero-text-color, #fff) !important;
  border: 1.5px solid var(--hero-text-color, #fff) !important;
  font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif !important;
  font-size: clamp(13px,1.4vw,17px) !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
  padding: 11px 28px !important;
  transition: background .15s, color .15s, border-color .15s !important;
}
.sf-hero-btn:hover{
  background: var(--hero-text-color, #fff) !important;
  color: var(--hero-text-inv, #111) !important;
  opacity: 1 !important;
}

/* ============================================================
   Adaptive nav — data-nav-theme set by JS pixel sampling
   ============================================================ */

/* Dark image behind nav → white text */
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-links a,
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-shop-btn,
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-r a,
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-icon-btn,
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-r select,
nav[data-nav-theme="dark"]:not(.nav-solid) #cartc
  { color:rgba(255,255,255,.92) !important }

nav[data-nav-theme="dark"]:not(.nav-solid) .nav-ham span
  { background:#fff !important }

nav[data-nav-theme="dark"]:not(.nav-solid) .nav-icon
  { filter:none !important }

nav[data-nav-theme="dark"]:not(.nav-solid) .nav-links a:hover,
nav[data-nav-theme="dark"]:not(.nav-solid) .nav-shop-btn:hover
  { color:#fff !important; opacity:1 !important }

/* Light image behind nav → black text */
nav[data-nav-theme="light"]:not(.nav-solid) .nav-links a,
nav[data-nav-theme="light"]:not(.nav-solid) .nav-shop-btn,
nav[data-nav-theme="light"]:not(.nav-solid) .nav-r a,
nav[data-nav-theme="light"]:not(.nav-solid) .nav-icon-btn,
nav[data-nav-theme="light"]:not(.nav-solid) .nav-r select,
nav[data-nav-theme="light"]:not(.nav-solid) #cartc
  { color:rgba(0,0,0,.75) !important }

nav[data-nav-theme="light"]:not(.nav-solid) .nav-ham span
  { background:#000 !important }

nav[data-nav-theme="light"]:not(.nav-solid) .nav-icon
  { filter:brightness(0) !important }

/* Solid nav always stays black (overrides both) */
nav.nav-solid .nav-links a,
nav.nav-solid .nav-shop-btn,
nav.nav-solid .nav-icon-btn,
nav.nav-solid .nav-r a,
nav.nav-solid .nav-r select,
nav.nav-solid #cartc
  { color:rgba(0,0,0,.75) !important }

nav.nav-solid .nav-ham span   { background:#000 !important }
nav.nav-solid .nav-icon        { filter:brightness(0) !important }

/* Fix: data-nav-theme rules need higher specificity than body.is-home overrides */
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-links a,
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-shop-btn,
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-r a,
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-icon-btn,
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-r select,
body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) #cartc
  { color:rgba(255,255,255,.92) !important }

body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-ham span
  { background:#fff !important }

body.is-home nav[data-nav-theme="dark"]:not(.nav-solid) .nav-icon
  { filter:none !important }

body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-links a,
body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-shop-btn,
body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-r a,
body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-icon-btn,
body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-r select,
body.is-home nav[data-nav-theme="light"]:not(.nav-solid) #cartc
  { color:rgba(0,0,0,.75) !important }

body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-ham span
  { background:#000 !important }

body.is-home nav[data-nav-theme="light"]:not(.nav-solid) .nav-icon
  { filter:brightness(0) !important }

/* ============================================================
   Men / Women gender split — two equal halves
   ============================================================ */
.sf-gender-split{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--line);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sf-gender-half{
  position:relative;
  aspect-ratio:3/4;
  display:flex;flex-direction:column;
  align-items:flex-start;justify-content:flex-end;
  padding:28px 32px;
  text-decoration:none;color:#000;
  background:#f0efeb;
  overflow:hidden;transition:background .2s;
}
.sf-gender-half:hover{background:#e8e6e0}
/* gradient overlay when a background image is set — keeps text legible */
.sf-gender-half[style*="background-image"]::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.55) 0%,rgba(0,0,0,.08) 55%,transparent 100%);
  pointer-events:none;
}
.sf-gender-half[style*="background-image"]:hover{background-color:transparent}
.sf-gender-half[style*="background-image"] .sf-gender-text h2{color:#fff}
.sf-gender-half[style*="background-image"] .sf-gender-text span{color:#fff;opacity:.9}
.sf-gender-bg{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:clamp(72px,12vw,140px);
  color:rgba(0,0,0,.07);pointer-events:none;
}
.sf-gender-text{position:relative;z-index:1}
.sf-gender-text h2{
  font-size:clamp(32px,5vw,64px);
  font-weight:700;letter-spacing:-.03em;line-height:.95;
  margin-bottom:10px;
}
.sf-gender-text span{
  font-size:10px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  opacity:.6;
}
.sf-gender-half:hover .sf-gender-text span{opacity:1}

@media(max-width:540px){
  .sf-gender-split{grid-template-columns:1fr}
  .sf-gender-half{aspect-ratio:4/3}
}

/* ============================================================
   Meridian collection page
   ============================================================ */
.meridian-hero{border-bottom:1px solid var(--line)}
.meridian-hero h1{
  font-size:clamp(60px,12vw,140px) !important;
  letter-spacing:-.04em !important;
}
.meridian-sub{
  font-size:14px;line-height:1.8;
  color:rgba(0,0,0,.5);max-width:44ch;
  margin-top:18px;
}

/* Feature blocks */
.meridian-feature{
  display:grid;grid-template-columns:1.1fr .9fr;
  min-height:520px;
  border-bottom:1px solid var(--line);
}
.meridian-feature-rev{grid-template-columns:.9fr 1.1fr}
.meridian-feature-rev .meridian-feature-img{order:2}
.meridian-feature-rev .meridian-feature-text{order:1;border-right:1px solid var(--line);border-left:none}
.meridian-feature-img{
  background:#e8e7e2;
  display:flex;align-items:center;justify-content:center;
  font-size:clamp(80px,12vw,140px);
  color:rgba(0,0,0,.1);
}
.meridian-feature-text{
  padding:64px 52px;
  display:flex;flex-direction:column;justify-content:flex-end;
  border-left:1px solid var(--line);
}
.meridian-feature-text h2{
  font-size:clamp(28px,4vw,52px);
  letter-spacing:-.025em;font-weight:700;
  line-height:.96;margin-bottom:16px;
}
.meridian-feat-desc{
  font-size:13px;line-height:1.8;color:rgba(0,0,0,.5);
  margin-bottom:28px;max-width:38ch;
}
.meridian-feature-text .btn{align-self:flex-start}

@media(max-width:820px){
  .meridian-feature,.meridian-feature-rev{
    grid-template-columns:1fr;min-height:auto;
  }
  .meridian-feature-rev .meridian-feature-img{order:0}
  .meridian-feature-rev .meridian-feature-text{order:0;border-right:none;border-left:none;border-top:1px solid var(--line)}
  .meridian-feature-img{min-height:280px}
  .meridian-feature-text{border-left:none;border-top:1px solid var(--line);padding:40px 24px}
}

/* ── New arrivals: full-bleed edge to edge ─────────────────── */
.home-arrivals-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  column-gap:1px !important;
  row-gap:40px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  /* Name + price below each card still need side padding */
}
.home-arrivals-grid .meta{padding:0 12px}
.home-arrivals-grid .thumb{border-radius:0}

/* ── Men/Women split: horizontal landscape tiles ──────────── */
.sf-gender-split{border-top:1px solid var(--line)}
.sf-gender-half{
  aspect-ratio:5/2 !important;   /* wide landscape, short height */
  padding:24px 36px !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
}
.sf-gender-bg{font-size:clamp(52px,8vw,110px) !important}
.sf-gender-text h2{
  font-size:clamp(24px,3.5vw,48px) !important;
  margin-bottom:6px !important;
}
.sf-gender-text span{font-size:10px !important}

@media(max-width:820px){
  .home-arrivals-grid{grid-template-columns:repeat(2,1fr) !important}
  .sf-gender-half{aspect-ratio:3/1 !important}
}
@media(max-width:480px){
  .home-arrivals-grid{grid-template-columns:repeat(2,1fr) !important}
  .sf-gender-half{aspect-ratio:5/3 !important}
}

/* ============================================================
   New arrivals carousel
   ============================================================ */

/* Section wrapper — full bleed */
.arrivals-section{width:100%}

/* Header row — New arrivals LEFT, arrows+link RIGHT, true edges */
.arrivals-hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:48px 24px 20px;
  border-top:1px solid rgba(0,0,0,.1);
  max-width:none;  /* full bleed */
}
.arrivals-title{
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.18em !important;
  text-transform:uppercase !important;
  color:rgba(0,0,0,.4) !important;
}
.arrivals-ctrls{display:flex;align-items:center;gap:8px}

/* Arrow buttons */
.arr-btn{
  width:34px;height:34px;
  background:none;
  border:1px solid rgba(0,0,0,.18);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:#000;transition:border-color .12s,opacity .12s;flex-shrink:0;
}
.arr-btn:hover:not(:disabled){border-color:#000}
.arr-btn:disabled{opacity:.2;cursor:not-allowed}

/* View all link */
.arr-viewall{
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:.01em;
  text-transform:none;
  color:#111;
  background:#fff;
  border:1.5px solid rgba(0,0,0,.35);
  padding:9px 22px;
  text-decoration:none;
  display:inline-block;
  transition:background .15s,border-color .15s,color .15s;
}
.arr-viewall:hover{background:#111;color:#fff !important;border-color:#111}

/* Viewport clips the track */
.arrivals-vp{overflow:hidden;width:100%}

/* Track: flex row, slides horizontally */
.arrivals-track{
  display:flex;
  transition:transform .42s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}

/* Each card: exactly 25% of viewport = 4 per page */
.arr-card{
  flex:0 0 25%;
  min-width:0;
  cursor:pointer;
}
.arr-card .thumb{
  aspect-ratio:3/4;
  background:#e8e7e3;
  position:relative;overflow:hidden;
  border-radius:0;
  display:flex;align-items:center;justify-content:center;
}
.arr-card .thumb[data-cat="outerwear"]  {background:#dddbd5}
.arr-card .thumb[data-cat="tops"]       {background:#e4e3de}
.arr-card .thumb[data-cat="bottoms"]    {background:#e2e1db}
.arr-card .thumb[data-cat="accessories"]{background:#e6e5e0}
.arr-card:hover .thumb{filter:brightness(.95)}
.arr-card .new{position:absolute;top:10px;left:10px;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#fff;background:#000;padding:3px 8px}
.arr-card .add{position:absolute;left:0;right:0;bottom:0;font-family:inherit;font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#fff;background:#000;border:none;padding:12px;cursor:pointer;opacity:0;transform:translateY(4px);transition:.2s}
.arr-card:hover .add{opacity:1;transform:translateY(0)}
.arr-card .meta{display:flex;flex-direction:column;gap:5px;margin:12px 0 0;padding:0 12px}
.arr-card .pname{font-size:12px;font-weight:500;color:#000;letter-spacing:-.005em}
.arr-card .price{font-size:12px;color:rgba(0,0,0,.45)}

@media(max-width:820px){
  .arr-card{flex:0 0 50%}
  .arrivals-hd{padding:36px 16px 16px}
}
@media(max-width:480px){
  .arr-card{flex:0 0 50%}
}

/* ============================================================
   Carousel card names — more space, more readable
   ============================================================ */
.arr-card .meta{
  margin:18px 0 0 !important;
  padding:0 14px !important;
  gap:6px !important;
}
.arr-card .pname{
  font-size:13px !important;
  font-weight:500 !important;
  letter-spacing:-.01em !important;
  line-height:1.35 !important;
}
.arr-card .price{
  font-size:12px !important;
  color:rgba(0,0,0,.45) !important;
}

/* ============================================================
   Technical / scientific spec bars
   ============================================================ */
.pdp-specs{
  margin:28px 0;
  padding:20px 0 0;
  border-top:1px solid rgba(0,0,0,.08);
}
.pdp-specs-title{
  font-size:9px !important;
  font-weight:700 !important;
  letter-spacing:.22em !important;
  text-transform:uppercase !important;
  color:rgba(0,0,0,.28) !important;
  margin-bottom:18px !important;
  display:flex;align-items:center;gap:10px;
}
.pdp-specs-title::after{
  content:'';flex:1;height:1px;background:rgba(0,0,0,.08);
}

.spec-bar{margin-bottom:14px}
.spec-bar:last-child{margin-bottom:0}
.spec-bar-row{
  display:flex;justify-content:space-between;
  align-items:baseline;margin-bottom:5px;
}
.spec-bar-label{
  font-size:9px !important;
  font-weight:700 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  color:rgba(0,0,0,.38) !important;
}
.spec-bar-val{
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.04em !important;
  font-variant-numeric:tabular-nums;
  /* color set inline per metric */
}
.spec-bar-track{
  height:3px !important;
  background:rgba(0,0,0,.07) !important;
  position:relative;overflow:hidden;
}
.spec-bar-fill{
  height:100%;
  transform-origin:left;
  transition:width .55s cubic-bezier(.4,0,.2,1) .08s;
  /* background set inline per metric color */
}

/* ============================================================
   Stock badge — no green dot, ALL CAPS
   ============================================================ */
.stock-badge{
  font-size:9px !important;
  font-weight:700 !important;
  letter-spacing:.2em !important;
  text-transform:uppercase !important;
  margin-bottom:18px !important;
  display:inline-block;
}
.stock-in { color:rgba(0,0,0,.5) }
.stock-out{ color:#B91C1C }
/* Hide old dot */
.stock-dot{display:none !important}

/* ============================================================
   Current Season badge — all caps, clean
   ============================================================ */
.product-badge-inline{
  font-size:8px !important;
  letter-spacing:.14em !important;
  padding:2px 7px !important;
  background:#000 !important;
  color:#fff !important;
  text-transform:uppercase !important;
  white-space:nowrap;
}
/* Card .new badge */
.new{
  font-size:8px !important;
  letter-spacing:.1em !important;
  text-transform:uppercase !important;
  white-space:nowrap !important;
  padding:3px 7px !important;
}

/* ============================================================
   Spec bars — single monochrome colour, cleaner design
   ============================================================ */
.spec-bar-fill { background: #111 !important; }
.spec-bar-val  { color: rgba(0,0,0,.55) !important; font-size:12px !important; }
.spec-bar-label{ color: rgba(0,0,0,.35) !important; }
.spec-bar-track{ height:2px !important; background:rgba(0,0,0,.08) !important; }
.spec-bar      { margin-bottom:16px !important; }
.pdp-specs     { margin:24px 0 !important; }
.pdp-specs-title{
  font-size:9px !important;letter-spacing:.22em !important;
  color:rgba(0,0,0,.25) !important;margin-bottom:20px !important;
}

/* ============================================================
   Product names — bigger, bolder, more breathing room
   ============================================================ */
.pname{
  font-size:14px !important;
  font-weight:700 !important;
  letter-spacing:-.02em !important;
  line-height:1.25 !important;
  color:#000 !important;
}
.price{ font-size:13px !important; color:rgba(0,0,0,.4) !important; }
.meta{
  margin:16px 0 0 !important;
  gap:6px !important;
  padding:0 !important;
}

/* Carousel card names — match above + side padding */
.arr-card .pname{
  font-size:14px !important;
  font-weight:700 !important;
  letter-spacing:-.02em !important;
}
.arr-card .meta{
  margin:16px 0 20px !important;
  padding:0 14px !important;
  gap:6px !important;
}

/* ============================================================
   Carousel — 6 per page, smaller tiles = more visible
   ============================================================ */
.arr-card{ flex:0 0 calc(100% / 6) !important; }

@media(max-width:1024px){ .arr-card{ flex:0 0 25% !important; } }
@media(max-width:640px) { .arr-card{ flex:0 0 50% !important; } }

/* ============================================================
   General spacing cleanup
   ============================================================ */

/* Remove excessive top padding on arrivals header */
.arrivals-hd{ padding:40px 24px 16px !important; }

/* Product detail — tighter stock badge */
.stock-badge{ margin-bottom:14px !important; }

/* Product detail — less space between price and stock */
.pdp-price{ margin-bottom:10px !important; }

/* Grid row gap — keep generous but not excessive */
.grid{row-gap:36px !important}

/* Category tiles on home — slightly more compact */
.sf-cats{ border-top:1px solid var(--line) }

/* Shop panel spacing */
.shop-panel-inner{ padding:32px 0 36px !important; }

/* Spec bar track — no gap at bottom of section */
.pdp-specs .spec-bar:last-child{ margin-bottom:0 !important; }

/* Product detail accordions — tighter */
.detail-item summary{ padding:14px 0 !important; }

/* Current Season — 6-product static grid, full bleed */
.cs-grid{
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:1px !important;
  width:100%;
  margin-bottom:0;
}
@media(max-width:1024px){ .cs-grid{grid-template-columns:repeat(3,1fr) !important} }
@media(max-width:640px) { .cs-grid{grid-template-columns:repeat(2,1fr) !important} }

/* Remove old carousel-only rules */
.arr-btn,.arrivals-vp,.arrivals-track,.arr-card{display:none !important}

/* Current Season header — mixed case, tighter spacing */
.arrivals-hd{
  padding:28px 24px 14px !important;
  border-top:1px solid rgba(0,0,0,.1) !important;
  align-items:baseline !important;
}
.arrivals-title{
  font-size:15px !important;
  font-weight:600 !important;
  letter-spacing:-.01em !important;
  text-transform:none !important;
  color:#000 !important;
}
.arr-viewall{
  font-size:clamp(13px,1.4vw,17px) !important;
  color:#000 !important;
  font-weight:700 !important;
  letter-spacing:-.02em !important;
  text-transform:none !important;
  padding:11px 28px !important;
  border-width:1.5px !important;
}

/* Space below header before products */
.cs-grid{ margin-top:16px !important; }

/* Product name — shifted right with consistent left padding */
.cs-grid .meta,
.cs-grid .card .meta{
  padding:0 10px 16px 14px !important;
  margin-top:12px !important;
}
/* Also apply to all grid cards globally for consistency */
.grid .meta{
  padding:0 8px 0 12px !important;
  margin-top:12px !important;
}

/* Current Season — large editorial heading filling the space */
.arrivals-hd{
  padding:36px 24px 20px !important;
  align-items:flex-end !important;
}
.arrivals-title{
  font-size:clamp(36px,5vw,72px) !important;
  font-weight:700 !important;
  letter-spacing:-.03em !important;
  text-transform:none !important;
  color:#000 !important;
  line-height:.95 !important;
}

/* Nav elements — slightly bigger and more visible */
.nav-links a,
.nav-shop-btn{font-size:12px !important;letter-spacing:.08em !important}

.nav-r select{font-size:12px !important;letter-spacing:.06em !important}

.nav-icon-btn svg{width:20px !important;height:20px !important}

#cartc{font-size:12px !important;font-weight:700 !important}

/* Slightly more opacity so everything is easier to see */
body:not(.is-home) .nav-links a,
body:not(.is-home) .nav-shop-btn{color:rgba(0,0,0,.85) !important}
body:not(.is-home) .nav-r a,
body:not(.is-home) .nav-icon-btn{color:rgba(0,0,0,.75) !important;opacity:1 !important}
body:not(.is-home) .nav-r select{color:rgba(0,0,0,.75) !important}
body:not(.is-home) #cartc{color:rgba(0,0,0,.85) !important}

/* Nav — bigger again */
.nav-links a,
.nav-shop-btn{font-size:14px !important;letter-spacing:.04em !important}
.nav-r select{font-size:13px !important}
.nav-icon-btn svg{width:22px !important;height:22px !important}
#cartc{font-size:13px !important}
.nav-r{gap:20px !important}
.nav-l .nav-links{gap:32px !important}

/* Footer — readable text on dark background */
footer .fcol a       { color:rgba(255,255,255,.82) !important }
footer .fcol a:hover { color:#fff !important }
footer .fcol h4      { color:rgba(255,255,255,.55) !important }
footer .foot-tagline { color:rgba(255,255,255,.55) !important }
footer .fbot,
footer .fbot .legal a{ color:rgba(255,255,255,.55) !important }
footer .fbot .legal a:hover{ color:#fff !important }
footer .foot-nl-label{ color:#fff !important }
footer .foot-nl-terms,
footer .foot-nl-terms a{ color:rgba(255,255,255,.6) !important }
footer .foot-newsletter .signup input{ color:#fff !important }
footer .foot-newsletter .signup input::placeholder{ color:rgba(255,255,255,.45) !important }
footer .foot-newsletter .signup button{ color:rgba(255,255,255,.9) !important }
footer .foot-newsletter .signup{ border-bottom-color:rgba(255,255,255,.4) !important }

/* Footer — pure black text on light background */
footer,
footer *{color:#000 !important}
footer .fcol h4{color:rgba(0,0,0,.4) !important;font-size:11px !important;letter-spacing:.16em !important}
footer .fcol a{color:rgba(0,0,0,.7) !important;font-size:13px !important}
footer .fcol a:hover{color:#000 !important}
footer .foot-tagline{color:rgba(0,0,0,.45) !important}
footer .fbot,
footer .fbot .legal a{color:rgba(0,0,0,.45) !important;font-size:11px !important}
footer .fbot .legal a:hover{color:#000 !important}
footer .foot-nl-label{color:#000 !important;font-size:clamp(16px,2vw,22px) !important}
footer .foot-nl-terms{color:rgba(0,0,0,.45) !important;font-size:11px !important}
footer .foot-nl-terms a{color:rgba(0,0,0,.55) !important}
footer .foot-newsletter .signup{border-bottom:1.5px solid rgba(0,0,0,.25) !important}
footer .foot-newsletter .signup input{color:#000 !important;font-size:14px !important}
footer .foot-newsletter .signup input::placeholder{color:rgba(0,0,0,.3) !important}
footer .foot-newsletter .signup button{color:#000 !important}
footer .footer-logo{filter:brightness(0) !important}

/* Currency dropdown — not bold */
#cur{font-weight:400 !important}

/* Sold-out size buttons on product page */
.pdp-sz-sold{
  opacity:.3 !important;
  cursor:not-allowed !important;
  text-decoration:line-through !important;
  border-color:rgba(0,0,0,.1) !important;
}
.pdp-sz-sold:hover{
  border-color:rgba(0,0,0,.1) !important;
  background:none !important;
}

/* ── Logo tint system (mask-image + background-color) ───────── */

/* Footer logo — use footer .footer-logo for higher specificity to beat line 581/799/2480 */
footer .footer-logo {
  display: block !important;
  width: 160px !important;
  height: 44px !important;        /* beats height:auto !important at lower specificity */
  background-color: #000 !important;
  -webkit-mask-image: url('/assets/logo-white.png') !important;
  -webkit-mask-size: contain !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: left center !important;
  mask-image: url('/assets/logo-white.png') !important;
  mask-size: contain !important;
  mask-repeat: no-repeat !important;
  mask-position: left center !important;
  filter: none !important;
}

/* Nav icon: CSS-variable driven — transparent state uses admin color, solid always black */
:root { --nav-hero-logo: #fff; --nav-hero-text: rgba(255,255,255,.9); }
body.is-home nav:not(.nav-solid) .nav-icon { background-color: var(--nav-hero-logo) !important; }
body.is-home nav.nav-solid .nav-icon       { background-color: #000 !important; }
body:not(.is-home) .nav-icon               { background-color: #000 !important; }
nav.nav-solid .nav-icon                    { background-color: #000 !important; }

/* Nav text: transparent state — includes .nav-r a so search/profile/cart icons change too */
body.is-home nav:not(.nav-solid) .nav-shop-btn,
body.is-home nav:not(.nav-solid) #cur,
body.is-home nav:not(.nav-solid) .nav-icon-btn,
body.is-home nav:not(.nav-solid) .nav-r a,
body.is-home nav:not(.nav-solid) .nav-links a,
body.is-home nav:not(.nav-solid) #cartc { color: var(--nav-hero-text) !important; }

/* Footer with background image: force white logo */
footer[style*="background-image"] .footer-logo { background-color: #fff !important; }

/* ── Separator: newsletter → footer — solid white 1px line ── */
.news { border-bottom: none !important; }
footer { border-top: 1px solid #fff !important; }

/* ── Current Season text color variable ───────────────────────────────────
   --cs-text is set via JS from content.json.
   Comes last so it wins over all earlier !important rules.            */
:root { --cs-text: #000; }
.arrivals-title                  { color: var(--cs-text) !important; }
.arr-viewall                     { color: var(--cs-text) !important;
                                   border-color: var(--cs-text) !important;
                                   background: transparent !important; }
.arr-viewall:hover                { background: var(--cs-text) !important; color: var(--cs-text-inv, #fff) !important; border-color: var(--cs-text) !important; }
.cs-section .cs-grid .pname,
.cs-section .cs-grid .card .pname{ color: var(--cs-text) !important; }
.cs-section .cs-grid .price,
.cs-section .cs-grid .card .price{ color: var(--cs-text) !important; opacity: .65; }

/* ── Solid nav: always black text — highest priority, last in file ── */
nav.nav-solid .nav-shop-btn,
nav.nav-solid .nav-links a,
nav.nav-solid .nav-icon-btn,
nav.nav-solid .nav-r a,
nav.nav-solid .nav-r select,
nav.nav-solid #cartc             { color: #000 !important; }
nav.nav-solid .nav-ham span      { background-color: #000 !important; }

/* ── Footer logo: slightly larger, tagline hidden ── */
footer .footer-logo {
  width:  300px !important;
  height: 82px  !important;
}
footer .foot-tagline { display: none !important; }
footer .fcol-brand {
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* ── Newsletter: heading + subtext stacked on left, form on right ── */
.news { padding: 60px 0 !important; }
.news .wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 60px !important;
}
.news-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
  flex-shrink: 0;
}
.news-form { margin-left: auto !important; }
.news h2 {
  font-size: clamp(24px,4vw,44px) !important;
  margin-bottom: 0 !important;
}
/* Subtext: medium weight so it reads clearly */
.news p {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(0,0,0,.6) !important;
  margin: 0 !important;
  letter-spacing: .01em !important;
}
/* Email input: thicker, more readable */
.news .signup { border-bottom-width: 2px !important; }
.news .signup input {
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 14px 6px !important;
}
.news .signup input::placeholder { font-weight: 400 !important; }

/* ── Footer bottom: legal links pinned to the right ── */
footer .fbot { justify-content: space-between !important; }
footer .fbot .legal { margin-left: auto !important; }

/* ── Nav components: larger sizes ── */
.nav-shop-btn, .nav-links a      { font-size: 15px !important; letter-spacing: .04em !important; }
.nav-r select                    { font-size: 14px !important; letter-spacing: .03em !important; }
.nav-icon-btn svg                { width: 24px !important; height: 24px !important; }
#cartc                           { font-size: 14px !important; font-weight: 700 !important; }
.nav-r                           { gap: 24px !important; }
.nav-l .nav-links                { gap: 36px !important; }

/* ── Shop button: always visible on solid nav — maximum specificity ── */
html body nav.nav-solid .nav-shop-btn,
html body.is-home nav.nav-solid .nav-shop-btn {
  color: #111 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Admin-controlled CSS variables ─────────────────────────────── */
:root {
  --hero-text-color: #fff;
  --hero-font-size: clamp(52px,11vw,140px);
  --add-btn-bg: #111;
  --add-btn-color: #fff;
}
.sf-hero-img .sf-hero-content h1 {
  color: var(--hero-text-color) !important;
  font-size: var(--hero-font-size) !important;
}
.add {
  background: var(--add-btn-bg) !important;
  color: var(--add-btn-color) !important;
}
.arr-card .add {
  background: var(--add-btn-bg) !important;
  color: var(--add-btn-color) !important;
}

/* ── Quick size picker (shown on card hover → Add to bag click) ── */
.size-pick {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; z-index: 20; padding: 12px;
}
.size-pick-label {
  font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}
.size-pick-row {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.size-pick-btn {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
  background: transparent; border: 1px solid rgba(255,255,255,.45);
  padding: 6px 10px; cursor: pointer; transition: background .12s;
  min-width: 38px; text-align: center;
}
.size-pick-btn:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.size-pick-cancel {
  font-size: 9px; color: rgba(255,255,255,.4); cursor: pointer;
  letter-spacing: .1em; text-transform: uppercase; background: none; border: none;
  margin-top: 2px;
}
.size-pick-cancel:hover { color: rgba(255,255,255,.8); }

/* ── Tile text color variables ─────────────────────────────────── */
:root { --gender-tile-text: #000; --cat-tile-text: #fff; --add-btn-text: #fff; }
.sf-gender-text h2  { color: var(--gender-tile-text) !important; }
.sf-gender-text span{ color: var(--gender-tile-text) !important; opacity: .85; }
.sf-cat h3          { color: var(--cat-tile-text) !important; }
.add, .arr-card .add{ color: var(--add-btn-text) !important; }

/* ── Nav logo: final override — filter:none beats line 1747 brightness(0) ── */
/* Transparent homepage: use admin color (background-color via mask), no filter */
body.is-home nav:not(.nav-solid) .nav-icon {
  filter: none !important;
  background-color: var(--nav-hero-logo, #fff) !important;
}
/* Solid nav + all other pages: black, no filter needed (background-color #000 via mask) */
body.is-home nav.nav-solid .nav-icon,
body:not(.is-home) .nav-icon,
nav.nav-solid .nav-icon {
  filter: none !important;
  background-color: #000 !important;
}

/* ── Hero headline text max-width (Instagram-style wrapping slider) ── */
:root { --hero-text-maxwidth: 14ch; }
.sf-hero-content h1 { max-width: var(--hero-text-maxwidth) !important; }

/* ============================================================
   MOBILE POLISH — phone-perfection pass
   ============================================================ */
@media (max-width: 820px) {
  /* iOS Safari auto-zooms on any input/select/textarea < 16px when focused.
     Force 16px on touch widths so focusing a field never zooms the page. */
  input, select, textarea,
  .form-r2 input, .form-r2 select,
  .foot-newsletter .signup input,
  .signup input,
  .cform input, .cform textarea {
    font-size: 16px !important;
  }

  /* Comfortable tap targets (Apple/Google guidance: ~44px) */
  .nav-r a, .nav-icon-btn, .nav-shop-btn, #burger,
  .fcol a, .fbot .legal a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .fcol a { min-height: 38px; }   /* footer links: a touch tighter, still tappable */

  /* Momentum scrolling for any horizontal carousels */
  .arr-row, .arr-track, [style*="overflow-x"] {
    -webkit-overflow-scrolling: touch;
  }
}

/* Safety net: never let a long unbreakable word push the layout wider than the screen */
h1, h2, h3, p, a, span, li, td { overflow-wrap: break-word; }
