/* ─────────────────────────────────────────────
   Мужская линия — стили сайта
   Display: Cormorant Garamond  ·  UI/Body: Inter
   Warm paper palette · generous whitespace
───────────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg:            #FFFFFF;
  --surface:       #F4F4F3;
  --surface-soft:  #FAFAF9;
  --surface-warm:  #EDEDEB;
  --surface-dark:  #121415;

  /* Ink */
  --text:          #121415;
  --text-soft:     #383E44;
  --text-muted:    #6C747B;
  --text-faint:    #9BA2A8;
  --text-on-dark:  #FFFFFF;

  /* Lines */
  --border:        #E5E5E3;
  --border-strong: #C6C8C9;

  /* Status */
  --sale:          #A03530;

  /* Type */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Inter', system-ui, -apple-system, sans-serif;  /* мужская линия: одна гарнитура */

  /* Layout */
  --max-w:  1440px;
  --gutter: 32px;

  /* Motion */
  --ease-out:  cubic-bezier(.2,.65,.35,1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* === RESET === */
[hidden] { display: none !important; } /* override any display:flex/grid that beats UA stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; }

/* === ACCENT TYPE === */
.display-italic,
.display-serif {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

/* === ORNAMENT (legacy) === */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--text-muted); margin: 0; padding: 0;
}
.ornament::before, .ornament::after {
  content: ''; width: 36px; height: 1px;
  background: currentColor; opacity: 0.4;
}
.ornament-dot {
  width: 5px; height: 5px; background: currentColor;
  transform: rotate(45deg); display: inline-block; opacity: 0.55;
}
.ornament--sm::before, .ornament--sm::after { width: 24px; }
.ornament--inverse { color: rgba(250,249,246,.6); }

/* === A11Y === */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 10px 16px; background: var(--text); color: var(--bg);
  font-size: 13px; z-index: 9999;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 1.5px solid var(--text); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.announce {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px var(--gutter);
  text-align: center;
  font-weight: 500;
}
.announce-link {
  border-bottom: 1px solid rgba(250,249,246,.4);
  padding-bottom: 1px;
  transition: border-color 240ms;
}
.announce-link:hover { border-color: var(--text-on-dark); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 76px;
  gap: 24px;
}
.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  transition: opacity 240ms;
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease-out);
}
.header-nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: background-color 240ms;
  position: relative;
}
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.4; }
.icon-btn-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--text);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.menu-trigger { display: none; }

/* ── Search overlay ───────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.55);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease-soft), visibility 280ms;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.search-overlay-inner {
  width: 100%;
  max-width: 720px;
  padding: 0 var(--gutter);
  transform: translateY(-12px);
  transition: transform 320ms var(--ease-out);
}
.search-overlay.is-open .search-overlay-inner {
  transform: translateY(0);
}
.search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 18px 22px;
}
.search-form-icon {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.search-form-input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: clamp(20px, 3vw, 30px);
  font-style: normal;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 400;
  padding: 4px 0;
  min-width: 0;
}
.search-form-input::placeholder { color: var(--text-faint); }
.search-form-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background-color 200ms, color 200ms;
}
.search-form-close:hover { background: var(--surface); color: var(--text); }
.search-overlay-hint {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.7);
  margin-top: 20px;
  font-weight: 500;
}

/* ── Catalog dropdown ─────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  transition: transform 240ms var(--ease-out);
  flex-shrink: 0;
}
.nav-dropdown.is-open .nav-dropdown-trigger svg,
.nav-dropdown:hover   .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -28px;
  min-width: 320px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms var(--ease-soft),
              transform 200ms var(--ease-soft),
              visibility 200ms;
  z-index: 110;
  box-shadow: 0 12px 40px rgba(26,23,20,.08);
}
.nav-dropdown:hover   .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* "Все товары" row at top of panel */
.nav-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 16px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text) !important;
  transition: opacity 200ms;
}
.nav-dropdown-all:hover { opacity: 0.55; }
.nav-dropdown-all svg { flex-shrink: 0; }

/* Category grid */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  padding: 4px 8px 8px;
}
.nav-dropdown-grid a {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  padding: 11px 14px;
  transition: color 180ms, background-color 180ms;
}
.nav-dropdown-grid a:hover {
  color: var(--text);
  background: var(--surface);
}

/* Small bridge between trigger and panel (prevents gap closing dropdown) */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

/* ══════════════════════════════════════════
   HERO — Editorial split
══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 7vw, 104px);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 32px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--text-muted);
}
.hero-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-title em {
  font-style: normal;
  font-weight: 400;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, var(--surface-warm) 0%, var(--surface) 60%, var(--surface-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-mark {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(180px, 30vw, 360px);
  line-height: 1;
  color: rgba(26, 23, 20, 0.06);
  user-select: none;
  pointer-events: none;
}
.hero-meta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(250, 249, 246, .9);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-meta span {
  width: 4px;
  height: 4px;
  background: var(--text);
  border-radius: 50%;
  display: inline-block;
}
.hero-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 22px;
  color: var(--text);
  opacity: 0.6;
  line-height: 1;
  font-weight: 400;
}

/* ══════════════════════════════════════════
   BUTTONS / LINKS
══════════════════════════════════════════ */
.btn-primary {
  height: 52px;
  padding: 0 32px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 240ms, transform 160ms;
  border: 1px solid var(--text);
}
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary:hover { background: var(--text-soft); border-color: var(--text-soft); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary[disabled],
.btn-primary[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.btn-secondary {
  height: 52px;
  padding: 0 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 240ms, color 240ms;
}
.btn-secondary svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-secondary:hover { background: var(--text); color: var(--bg); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap 280ms var(--ease-out);
}
.link-arrow:hover { gap: 16px; }
.link-arrow svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   USP STRIP — compact bullets right after hero
══════════════════════════════════════════ */
.usp-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-strip-list {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  list-style: none;
}
.usp-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  flex: 1;
  max-width: 260px;
  padding: 0 24px;
}
.usp-strip-item + .usp-strip-item {
  border-left: 1px solid var(--border);
}
.usp-strip-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text);
  stroke-width: 1.4;
}

@media (max-width: 640px) {
  .usp-strip { padding: 22px 0; }
  .usp-strip-list { flex-direction: column; gap: 16px; }
  .usp-strip-item { flex-direction: row; text-align: left; max-width: 100%; padding: 0; border-left: none; }
  .usp-strip-item + .usp-strip-item { border-left: none; border-top: 1px solid var(--border); padding-top: 16px; }
  .usp-strip-item svg { width: 18px; height: 18px; }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: marquee 48s linear infinite;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 64px;
  color: var(--text-on-dark);
}
.marquee-item::after {
  content: '✦';
  font-size: 0.4em;
  color: rgba(250,249,246,.55);
  font-style: normal;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: clamp(96px, 12vw, 144px) 0; }
.section--tight { padding: clamp(72px, 8vw, 104px) 0; }
.section--soft { background: var(--surface-soft); }
.section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.section-hd-text {
  display: flex;
  flex-direction: column;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  letter-spacing: -0.012em;
  line-height: 1.02;
  color: var(--text);
}
.section-title em { font-style: normal; font-weight: 400; }

.section-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  transition: gap 280ms var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-link:hover { gap: 14px; }
.section-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 18px;
  row-gap: 64px;
}
.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

/* ══════════════════════════════════════════
   PRODUCT CARD — placeholders
══════════════════════════════════════════ */
.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 18px;
}
.product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(140% 100% at 70% 20%, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(165deg, var(--surface-warm) 0%, var(--surface) 55%, var(--surface-soft) 100%);
  transition: transform 800ms var(--ease-out);
}
.product-card:hover .product-placeholder { transform: scale(1.025); }

.product-placeholder-mark {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  color: rgba(26, 23, 20, 0.16);
  user-select: none;
  transition: color 400ms var(--ease-out);
}
.product-card:hover .product-placeholder-mark { color: rgba(26, 23, 20, 0.24); }

.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none; /* clicks pass through to .card-link */
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--bg);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 11px;
  font-weight: 500;
  line-height: 1;
}
.product-tag--sale {
  background: var(--text);
  color: var(--bg);
}
.product-tag--soon {
  background: transparent;
  border: 1px solid var(--text);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.product-name {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 6px;
}
.product-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.product-price.is-sale { color: var(--sale); }
.product-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.product-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.product-meta-swatches {
  display: inline-flex;
  gap: 5px;
}
.product-meta-swatch {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  display: inline-block;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-link:focus-visible {
  outline: 1.5px solid var(--text);
  outline-offset: 4px;
}

/* ══════════════════════════════════════════
   CATEGORIES — editorial tiles
══════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cat-tile {
  display: block;
  position: relative;
  text-decoration: none;
}
.cat-tile-photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--surface);
}
.cat-tile-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(110% 80% at 50% 30%, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 65%),
    linear-gradient(165deg, var(--surface-warm), var(--surface) 65%, var(--surface-soft));
  transition: transform 900ms var(--ease-out);
}
.cat-tile:hover .cat-tile-placeholder { transform: scale(1.04); }
.cat-tile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 900ms var(--ease-out);
}
.cat-tile:hover .cat-tile-photo img { transform: scale(1.04); }

.cat-tile-mark {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  color: rgba(26, 23, 20, 0.12);
  text-align: center;
  padding: 0 24px;
}

.cat-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  display: flex;
  justify-content: flex-end;
}
.cat-tile-cta {
  background: var(--bg);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 280ms var(--ease-out);
}
.cat-tile:hover .cat-tile-cta { gap: 12px; }

.cat-tile-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.cat-tile-name {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--text);
}
.cat-tile-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   EDITORIAL QUOTE
══════════════════════════════════════════ */
.editorial {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: clamp(120px, 18vw, 200px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.editorial::before,
.editorial::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(40px, 8vw, 96px);
  height: 1px;
  background: rgba(250,249,246,.2);
}
.editorial::before { left: var(--gutter); }
.editorial::after  { right: var(--gutter); }

.editorial-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.editorial-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,249,246,.6);
  font-weight: 500;
  margin-bottom: 28px;
  display: block;
}
.editorial-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--text-on-dark);
}
.editorial-text-no-italic { font-style: normal; }

.editorial-author {
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,249,246,.7);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  padding: clamp(72px, 9vw, 112px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.features-grid--6 { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--text);
  stroke-width: 1.3;
}
.feature-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-top: 4px;
}
.feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
  padding: clamp(96px, 12vw, 144px) 0;
  text-align: center;
  background: var(--surface-soft);
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.newsletter-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}
.newsletter-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.newsletter-title em { font-style: normal; }
.newsletter-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--text);
  background: var(--bg);
  height: 60px;
}
.newsletter-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  padding: 0 22px;
  height: 100%;
  outline: none;
  letter-spacing: 0.01em;
}
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-btn {
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 32px;
  height: 100%;
  transition: background-color 240ms;
  flex-shrink: 0;
}
.newsletter-btn:hover { background: var(--text-soft); }
.newsletter-policy {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.newsletter-policy a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ══════════════════════════════════════════
   FOOTER — dark, refined
══════════════════════════════════════════ */
.site-footer {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding-top: clamp(80px, 10vw, 128px);
}
.site-footer .container { padding-left: var(--gutter); padding-right: var(--gutter); }

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 72px;
}
.footer-brand-name {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  color: var(--text-on-dark);
  line-height: 1;
}
.footer-brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,249,246,.65);
  max-width: 340px;
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,249,246,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: background-color 240ms, border-color 240ms;
}
.footer-social a:hover {
  background-color: rgba(250,249,246,.08);
  border-color: rgba(250,249,246,.5);
}
.footer-social svg { width: 16px; height: 16px; stroke-width: 1.4; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 14px;
  color: rgba(250,249,246,.65);
  transition: color 240ms;
}
.footer-links a:hover { color: var(--text-on-dark); }

.footer-bottom {
  border-top: 1px solid rgba(250,249,246,.12);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(250,249,246,.5);
}
.footer-legal-small {
  font-size: 11px;
  color: rgba(250,249,246,.35);
  letter-spacing: 0.02em;
  width: 100%;
  margin-top: 4px;
}
.footer-bottom a {
  border-bottom: 1px solid rgba(250,249,246,.18);
  padding-bottom: 1px;
  transition: border-color 240ms, color 240ms;
}
.footer-bottom a:hover {
  color: var(--text-on-dark);
  border-color: rgba(250,249,246,.4);
}
.footer-pay {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,249,246,.5);
}

/* ══════════════════════════════════════════
   LEGACY EDITORIAL CLASSES (used elsewhere)
══════════════════════════════════════════ */
.editorial-ornament { color: rgba(250,249,246,.7); }

/* ══════════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════════ */
.crumbs {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-weight: 500;
}
.crumbs a { transition: color 200ms; }
.crumbs a:hover { color: var(--text); }
.crumbs-sep { opacity: 0.5; }

/* ══════════════════════════════════════════
   PDP — product detail page
══════════════════════════════════════════ */

/* Size error state */
.pdp-size.is-error {
  border-color: var(--sale);
  color: var(--sale);
}
.pdp-size-error {
  font-size: 12px;
  color: var(--sale);
  margin-top: 10px;
  min-height: 18px;
  letter-spacing: 0.02em;
}

/* PDP add button full-width */
.pdp-add-btn {
  width: 100%;
}
.pdp-add-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Cart summary trust icons */
.cart-summary-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.cart-summary-trust .pdp-trust-item {
  font-size: 12px;
  color: var(--text-muted);
}

/* Cart drawer remove button */
.cart-drawer-item-remove {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 10px;
  display: inline-block;
  transition: color 200ms;
}
.cart-drawer-item-remove:hover { color: var(--text); }

.pdp {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 64px;
  padding: 32px var(--gutter) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
/* Prevent grid/flex children from forcing the layout wider than the viewport */
.pdp > * { min-width: 0; }
.pdp-gallery, .pdp-info { min-width: 0; }
/* Gallery: thumbnails (left) + main stage */
.pdp-gallery {
  display: flex;
  flex-direction: column;
}
.pdp-gallery--multi {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: start;
}

/* Max height of the main image — keeps it within the viewport */
.pdp {
  --pdp-stage-h: calc(100vh - 150px);
}

/* Thumbnail strip — scrolls independently if there are many images */
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: var(--pdp-stage-h);
  overflow-y: auto;
  scrollbar-width: none;
  min-width: 0;
}
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb {
  border: 1px solid transparent;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3/4;
  flex: 0 0 auto;
  transition: border-color 200ms, opacity 200ms;
  opacity: 0.65;
}
.pdp-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.is-active {
  border-color: var(--text);
  opacity: 1;
}

/* Main stage — width follows the column; never wider than its column */
.pdp-stage {
  position: relative;
  min-width: 0;
}
.pdp-stage-btn {
  display: block;
  border: 0;
  padding: 0;
  /* width capped so a portrait image at full viewport height never overflows
     the column; centered when narrower */
  width: 100%;
  max-width: calc((100vh - 150px) * 0.75);
  margin: 0 auto;
  background: var(--surface);
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.pdp-stage-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pdp-stage-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.pdp-stage-zoom svg { width: 18px; height: 18px; }
.pdp-stage:hover .pdp-stage-zoom { opacity: 1; transform: translateY(0); }

/* Mobile dots — hidden on desktop */
.pdp-dots { display: none; }

.pdp-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 480px;
}
.pdp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}
.pdp-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pdp-price {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.pdp-price.is-sale { color: var(--sale); }
.pdp-price-old {
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.pdp-attr-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 14px;
}
.pdp-attr-label-key { color: var(--text-muted); }
.pdp-attr-label-val { font-weight: 500; color: var(--text); }

.pdp-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-swatch {
  width: 32px;
  height: 32px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0,0,0,.1);
  transition: transform 180ms;
}
.pdp-swatch.is-white { border-color: #BBBBBB; }
.pdp-swatch:hover { transform: scale(1.06); }
.pdp-swatch.is-active {
  outline: 1px solid var(--text);
  outline-offset: 2px;
}

.pdp-size-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms;
}
.pdp-size-link:hover { color: var(--text); }
.pdp-sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.pdp-size {
  height: 46px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-size:hover { border-color: var(--text); }
.pdp-size.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.pdp-size.is-disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  background: var(--surface);
}
.pdp-size.is-disabled:hover { border-color: var(--border); }

.pdp-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.pdp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  margin: 0;
}
.pdp-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}
.pdp-bullets li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-soft);
}
.pdp-bullets li strong { font-weight: 600; }

.checkout-no-prepay {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 12px 16px;
  color: var(--text);
  margin-bottom: 20px;
}

.checkout-consent {
  margin-bottom: 20px;
}
.checkout-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
  color: var(--text-muted);
}
.checkout-consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--text);
  cursor: pointer;
}
.checkout-consent-label a {
  color: var(--text);
  border-bottom: 1px solid currentColor;
}

.pdp-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.pdp-acc {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.pdp-acc:last-child { border-bottom: 1px solid var(--border); }
.pdp-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 240ms;
  line-height: 1;
}
.pdp-acc[open] summary::after { content: '−'; }
.pdp-acc-body {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.pdp-acc-body table { width: 100%; font-size: 13px; }
.pdp-acc-body td { padding: 8px 0; vertical-align: top; }
.pdp-acc-body td:first-child { color: var(--text-muted); width: 40%; }
.pdp-acc-body td:last-child  { color: var(--text); }

/* ══════════════════════════════════════════
   CART
══════════════════════════════════════════ */
.cart-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 120px;
}
.cart-h1 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cart-count-line {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.cart-items .cart-item:first-child { border-top: 1px solid var(--border); }
.cart-items .cart-item:last-child  { border-bottom: 1px solid var(--border); }
.cart-item-img {
  width: 120px;
  aspect-ratio: 3/4;
  background: var(--surface);
  overflow: hidden;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cart-item-cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}
.cart-item-name {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
}
.cart-item-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.cart-item-meta-color {
  display: inline-flex; align-items: center; gap: 8px;
}
.cart-item-meta-swatch {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 12px;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  height: 38px;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  font-size: 16px;
  color: var(--text);
  transition: background 200ms;
}
.qty-btn:hover { background: var(--surface); }
.qty-val {
  min-width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.cart-item-remove {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms;
}
.cart-item-remove:hover { color: var(--text); }
.cart-item-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-price-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.cart-item-price-each {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-summary {
  position: sticky;
  top: 100px;
  background: var(--surface-soft);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-summary-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.cart-summary-row-key { color: var(--text-muted); }
.cart-summary-row-val { font-weight: 500; font-variant-numeric: tabular-nums; }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
.cart-summary-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.cart-empty {
  text-align: center;
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cart-empty-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.cart-empty-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
}
.cart-empty-text {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════ */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, .42);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  backdrop-filter: blur(3px);
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 480px;
  max-width: 100vw;
  background: var(--bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 360ms var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,.06);
}
.cart-drawer.is-open { transform: translateX(0); }
body.drawer-open { overflow: hidden; }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cart-drawer-title-count {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.cart-drawer-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 50%;
  transition: background-color 200ms;
}
.cart-drawer-close:hover { background: var(--surface); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 4px 28px;
}
.cart-drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-item:last-child { border-bottom: 0; }
.cart-drawer-item-img {
  width: 80px;
  aspect-ratio: 3/4;
  background: var(--surface);
  overflow: hidden;
  display: block;
}
.cart-drawer-item-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.cart-drawer-item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cart-drawer-item-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: auto;
}
.cart-drawer-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.cart-drawer-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  height: 30px;
}
.cart-drawer-item-qty button {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text);
}
.cart-drawer-item-qty button:hover { background: var(--surface); }
.cart-drawer-item-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.cart-drawer-item-price {
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.cart-drawer-foot {
  border-top: 1px solid var(--border);
  padding: 26px 28px;
  flex-shrink: 0;
  background: var(--bg);
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.cart-drawer-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-drawer-actions .btn-primary { height: 52px; }
.cart-drawer-fullcart {
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.cart-drawer-fullcart:hover { color: var(--text); }

.cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 16px;
}
.cart-drawer-empty-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
}
.cart-drawer-empty-text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
  animation: fadeIn 220ms ease-out;
}
.lightbox.is-open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 86vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  user-select: none;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}
.lightbox-btn:hover { background: rgba(255,255,255,.18); }
.lightbox-close { top: 24px; right: 24px; position: fixed; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); position: fixed; }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); position: fixed; }
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
body.lightbox-open { overflow: hidden; }

/* ══════════════════════════════════════════
   INFO PAGE
══════════════════════════════════════════ */
.info-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px var(--gutter) 120px;
}
.info-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.info-h1 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.info-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 640px;
}
.info-section { margin-bottom: 56px; }
.info-section:last-child { margin-bottom: 0; }
.info-section-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.info-section p, .info-section li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.info-section p { margin-bottom: 14px; }
.info-section p:last-child { margin-bottom: 0; }
.info-list { padding-left: 0; margin-bottom: 14px; }
.info-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--text);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.info-table td {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.info-table tr:last-child td { border-bottom: 0; }
.info-table td:first-child { color: var(--text-muted); width: 40%; }
.info-table td:last-child  { color: var(--text); }

.info-cta {
  margin-top: 56px;
  padding: 32px;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.info-cta-text { font-size: 15px; color: var(--text); }
.info-cta-text strong { font-weight: 500; }

/* Size chart table */
.size-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  min-width: 460px;
}
.size-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
.size-table td {
  font-size: 15px;
  color: var(--text);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.size-table tbody tr:hover { background: var(--surface-soft); }
.size-table-size {
  font-weight: 600;
}
.size-table th:first-child,
.size-table td:first-child {
  padding-left: 0;
}

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  padding: 32px var(--gutter);
  transform: translateY(-100%);
  transition: transform 320ms var(--ease-out);
  visibility: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 56px;
  height: 44px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links a:first-child {
  border-top: 1px solid var(--border);
}
.mobile-nav-foot {
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════ */
.not-found {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(80px, 14vw, 160px) var(--gutter) clamp(80px, 10vw, 140px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.not-found-code {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(96px, 18vw, 200px);
  line-height: 1;
  font-weight: 400;
  color: var(--border);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: -16px;
}
.not-found-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.not-found-title em { font-style: normal; }
.not-found-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.not-found-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   CATALOG PAGE
══════════════════════════════════════════ */
.catalog-page { padding-bottom: clamp(80px, 10vw, 140px); }

.catalog-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.catalog-tabs::-webkit-scrollbar { display: none; }
.catalog-tab {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: background-color 200ms, color 200ms, border-color 200ms;
}
.catalog-tab:hover { color: var(--text); border-color: var(--text); }
.catalog-tab.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.catalog-hd {
  padding: 40px 0 48px;
}
.catalog-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 12px;
}
.catalog-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 8px;
}
.catalog-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.catalog-empty {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-size: 16px;
  color: var(--text-muted);
}
.product-grid--catalog {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .product-grid--catalog { grid-template-columns: repeat(3, 1fr); }
  .cat-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid--catalog { grid-template-columns: repeat(2, 1fr); column-gap: 10px; }
  .catalog-tabs { padding-top: 20px; padding-bottom: 20px; }
  .features-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .features-grid--6 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CHECKOUT
══════════════════════════════════════════ */
.checkout-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--gutter) 120px;
}

/* Layout: form left, summary right */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
  margin-top: 8px;
}
.checkout-form-col { min-width: 0; }

/* Title */
.checkout-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 48px;
}
.checkout-title em { font-style: normal; }

/* Fieldset / sections */
.checkout-section {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}
.checkout-section-legend {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  padding: 0;
  margin-bottom: 24px;
  display: block;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Form fields */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field:last-child { margin-bottom: 0; }

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.form-label-opt {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: none;
}

.form-input {
  height: 52px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  padding: 0 16px;
  outline: none;
  transition: border-color 200ms;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus { border-color: var(--text); }
.form-field.is-error .form-input { border-color: var(--sale); }

.form-error {
  font-size: 12px;
  color: var(--sale);
  letter-spacing: 0.02em;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-row-2 .form-field { margin-bottom: 0; }

.form-global-error {
  font-size: 13px;
  color: var(--sale);
  margin-bottom: 16px;
}

/* Submit button */
.checkout-submit {
  width: 100%;
  height: 56px;
  margin-bottom: 18px;
}
.checkout-submit svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.checkout-policy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.checkout-policy a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Summary panel */
.checkout-summary {
  position: sticky;
  top: 100px;
  background: var(--surface-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checkout-summary-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

/* Items in summary */
.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.checkout-summary-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
}
.checkout-summary-item-img {
  width: 64px;
  aspect-ratio: 3/4;
  background: var(--surface-warm);
  overflow: hidden;
  position: relative;
}
.checkout-summary-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.checkout-summary-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--text);
  color: var(--bg);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.checkout-summary-item-body { min-width: 0; }
.checkout-summary-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-summary-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}
.checkout-summary-item-price {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Totals */
.checkout-summary-rows {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.checkout-summary-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.checkout-summary-trust .pdp-trust-item {
  font-size: 12px;
  color: var(--text-muted);
}

/* Success screen */
.checkout-success {
  max-width: 600px;
  margin: 64px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.checkout-success-icon { color: var(--text); opacity: .6; }
.checkout-success-order {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.checkout-success-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.checkout-success-title em { font-style: normal; }
.checkout-success-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}
.checkout-success-summary {
  width: 100%;
  max-width: 420px;
  background: var(--surface-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 8px 0;
}
.checkout-success-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text);
}
.checkout-success-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1180px) {
  .hero-title { font-size: clamp(56px, 9vw, 120px); }
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); column-gap: 14px; row-gap: 52px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; gap: 40px; }
  .pdp-info { position: static; max-width: none; }
  .cart-layout { grid-template-columns: 1fr; gap: 40px; }
  .cart-summary { position: static; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .header-nav { display: none; }
  .site-header .container { grid-template-columns: auto auto; justify-content: space-between; height: 64px; }
  .menu-trigger { display: inline-flex; }
  .announce { font-size: 10px; letter-spacing: 0.12em; padding: 9px var(--gutter); }
  .hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text { order: 1; gap: 24px; }
  .hero-visual { order: 2; aspect-ratio: 4/5; }
  .hero-title { font-size: clamp(48px, 14vw, 88px); }
  .marquee { padding: 22px 0; }
  .marquee-track { gap: 40px; }
  .marquee-item { gap: 40px; }
  .section { padding: 80px 0; }
  .section--tight { padding: 60px 0; }
  .section-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 20px;
  }
  .product-grid, .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 44px;
  }
  .product-cat { font-size: 11px; letter-spacing: 0.12em; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 14px; }
  .product-placeholder-mark { font-size: 56px; }
  .cat-grid { grid-template-columns: 1fr; gap: 36px; }
  .editorial { padding: 80px 0; }
  .editorial::before, .editorial::after { display: none; }
  .features { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter { padding: 80px 0; }
  .newsletter-form {
    flex-direction: column;
    border: none;
    gap: 12px;
    height: auto;
    background: transparent;
  }
  .newsletter-input { border: 1px solid var(--text); height: 56px; background: var(--bg); }
  .newsletter-btn { height: 56px; border: 1px solid var(--text); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 56px; }
  .footer-brand { grid-column: 1 / -1; }
  /* Mobile: plain block layout — avoids grid min-width overflow entirely */
  .pdp {
    display: block;
    padding: 24px var(--gutter) 80px;
  }
  .pdp-gallery { margin-bottom: 28px; }
  /* Mobile gallery: single main image + dots + horizontal thumb strip below */
  .pdp-gallery--multi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: none;
  }
  .pdp-thumbs {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    width: 100%;
    gap: 8px;
    order: 2;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb {
    flex: 0 0 60px;
    width: 60px;
    max-height: 80px;
  }
  /* Mobile: full-width main image, matches content width exactly */
  .pdp-stage {
    order: 1;
    display: block;
    width: 100%;
  }
  .pdp-stage-btn {
    display: block;
    height: auto;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: none;
    max-width: none;
    flex: none;
  }
  .pdp-stage-zoom { display: none; } /* tap opens lightbox; hint not needed */
  .pdp-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 12px 0 2px;
  }
  .pdp-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border-strong);
    transition: background-color 200ms, transform 200ms;
  }
  .pdp-dot.is-active { background: var(--text); transform: scale(1.25); }
  .pdp-sizes { grid-template-columns: repeat(4, 1fr); }
  .lightbox { padding: 16px; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev  { left: 12px; }
  .lightbox-next  { right: 12px; }
  .info-page { padding: 40px var(--gutter) 80px; }
  .info-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
  .cart-page { padding: 32px var(--gutter) 80px; }
  .cart-item { grid-template-columns: 88px 1fr; gap: 16px; }
  .cart-item-img { width: 88px; }
  .cart-item-price {
    grid-column: 2 / 3;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding-top: 8px;
  }
  .cart-summary { padding: 24px; }
  .cart-drawer { width: 100vw; }
  .cart-drawer-head, .cart-drawer-foot, .cart-drawer-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .checkout-summary { position: static; }
  .form-row-2 { grid-template-columns: 1fr; }
  .checkout-page { padding-top: 32px; }
}
@media (max-width: 480px) {
  .product-grid { column-gap: 8px; row-gap: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .mobile-nav-links a { font-size: 30px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ЛЕНДИНГ МУЖСКОЙ ЛИНИИ  (префикс .mh-)
   На главной только герой; ниже — карточка товара на штатных .pdp-*.
═══════════════════════════════════════════════════════════════════ */

.mh-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* ── Кнопка ───────────────────────────────────────────────────── */
.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  transition-property: background-color, color, scale;
  transition-duration: 180ms;
  transition-timing-function: var(--ease-out);
}
.mh-btn--primary { background: var(--text); color: #fff; }
.mh-btn--primary:hover { background: #2C3238; }
.mh-btn:active { scale: 0.96; }
@media (prefers-reduced-motion: reduce) {
  .mh-btn { transition-duration: 1ms; }
  .mh-btn:active { scale: 1; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.mh-hero { padding: 56px 0 76px; }
.mh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 72px;
  align-items: start;
}
/* Верхняя строка текста должна попадать на верхнюю кромку фото:
   выносим наверх воздух, который создаёт межстрочный интервал надзаголовка. */
.mh-hero-text { max-width: 620px; margin-top: -4px; }
.mh-hero-title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 30px;
  text-wrap: balance;
}

/* Буллиты: жирный тезис + пояснение в одну строку абзаца */
.mh-points {
  margin: 0 0 34px;
  border-top: 1px solid var(--border);
}
.mh-points li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}
.mh-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 5px;
  height: 5px;
  background: var(--text);
}
.mh-points b {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 2px;
}

/* Флаг Италии — знак происхождения пряжи, не украшение */
.mh-flag {
  display: inline-block;
  width: 15px;
  height: 10px;
  margin-left: 7px;
  vertical-align: 1px;
}
.mh-flag svg { width: 100%; height: 100%; display: block; }

.mh-hero-buy {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mh-hero-price { margin: 0; }
.mh-hero-price b {
  display: block;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.mh-hero-price span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.mh-hero-media { margin: 0; }
.mh-hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 14%;
  background: var(--surface);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
.mh-hero-media figcaption {
  font-size: 11.5px;
  color: var(--text-muted);
  padding-top: 10px;
}

/* ── Детали кроя: три крупных плана ───────────────────────────── */
.mh-cuts {
  border-top: 1px solid var(--border);
  padding: 60px 0 4px;
}
.mh-cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mh-cuts figure { margin: 0; }
.mh-cuts img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--surface);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}
.mh-cuts figcaption {
  padding-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}
.mh-cuts figcaption b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

/* ── Карточка на главной ──────────────────────────────────────── */
/* Карточка — штатные .pdp-*; здесь только стык с блоком выше */
.mh-cuts + .pdp {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 64px;
}

/* В этой модели три размера, а не пять — иначе кнопки повисают в пустоте */
.pdp-sizes { grid-template-columns: repeat(3, 1fr); }
.pdp-size { height: 52px; font-size: 14px; }

/* Фотографии карточки — та же кромка, что у кадра в герое */
.pdp-stage-btn img,
.pdp-thumb img { outline: 1px solid rgba(0, 0, 0, 0.1); outline-offset: -1px; }
/* Смена цвета: кадр подгружается заранее и проявляется, а не мигает */
.pdp-stage-btn img { transition: opacity 160ms var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .pdp-stage-btn img { transition-duration: 1ms; }
}

/* Свотч 32px мал для пальца — расширяем зону нажатия до 40px.
   Шаг между свотчами 42px, поэтому зоны соседей не пересекаются. */
.pdp-swatches { gap: 10px; }
.pdp-swatch { transition-property: transform, outline-color; }
.pdp-swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
}

.pdp-title { text-wrap: balance; }
.pdp-desc { text-wrap: pretty; }

/* ── Шапка: подпись логотипа и телефон ────────────────────────── */
.header-phone {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
  margin-right: 6px;
  transition: color 180ms var(--ease-out);
}
.header-phone:hover { color: var(--text); }

/* display не трогаем: ниже 940 меню скрывается правилом в медиазапросе */
.header-nav { gap: 22px; flex-wrap: nowrap; }
.header-nav a { color: var(--text-soft); white-space: nowrap; }
.header-nav a:hover { color: var(--text); }

/* ── Адаптив ──────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .mh-hero-grid { gap: 48px; }
  /* Ниже этой ширины телефон в шапке выдавливает корзину за экран */
  .header-phone { display: none; }
}

@media (max-width: 940px) {
  /* Четыре пункта меню, логотип и корзина в строку уже не помещаются */
  .header-nav { display: none; }
  .menu-trigger { display: inline-flex; }
}

@media (max-width: 1024px) {
  /* Та же граница, на которой .pdp складывается в одну колонку */
  .mh-hero { padding: 36px 0 52px; }
  .mh-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .mh-hero-text { max-width: none; }
  .mh-hero-media { order: -1; }
  .mh-hero-media img { aspect-ratio: 3 / 2; object-position: 50% 18%; }
  .mh-hero-title { max-width: none; }
  .mh-cuts { padding-top: 44px; }
  .mh-cuts + .pdp { margin-top: 44px; padding-top: 44px; }
}

@media (max-width: 700px) {
  .mh-cuts-grid { grid-template-columns: 1fr; gap: 28px; }
  .mh-cuts img { aspect-ratio: 1 / 1; }
  .mh-hero-buy { gap: 18px; }
  .mh-hero-buy .mh-btn { flex: 1 1 100%; }
}
