/* ============================================================
   THE RETRO WATCH CLUB v2 — Main Stylesheet
   Dark cinematic hero · Horizontal collection scroll
   Why Vintage · How It Works · Journal · Newsletter
============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Base */
  --ink:        #0D0D0B;
  --ink-mid:    #1A1A16;
  --ink-light:  #2A2A24;

  /* Cream */
  --cream:      #FAF9F6;
  --cream-mid:  #F0EDE6;
  --white:      #FFFFFF;

  /* Brand */
  --olive:      #5C6B47;
  --olive-light:#7A8A62;
  --olive-dark: #3D4B2E;
  --olive-tint: #EDF0E8;

  --gold:       #C4A265;
  --gold-light: #D4B87A;
  --gold-dark:  #A8844A;

  /* Text */
  --charcoal:   #1C1C1A;
  --gray:       #8A8A85;
  --gray-light: #C4C4BE;
  --border:     #E4DFD5;
  --border-dark:rgba(255,255,255,0.08);

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-hero:  clamp(3.25rem, 7vw, 6.5rem);
  --fs-h1:    clamp(2rem, 4.5vw, 3.75rem);
  --fs-h2:    clamp(1.625rem, 3vw, 2.625rem);
  --fs-h3:    clamp(1.25rem, 2vw, 1.75rem);
  --fs-body:  clamp(0.9375rem, 1.5vw, 1rem);
  --fs-sm:    0.8125rem;
  --fs-label: 0.6875rem;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Layout */
  --max-w: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --header-h: 76px;

  /* Motion */
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast:  150ms ease;
  --base:  300ms ease;
  --slow:  600ms var(--ease);
}

/* ── Base ────────────────────────────────────────────────── */
html { font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  line-height: 1.12;
  font-weight: 600;
  color: var(--charcoal);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--base), color var(--base), border-color var(--base);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--white); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  padding: 0.65rem 1.5rem;
  font-size: 0.625rem;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

/* ── Announcement Bar ────────────────────────────────────── */
.ann-bar {
  background: var(--ink);
  color: var(--gold-light);
  text-align: center;
  padding: 9px var(--pad-x);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Homepage: transparent + white text over dark hero */
body.home .site-header {
  color: var(--white);
  background: transparent;
}

/* Homepage: solid once scrolled past hero */
body.home .site-header.header--scrolled {
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--charcoal);
}

/* All other pages: always solid */
body:not(.home) .site-header {
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--charcoal);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-lg);
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.site-logo__icon { width: 30px; height: 30px; flex-shrink: 0; }

.site-logo__text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: inherit;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.primary-nav a {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  position: relative;
  padding-bottom: 2px;
  transition: opacity var(--fast);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--base);
}

.primary-nav a:hover { opacity: 0.75; }
.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after { transform: scaleX(1); }

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-md);
}

.hdr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: inherit;
  transition: opacity var(--fast);
  position: relative;
}
.hdr-btn:hover { opacity: 0.6; }
.hdr-btn svg { width: 19px; height: 19px; stroke-width: 1.4; }

.cart-badge {
  position: absolute;
  top: 3px; right: 3px;
  width: 15px; height: 15px;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  color: inherit;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--base), opacity var(--base);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--fast);
}
.mobile-nav a:hover { color: var(--gold); }

/* Page offset */
.page-wrap { padding-top: var(--header-h); }
body.home .page-wrap { padding-top: 0; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}

/* Background: rich olive-dark gradient — replace with real photo via .hero__bg */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      rgba(10,12,8,0.97) 0%,
      rgba(20,26,14,0.88) 42%,
      rgba(45,58,30,0.65) 70%,
      rgba(30,38,20,0.55) 100%),
    linear-gradient(135deg, #141810 0%, #1E2B14 40%, #2C3A1C 65%, #141810 100%);
  background-size: cover;
  background-position: center;
}

/* When user uploads hero image, add this class via customizer:
   .hero__bg { background-image: url('their-photo.jpg'); } */

/* Subtle noise texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Vertical gold lines — right side decoration */
.hero__lines {
  position: absolute;
  right: clamp(2rem, 6vw, 6rem);
  top: 0; bottom: 0;
  display: flex;
  gap: 10px;
  pointer-events: none;
}
.hero__lines span {
  display: block;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, var(--gold) 30%, var(--gold) 70%, transparent 95%);
}
.hero__lines span:nth-child(1) { opacity: 0.5; }
.hero__lines span:nth-child(2) { opacity: 0.25; margin-top: 10%; height: 80%; }
.hero__lines span:nth-child(3) { opacity: 0.12; margin-top: 20%; height: 60%; }

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.hero__eyebrow .label { color: var(--gold-light); }
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__heading {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.hero__heading strong {
  font-weight: 600;
  display: block;
}
.hero__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}

.hero__divider {
  width: 56px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: var(--sp-md);
}

.hero__sub {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-lg);
  right: clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  z-index: 1;
}
.hero__scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(0.7); }
  50%      { opacity:0.8; transform:scaleY(1); }
}

/* ── COLLECTION (dark grid) ───────────────────────────────── */
.collection-section {
  background: var(--ink);
  padding-block: var(--sp-3xl);
}

.collection-section__top {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.collection-section__top .label { color: var(--gold); margin-bottom: var(--sp-xs); display: block; }

.collection-section__title {
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

.collection-section__sub {
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  margin-top: var(--sp-sm);
  max-width: 420px;
  margin-inline: auto;
}

/* Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Watch card */
.w-card {
  background: var(--ink-mid);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--base), transform var(--slow);
}
.w-card:hover {
  border-color: rgba(196,162,101,0.35);
  transform: translateY(-4px);
}

.w-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-light);
  flex-shrink: 0;
}
.w-card__img img {
  width:100%; height:100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.w-card:hover .w-card__img img { transform: scale(1.07); }

.w-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--base);
}
.w-card:hover .w-card__overlay { opacity: 1; }

/* Sold badge */
.w-card__sold {
  position: absolute;
  top: var(--sp-sm); left: var(--sp-sm);
  background: rgba(196,162,101,0.9);
  color: var(--ink);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* Placeholder (no image) */
.w-card__placeholder {
  width:100%; height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-light);
}
.w-card__placeholder svg { width:72px; height:72px; opacity:0.15; }

.w-card__body { padding: 1.125rem 1.25rem 1.375rem; flex: 1; display: flex; flex-direction: column; }

.w-card__brand {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.w-card__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.w-card__ref {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.28);
  margin-bottom: auto;
  padding-bottom: var(--sp-sm);
}
.w-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border-dark);
  margin-top: var(--sp-sm);
}
.w-card__price {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--white);
}
.w-card__arrow {
  color: var(--gold);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap var(--fast);
  display: flex;
  align-items: center;
  gap: 4px;
}
.w-card:hover .w-card__arrow { gap: 8px; }

.collection-section__cta {
  text-align: center;
  margin-top: var(--sp-xl);
}

/* ── WHY VINTAGE — dark editorial ────────────────────────── */
.why-vintage {
  background: var(--ink);
  padding-block: var(--sp-3xl);
}

.why-vintage__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-2xl);
}
.why-vintage__header .label { color: var(--gold); display: block; margin-bottom: var(--sp-sm); }

.why-vintage__heading {
  font-size: var(--fs-h1);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.why-vintage__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}

.why-vintage__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  margin-bottom: var(--sp-2xl);
}

.why-vintage__body-div {
  background: rgba(196,162,101,0.2);
  align-self: stretch;
  min-height: 140px;
}

.why-vintage__text {
  color: rgba(255,255,255,0.5);
  font-size: 1.0625rem;
  line-height: 1.9;
}

.why-vintage__quote {
  border: 1px solid rgba(196,162,101,0.25);
  padding: var(--sp-xl) var(--sp-2xl);
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-2xl);
}
.why-vintage__quote p {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
}
.why-vintage__quote cite {
  display: block;
  margin-top: var(--sp-sm);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.why-vintage__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(196,162,101,0.2);
  padding-top: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.why-vintage__stat {
  text-align: center;
  padding-inline: var(--sp-md);
}
.why-vintage__stat + .why-vintage__stat {
  border-left: 1px solid rgba(196,162,101,0.12);
}
.why-vintage__stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.why-vintage__stat-text {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── HOW IT WORKS — dark ─────────────────────────────────── */
.how-it-works {
  background: var(--charcoal);
  padding-block: var(--sp-3xl);
  position: relative;
  overflow: hidden;
}

/* Large faint background text */
.how-it-works::before {
  content: 'Process';
  position: absolute;
  bottom: -0.15em;
  left: var(--pad-x);
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.03em;
  user-select: none;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.how-it-works__header .label { color: var(--gold); margin-bottom: var(--sp-sm); display: block; }
.how-it-works__header h2 { color: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

/* Gold connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(to right, rgba(196,162,101,0.1), rgba(196,162,101,0.5), rgba(196,162,101,0.1));
  pointer-events: none;
}

.step {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  position: relative;
}

.step__num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(196,162,101,0.45);
  margin: 0 auto var(--sp-lg);
  background: rgba(255,255,255,0.03);
  position: relative;
  z-index: 1;
}

.step__num {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.step__icon {
  width: 22px; height: 22px;
  color: rgba(196,162,101,0.55);
  margin: 0 auto var(--sp-md);
}

.step__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}

.step__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 260px;
  margin-inline: auto;
}

/* ── JOURNAL ─────────────────────────────────────────────── */
.journal-section {
  background: var(--cream);
  padding-bottom: var(--sp-3xl);
}

/* Dark ink header strip */
.journal-section__header {
  background: var(--ink-mid);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}

.journal-section__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-lg);
}
.journal-section__top .label { color: var(--gold); display: block; margin-bottom: var(--sp-xs); }
.journal-section__top h2 { color: var(--white); }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.j-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--slow), box-shadow var(--slow);
}
.j-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(28,28,26,0.08);
}

.j-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-mid);
  display: block;
}
.j-card__img img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 0.75s var(--ease);
}
.j-card:hover .j-card__img img { transform: scale(1.06); }

.j-card__img-placeholder {
  width:100%; height:100%; min-height:180px;
  background: var(--cream-mid);
  display:flex; align-items:center; justify-content:center;
}
.j-card__img-placeholder span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gray-light);
  font-size: 0.9375rem;
}

.j-card__body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.j-card__cat {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--sp-sm);
}

.j-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: var(--sp-sm);
  flex: 1;
}

.j-card__excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: var(--sp-md);
}

.j-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}

.j-card__date { font-size: var(--fs-sm); color: var(--gray); }

.j-card__read {
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--fast), color var(--fast);
}
.j-card:hover .j-card__read { gap: 9px; color: var(--olive-dark); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter {
  background: var(--ink);
  padding-block: var(--sp-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(196,162,101,0.08);
  pointer-events: none;
}

.newsletter .label { color: var(--gold); display: block; margin-bottom: var(--sp-sm); }

.newsletter h2 {
  font-size: var(--fs-h2);
  color: var(--white);
  font-weight: 300;
  margin-bottom: var(--sp-sm);
}
.newsletter h2 em {
  font-style: italic;
  font-weight: 300;
}

.newsletter__sub {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto var(--sp-xl);
}

.newsletter__form {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--fast);
}
.newsletter__form:focus-within { border-color: var(--gold); }

.newsletter__input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9375rem;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.25); }

.newsletter__btn {
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--fast);
}
.newsletter__btn:hover { background: var(--gold-dark); }

.newsletter__note {
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.2);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--ink-mid); color: rgba(255,255,255,0.6); }

.footer__main { padding-block: var(--sp-3xl); }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: var(--sp-md);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-lg);
  max-width: 280px;
}

.footer__social { display: flex; gap: var(--sp-sm); }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color var(--fast), color var(--fast);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 15px; height: 15px; }

.footer__col h4 {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--fast);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-lg);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer__copy { font-size: var(--fs-sm); color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: var(--sp-lg); }
.footer__legal a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.25);
  transition: color var(--fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.ann-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px var(--sp-md);
  line-height: 1.5;
}

/* ── GENERAL PAGE WRAP ───────────────────────────────────── */
.page-wrap {
  min-height: 60vh;
  background: var(--cream);
}

/* ── CONTENT + PROSE ─────────────────────────────────────── */
.content-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.prose p, .prose li {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1.25em;
}
.prose h2, .prose h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.prose a { color: var(--olive-dark); border-bottom: 1px solid var(--olive-light); }
.prose a:hover { color: var(--olive-dark); border-bottom-color: transparent; }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1.25em; }

/* ── DRAG HINT ───────────────────────────────────────────── */
.drag-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.drag-hint svg { width: 16px; height: 16px; }

/* ── INNER PAGES ─────────────────────────────────────────── */
.page-hero {
  background: var(--cream-mid);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .label { color: var(--olive); display: block; margin-bottom: var(--sp-sm); }
.page-hero h1 { margin-bottom: var(--sp-sm); }
.page-hero p { color: var(--gray); font-size: 1.0625rem; max-width: 540px; margin-inline: auto; }

/* Breadcrumb */
.breadcrumb { font-size: var(--fs-sm); color: var(--gray); margin-bottom: var(--sp-md); }
.breadcrumb a { color: var(--gray); transition: color var(--fast); }
.breadcrumb a:hover { color: var(--olive); }

/* ── SHOP ────────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-xl);
  align-items: start;
  padding-block: var(--sp-xl);
}

.shop-filters {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-md));
}

.filter-group {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.filter-group__title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray);
  cursor: pointer;
  padding: 5px 0;
  transition: color var(--fast);
}
.filter-option:hover { color: var(--olive-dark); }
.filter-option input { accent-color: var(--olive); width: 15px; height: 15px; }

.shop-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
}
.shop-results-bar .count { font-size: var(--fs-sm); color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }

.shop-sort select {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

/* Shop product card (light theme) */
.p-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--slow);
}
.p-card:hover { transform: translateY(-4px); }

.p-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-mid);
  margin-bottom: var(--sp-md);
}
.p-card__img img {
  width:100%; height:100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.p-card:hover .p-card__img img { transform: scale(1.06); }

.p-card__overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,11,0.4);
  display: flex; align-items: flex-end; justify-content: center;
  padding: var(--sp-md);
  opacity: 0; transition: opacity var(--base);
}
.p-card:hover .p-card__overlay { opacity: 1; }

.p-card__badge {
  position: absolute;
  top: var(--sp-sm); left: var(--sp-sm);
  background: var(--olive);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.p-card__era { font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.p-card__name { font-family: var(--serif); font-size: 1.125rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin-bottom: 5px; }
.p-card__ref { font-size: var(--fs-sm); color: var(--gray); margin-bottom: var(--sp-md); }
.p-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: var(--sp-sm);
}
.p-card__price { font-family: var(--serif); font-size: 1.1875rem; font-weight: 600; color: var(--charcoal); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: var(--sp-xl); }
.page-numbers {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-size: 0.9375rem; color: var(--charcoal);
  transition: all var(--fast);
}
.page-numbers:hover, .page-numbers.current { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ── SINGLE PRODUCT ──────────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
  padding-block: var(--sp-xl);
}

.product-gallery { position: sticky; top: calc(var(--header-h) + var(--sp-md)); }

.gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-mid);
  margin-bottom: 8px;
}
.gallery__main img { width:100%; height:100%; object-fit:cover; transition: opacity 0.2s ease; }

.gallery__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gallery__thumb {
  aspect-ratio: 1; overflow: hidden;
  background: var(--cream-mid); cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--fast);
}
.gallery__thumb.active { border-color: var(--gold); }
.gallery__thumb img { width:100%; height:100%; object-fit:cover; }

.product-info { padding-top: var(--sp-sm); }
.product-info__brand { font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin-bottom: var(--sp-sm); }
.product-info__name { font-size: clamp(1.75rem, 3vw, 2.625rem); font-weight: 600; line-height: 1.1; margin-bottom: var(--sp-sm); }
.product-info__ref { font-size: 0.9375rem; color: var(--gray); margin-bottom: var(--sp-lg); }
.product-info__price { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: var(--sp-lg); }
.product-info__price del { font-size: 1.25rem; color: var(--gray-light); font-weight: 400; margin-right: 8px; }

.product-info__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--sp-xl); }
.product-info__actions .btn { width:100%; justify-content:center; padding-block:1rem; }

.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-xl);
}
.trust-item {
  background: var(--cream);
  padding: var(--sp-md) var(--sp-sm);
  text-align: center;
}
.trust-item__icon { color: var(--olive); margin-bottom: 6px; }
.trust-item__icon svg { width:18px; height:18px; margin-inline:auto; }
.trust-item__label { font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-toggle {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding: var(--sp-md) 0;
  font-size: 0.9375rem; font-weight:500; color:var(--charcoal);
  text-align:left; background:none; border:none; cursor:pointer;
  transition:color var(--fast);
}
.accordion-toggle:hover { color: var(--olive); }
.accordion-toggle svg { width:14px; height:14px; flex-shrink:0; transition:transform var(--base); }
.accordion-item.open .accordion-toggle svg { transform:rotate(180deg); }
.accordion-body { overflow:hidden; max-height:0; transition:max-height 0.4s ease; }
.accordion-body.open { max-height:600px; }
.accordion-body__inner { padding-bottom: var(--sp-md); }
.accordion-body__inner p { font-size:0.9375rem; color:var(--gray); line-height:1.75; }

.specs-table { width:100%; border-collapse:collapse; }
.specs-table tr { border-bottom:1px solid var(--border); }
.specs-table tr:last-child { border-bottom:none; }
.specs-table td { padding:10px 0; font-size:0.9375rem; }
.specs-table td:first-child { font-weight:500; width:40%; }
.specs-table td:last-child { color:var(--gray); }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-md); }
.form-label {
  display:block; font-size:var(--fs-label); font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--charcoal); margin-bottom:8px;
}
.form-input, .form-textarea, .form-select {
  width:100%; border:1px solid var(--border); background:var(--cream);
  padding:13px 16px; font-family:var(--sans); font-size:0.9375rem; color:var(--charcoal);
  outline:none; transition:border-color var(--fast), box-shadow var(--fast);
  -webkit-appearance:none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color:var(--olive-light);
  box-shadow:0 0 0 3px rgba(92,107,71,0.1);
}
.form-textarea { resize:vertical; min-height:130px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-md); }

/* ── WooCommerce overrides ───────────────────────────────── */
.woocommerce-notices-wrapper { margin-bottom: var(--sp-md); }
.woocommerce-message, .woocommerce-info {
  border-top: 3px solid var(--olive) !important;
  background: var(--cream) !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  padding: var(--sp-md) var(--sp-lg) !important;
}
.woocommerce-error { border-top-color: #c0392b !important; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--ink) !important; color: var(--white) !important;
  font-family: var(--sans) !important; font-size: var(--fs-label) !important;
  font-weight: 500 !important; letter-spacing: 0.14em !important;
  text-transform: uppercase !important; border-radius: 0 !important;
  padding: 0.875rem 2rem !important; transition: background var(--fast) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--olive-dark) !important; }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--olive) !important; }
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--olive-dark) !important; }

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  border: 1px solid var(--border) !important; background: var(--cream) !important;
  border-radius: 0 !important; padding: 13px 16px !important;
  font-family: var(--sans) !important; font-size: 0.9375rem !important;
  box-shadow: none !important;
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus {
  border-color: var(--olive-light) !important;
  box-shadow: 0 0 0 3px rgba(92,107,71,0.1) !important;
  outline: none !important;
}
.woocommerce form .form-row label {
  font-size: var(--fs-label) !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; font-weight: 500 !important;
}
.woocommerce table.shop_table th {
  font-size: var(--fs-label) !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; font-weight: 500 !important;
  background: var(--cream-mid) !important;
}

/* ── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── 404 ─────────────────────────────────────────────────── */
.error-page {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--sp-3xl) var(--sp-md);
}
.error-page__num {
  font-family: var(--serif); font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 700; color: var(--cream-mid); line-height: 1;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .why-vintage__body { grid-template-columns: 1fr; }
  .why-vintage__body-div { display: none; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
}

@media (max-width: 900px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2,1fr); }
  .why-vintage__stats { grid-template-columns: 1fr; }
  .why-vintage__stat + .why-vintage__stat { border-left: none; border-top: 1px solid rgba(196,162,101,0.12); padding-top: var(--sp-md); margin-top: var(--sp-md); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header__inner { grid-template-columns: 1fr auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .journal-section__top { flex-direction: column; align-items: flex-start; }
  .why-vintage__quote { padding: var(--sp-lg); }
}

@media (max-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-sm); }
  .journal-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { width: 100%; }
  .newsletter__btn { width: 100%; text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE — V2 REDESIGN
   ═══════════════════════════════════════════════════════════ */

/* Dark ink hero header */
.shop-hero {
  background: var(--ink);
  padding: var(--sp-2xl) 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.shop-hero .label {
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-sm);
}
.shop-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}
.shop-hero__sub {
  color: rgba(255,255,255,0.38);
  font-size: 1rem;
  max-width: 380px;
  margin-inline: auto;
}

/* Two-column layout: sidebar + products */
.shop-layout-v2 {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: var(--sp-2xl);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-3xl);
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-lg));
}
.shop-sidebar__section {
  padding-bottom: var(--sp-xl);
  margin-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}
.shop-sidebar__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.shop-sidebar__heading {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
}
.shop-filter-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.shop-filter-item {
  display: block;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: var(--gray);
  border-radius: 8px;
  transition: background var(--fast), color var(--fast);
  line-height: 1.4;
}
.shop-filter-item:hover,
.shop-filter-item.is-active {
  background: var(--olive-tint);
  color: var(--olive-dark);
}
.shop-filter-item--has-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-filter-count {
  font-size: 0.75rem;
  background: var(--cream-mid);
  color: var(--gray);
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.shop-filter-clear {
  display: inline-block;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  border-bottom: 1px solid rgba(92,107,71,0.3);
  padding-bottom: 2px;
  transition: border-color var(--fast), color var(--fast);
}
.shop-filter-clear:hover { border-color: transparent; }

/* Results area */
.shop-main { min-width: 0; }

.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-md);
  margin-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}
.shop-bar__count {
  font-size: 0.8125rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* WooCommerce sort select — override default */
.woocommerce-ordering select {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  background: var(--white) !important;
  padding: 8px 32px 8px 14px !important;
  font-family: var(--sans) !important;
  font-size: 0.875rem !important;
  color: var(--charcoal) !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

/* ── WATCH CARD GRID ─────────────────────────────────────── */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card wrapper */
.wc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.wc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(28,28,26,0.1);
  border-color: transparent;
}

/* Image area */
.wc-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-mid);
  display: block;
}
.wc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.wc-card:hover .wc-card__img img { transform: scale(1.06); }

.wc-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-mid);
}
.wc-card__placeholder svg { width: 56px; height: 56px; opacity: 0.16; }

/* "Sold" frosted veil */
.wc-card__veil {
  position: absolute;
  inset: 0;
  background: rgba(13,13,11,0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wc-card__veil span {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
}

/* "Sale" pill badge — only shown when in stock */
.wc-card__sale-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

/* Card body */
.wc-card__body {
  padding: 1.125rem 1.25rem 1.375rem;
}
.wc-card__brand {
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 5px;
}
.wc-card__name {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 4px;
}
.wc-card__name a { color: inherit; }
.wc-card__name a:hover { color: var(--olive-dark); }
.wc-card__ref {
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-md);
}
.wc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-sm);
  margin-top: var(--sp-sm);
  border-top: 1px solid var(--cream-mid);
}
.wc-card__price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}
.wc-card__price del {
  font-size: 0.875rem;
  color: var(--gray-light);
  font-weight: 400;
  margin-right: 4px;
}
.wc-card__price ins { text-decoration: none; }
.wc-card__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
  transition: gap var(--fast), color var(--fast);
}
.wc-card:hover .wc-card__cta { gap: 9px; color: var(--olive-dark); }

/* Shop empty state */
.shop-empty {
  text-align: center;
  padding: var(--sp-3xl) 0;
}
.shop-empty__icon {
  color: var(--border);
  margin-bottom: var(--sp-xl);
}
.shop-empty__icon svg { width: 80px; height: 80px; }
.shop-empty h2 { color: var(--charcoal); margin-bottom: var(--sp-sm); }
.shop-empty p {
  color: var(--gray);
  max-width: 440px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}

/* Shop pagination */
.shop-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-2xl);
  flex-wrap: wrap;
}
.shop-pager .page-numbers {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  padding-inline: 14px;
  transition: all var(--fast);
}
.shop-pager .page-numbers:hover,
.shop-pager .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.shop-pager .page-numbers.dots {
  border: none;
  cursor: default;
  padding-inline: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE — V2 REDESIGN
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--gray-light);
  padding: var(--sp-lg) 0 var(--sp-md);
  flex-wrap: wrap;
}
.pdp-breadcrumb a { color: var(--gray-light); transition: color var(--fast); }
.pdp-breadcrumb a:hover { color: var(--olive); }
.pdp-breadcrumb span { color: var(--charcoal); font-weight: 500; }
.pdp-breadcrumb svg { flex-shrink: 0; opacity: 0.4; }

/* Tighten product layout gap — 8rem is too wide for the new side-by-side gallery */
.product-layout {
  gap: var(--sp-xl);
}

/* Gallery: override old styles to use side-by-side vertical-thumb layout */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-md));
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: start;
}
.product-gallery--solo {
  grid-template-columns: 1fr;
}

/* Vertical thumbnail strip */
.gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: calc(75vh - var(--header-h));
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-width: none;
  /* remove old 4-column grid */
  grid-template-columns: unset;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: border-color var(--fast), opacity var(--fast);
}
.gallery__thumb:hover,
.gallery__thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Main image panel */
.gallery__main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-mid);
  aspect-ratio: 3/4;
  position: relative;
  margin-bottom: 0;
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

/* Sold badge on image */
.gallery__sold-veil {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13,13,11,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.88);
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  padding: 7px 20px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.gallery__empty {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__empty svg { width: 80px; height: 80px; opacity: 0.15; }

/* Product info column */
.product-info { padding-top: 0; }

/* "Verified Authentic" badge */
.pdp-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(92,107,71,0.08);
  border: 1px solid rgba(92,107,71,0.22);
  color: var(--olive-dark);
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: var(--sp-lg);
}
.pdp-auth-badge svg { flex-shrink: 0; }

/* Short description */
.pdp-short-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}

/* Add to cart container */
.pdp-actions { margin-bottom: var(--sp-xl); }
.pdp-actions .quantity { display: none; }
.pdp-actions .single_add_to_cart_button {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
  padding-block: 1rem !important;
  font-size: var(--fs-label) !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
}

/* Sold state box */
.pdp-sold-box {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}
.pdp-sold-tag {
  display: inline-block;
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}
.pdp-sold-box > p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.pdp-enquire-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding-block: 1rem !important;
  font-size: var(--fs-label) !important;
  letter-spacing: 0.14em !important;
}

/* Trust items: vertical list with icon + label + description */
.pdp-trust {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: var(--sp-xl);
}
.pdp-trust__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--border);
}
.pdp-trust__item:last-child { border-bottom: none; }
.pdp-trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--olive-dark);
}
.pdp-trust__icon svg { width: 15px; height: 15px; }
.pdp-trust__text { flex: 1; }
.pdp-trust__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.pdp-trust__text span {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Related watches section */
.pdp-related {
  padding-block: var(--sp-3xl);
  border-top: 1px solid var(--border);
}
.pdp-related__hd {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.pdp-related__hd h2 { color: var(--charcoal); }

/* ── Responsive overrides ────────────────────────────────── */
@media (max-width: 1100px) {
  .wc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  /* Shop: stack sidebar above grid */
  .shop-layout-v2 {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg);
  }
  .shop-sidebar__section {
    flex: 1;
    min-width: 160px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding-right: var(--sp-lg);
  }
  .shop-sidebar__section:last-of-type {
    border-right: none;
    padding-right: 0;
  }

  /* Single product: stack gallery above info */
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}

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

@media (max-width: 768px) {
  .shop-sidebar { flex-direction: column; }
  .shop-sidebar__section {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--sp-md);
    margin-bottom: var(--sp-md);
  }
}

@media (max-width: 640px) {
  .wc-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Thumbs go horizontal on mobile */
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .gallery__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    order: 2;
  }
  .gallery__thumb { width: 60px; height: 60px; }
  .gallery__main { order: 1; }
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME — complete override of all dark sections
   ═══════════════════════════════════════════════════════════ */

/* ── Header: transparent on hero, solid on scroll ──────── */
body.home .site-header {
  color: var(--white);
  background: transparent;
}
body.home .site-header.header--scrolled {
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--charcoal);
}

/* Homepage: give page-wrap its normal top-padding back */
body.home .page-wrap { padding-top: var(--header-h); }

/* ── Mobile nav: light version ─────────────────────────── */
.mobile-nav {
  background: var(--white);
  box-shadow: -4px 0 40px rgba(0,0,0,0.08);
}
.mobile-nav a { color: var(--charcoal); }
.mobile-nav a:hover { color: var(--olive); }

/* ── Button: olive green primary ───────────────────────── */
.btn--olive {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn--olive:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

/* ── HERO — light split layout ─────────────────────────── */
.hero {
  background: var(--white);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: var(--sp-2xl);
  border-bottom: 1px solid var(--border);
  /* reset old absolute-positioning approach */
  position: relative;
  overflow: hidden;
}

/* Hide legacy dark-theme hero elements */
.hero__bg,
.hero__lines,
.hero__scroll,
.hero__divider { display: none !important; }

/* Subtle warm gradient in top-right corner */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, var(--cream-mid) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Split grid */
.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--sp-2xl);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Text side */
.hero__content {
  position: static;
  max-width: none;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: var(--sp-lg);
}
/* Remove old gold-line ::before */
.hero__eyebrow::before { display: none; }
.hero__eyebrow .label { color: var(--olive); }

.hero__heading {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-lg);
}
.hero__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  display: inline;
}
.hero__heading strong,
.hero__heading span {
  font-weight: 700;
  display: block;
  color: var(--charcoal);
}

.hero__gold-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--sp-lg);
}

.hero__sub {
  color: var(--gray);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}

.hero__actions { margin-bottom: var(--sp-lg); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero__trust-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* Visual placeholder (right side) */
.hero__visual { position: relative; padding-bottom: var(--sp-lg); }
.hero__visual-frame {
  aspect-ratio: 3/4;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  position: relative;
  overflow: hidden;
}
.hero__visual-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: 10px;
  pointer-events: none;
}
.hero__visual-frame svg {
  width: 100px; height: 100px;
  color: var(--gray-light);
  opacity: 0.25;
}
.hero__visual-frame span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gray-light);
  letter-spacing: 0.06em;
}
.hero__visual-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__visual-badge svg { flex-shrink: 0; }

/* ── COLLECTION SECTION — light ────────────────────────── */
.collection-section { background: var(--cream-mid); }
.collection-section__top .label { color: var(--olive); }
.collection-section__title { color: var(--charcoal); }
.collection-section__sub { color: var(--gray); }

.w-card {
  background: var(--white);
  border: 1px solid var(--border);
}
.w-card:hover { border-color: rgba(92,107,71,0.35); }

.w-card__img { background: var(--cream-mid); }

.w-card__overlay {
  background: rgba(250,249,246,0.6);
}
.w-card__overlay .btn--ghost {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--border);
}

.w-card__placeholder { background: var(--cream-mid); }
.w-card__placeholder svg { opacity: 0.2; }

/* Sold / Sale badge: charcoal pill */
.w-card__sold {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(28,28,26,0.75);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.w-card__sale {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

.w-card__brand { color: var(--olive); }
.w-card__name { color: var(--charcoal); }
.w-card__name a { color: inherit; }
.w-card__name a:hover { color: var(--olive-dark); }
.w-card__ref { color: var(--gray-light); }
.w-card__footer { border-top-color: var(--border); }
.w-card__price { color: var(--charcoal); }
.w-card__arrow { color: var(--olive); }

/* Placeholder cards (no products yet) */
.w-card--placeholder .w-card__brand { color: var(--gray-light); }
.w-card--placeholder .w-card__name { color: var(--gray); font-size: 0.9375rem; }
.w-card--placeholder .w-card__ref { color: var(--gray-light); opacity: 0.6; }
.w-card--placeholder .w-card__price { color: var(--gray-light); opacity: 0.5; }

/* ── WHY VINTAGE — light ───────────────────────────────── */
.why-vintage { background: var(--white); }
.why-vintage__header .label { color: var(--olive); }
.why-vintage__heading { color: var(--charcoal); }
.why-vintage__heading em { color: var(--olive); }
.why-vintage__body-div { background: var(--border); min-height: 80px; }
.why-vintage__text { color: var(--gray); }
.why-vintage__quote {
  border-color: rgba(196,162,101,0.3);
  background: var(--cream-mid);
}
.why-vintage__quote p { color: var(--charcoal); }
.why-vintage__quote cite { color: var(--olive); }
.why-vintage__stats { border-top-color: var(--border); }
.why-vintage__stat + .why-vintage__stat { border-left-color: var(--border); }
.why-vintage__stat-num { color: var(--olive); }
.why-vintage__stat-text { color: var(--gray); }

/* ── HOW IT WORKS — light ──────────────────────────────── */
.how-it-works { background: var(--cream-mid); }
.how-it-works::before { color: rgba(92,107,71,0.04); }
.how-it-works__header .label { color: var(--olive); }
.how-it-works__header h2 { color: var(--charcoal); }
.steps::before {
  background: linear-gradient(to right,
    transparent,
    rgba(92,107,71,0.25),
    transparent);
}
.step__num-wrap {
  border-color: rgba(92,107,71,0.3);
  background: rgba(92,107,71,0.06);
}
.step__num { color: var(--olive); }
.step__icon { color: var(--olive); opacity: 0.65; }
.step__title { color: var(--charcoal); }
.step__desc { color: var(--gray); }

/* ── JOURNAL SECTION — light ───────────────────────────── */
.journal-section { background: var(--white); }
.journal-section__header {
  background: transparent;
  padding-top: var(--sp-3xl);
}
.journal-section__top .label { color: var(--olive); }
.journal-section__top h2 { color: var(--charcoal); }

/* ── NEWSLETTER — light ────────────────────────────────── */
.newsletter { background: var(--cream-mid); }
.newsletter::before { border-color: rgba(92,107,71,0.1); }
.newsletter .label { color: var(--olive); }
.newsletter h2 { color: var(--charcoal); }
.newsletter h2 em { color: var(--olive); }
.newsletter__sub { color: var(--gray); }
.newsletter__form {
  border-color: var(--border);
  background: var(--white);
}
.newsletter__form:focus-within { border-color: var(--olive); }
.newsletter__input { color: var(--charcoal); }
.newsletter__input::placeholder { color: var(--gray-light); }
.newsletter__btn {
  background: var(--olive);
  color: var(--white);
}
.newsletter__btn:hover { background: var(--olive-dark); }
.newsletter__note { color: var(--gray-light); }

/* ── SHOP PAGE HERO — light ────────────────────────────── */
.shop-hero {
  background: var(--cream-mid);
  border-bottom: 1px solid var(--border);
}
.shop-hero .label { color: var(--olive); }
.shop-hero__title { color: var(--charcoal); }
.shop-hero__sub { color: var(--gray); }

/* ── HERO RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .hero {
    min-height: auto;
    padding-block: var(--sp-xl);
  }
  .hero__sub { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero__trust { gap: 8px; }
  .hero__trust-dot { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE v2 — dripdrop-inspired layout
   Ticker · Hero · Categories · New Arrivals · Trust · Story
   ═══════════════════════════════════════════════════════════ */

/* ── CSS variable additions ─────────────────────────────── */
:root {
  --ticker-h: 36px;
  --total-header-h: calc(var(--ticker-h) + var(--header-h)); /* 112px */
}

/* ── page-wrap: account for ticker (36px) + nav (76px) = 112px ── */
.page-wrap { padding-top: var(--total-header-h) !important; }

/* ── HEADER RESTRUCTURE ─────────────────────────────────── */
.site-header {
  height: auto;          /* override old fixed 76px height */
  display: flex;
  flex-direction: column; /* ticker on top, nav below — NOT side by side */
  align-items: stretch;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}

/* Ticker bar */
.ticker-bar {
  background: var(--olive);
  height: var(--ticker-h);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-item {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 var(--sp-lg);
}
.ticker-sep {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); } /* 4 repeats → move 1/4 = seamless */
}

/* Nav bar */
.header__bar {
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

/* Homepage: transparent over dark hero */
body.home .header__bar {
  background: transparent;
  color: var(--white);
}
body.home .site-header.header--scrolled .header__bar {
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--charcoal);
}
/* Other pages: always solid */
body:not(.home) .header__bar {
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  color: var(--charcoal);
}

/* Logo / nav / actions inherit .header__bar color */
body.home .header__bar .site-logo,
body.home .header__bar .primary-nav a,
body.home .header__bar .hdr-btn,
body.home .header__bar .menu-toggle span {
  color: inherit;
}
body.home .site-header.header--scrolled .header__bar .site-logo,
body.home .site-header.header--scrolled .header__bar .primary-nav a,
body.home .site-header.header--scrolled .header__bar .hdr-btn {
  color: var(--charcoal);
}
body.home .header__bar .menu-toggle span {
  background: currentColor;
}

/* ── SEARCH OVERLAY ─────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,8,0.96);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.search-overlay__close:hover { color: var(--white); }
.search-overlay__close svg { width: 24px; height: 24px; display: block; }
.search-overlay__inner { width: 100%; max-width: 680px; padding: 0 var(--sp-lg); }
.search-overlay__label {
  display: block;
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-md);
}
.search-overlay__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: var(--sp-sm);
  gap: var(--sp-md);
  transition: border-color 0.2s;
}
.search-overlay__row:focus-within { border-color: var(--gold); }
.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  caret-color: var(--gold);
}
.search-overlay__input::placeholder { color: rgba(255,255,255,0.2); }
.search-overlay__submit {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.search-overlay__submit:hover { color: var(--white); }
.search-overlay__submit svg { width: 22px; height: 22px; display: block; }
.search-overlay__hint {
  margin-top: var(--sp-md);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.25);
  font-family: var(--sans);
}

/* ── HERO ───────────────────────────────────────────────── */
.site-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink); /* dark fallback while video loads */
}
.site-hero__media {
  position: absolute;
  inset: 0;
}
.site-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.6) 100%
  );
}
.site-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-lg);
  padding: var(--sp-2xl);
}
.site-hero__eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.site-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.btn--hero {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 16px 52px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  display: inline-block;
}
.btn--hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── CATEGORY SECTION ───────────────────────────────────── */
.cat-section {
  padding: var(--sp-2xl) 0;
  background: var(--white);
}
.cat-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  gap: var(--sp-md);
}
.cat-section__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.cat-view-all {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.cat-view-all:hover { gap: 10px; }

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
/* "All Watches" spans full width */
.cat-card--featured { grid-column: 1 / -1; }

/* Base card */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--charcoal);
  display: block;
  text-decoration: none;
  height: 280px;
  transition: transform 0.35s ease;
}
.cat-card--featured { height: 200px; }
.cat-card--ph { cursor: default; opacity: 0.55; }
.cat-card:not(.cat-card--ph):hover { transform: scale(1.01); }

.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card__img { transform: scale(1.05); }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0,0,0,0.65) 100%
  );
}
/* For featured (landscape), gradient from left */
.cat-card--featured .cat-card__overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6) 0%,
    transparent 60%
  );
}

.cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-card--featured .cat-card__body {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: auto;
  max-width: 380px;
}

.cat-card__label {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.cat-card--featured .cat-card__label {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
}
.cat-card__count {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── NEW ARRIVALS ───────────────────────────────────────── */
.arrivals-section {
  padding: var(--sp-2xl) 0;
  background: var(--cream-mid);
}
.arrivals-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
  gap: var(--sp-md);
}
.arrivals-section__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.arrivals-view-all {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.arrivals-view-all:hover { gap: 10px; }

/* 4-column grid */
.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Product card */
.arr-card {
  background: var(--white);
  border: 1px solid #D5CFC5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.arr-card:hover {
  border-color: rgba(92,107,71,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

/* Image area: 3:4 portrait */
.arr-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-mid);
  text-decoration: none;
}
.arr-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.arr-card:hover .arr-card__img-wrap img { transform: scale(1.04); }

/* Placeholder SVG */
.arr-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.arr-card__ph svg {
  width: 60px; height: 60px;
  color: var(--gray-light); opacity: 0.35;
}

/* Diagonal "Sold" ribbon — top-right corner */
.arr-card__ribbon {
  position: absolute;
  top: 16px; right: -26px;
  width: 90px;
  background: rgba(28,28,26,0.82);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  backdrop-filter: blur(4px);
}

/* Sale pill */
.arr-card__sale-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
}

/* Card body — olive dark */
.arr-card__body {
  background: var(--olive-dark);
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.arr-card__brand {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.arr-card__name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin: 0;
}
.arr-card__name a {
  color: inherit; text-decoration: none;
}
.arr-card__name a:hover { color: var(--gold-light); }
.arr-card__ref {
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}
.arr-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: var(--sp-sm);
}
.arr-card__price {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cream);
}
.arr-card__price del {
  color: rgba(255,255,255,0.32);
  font-weight: 400;
  font-size: 0.8125rem;
  margin-right: 4px;
}
.arr-card__price ins { text-decoration: none; color: var(--gold); }
.arr-card__view {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transition: gap 0.2s, color 0.2s;
}
.arr-card__view:hover { gap: 8px; color: var(--gold-light); }

/* Placeholder/empty card */
.arr-card--empty { opacity: 0.55; cursor: default; }
.arr-card--empty:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.trust-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(92,107,71,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}
.trust-item__icon svg { width: 20px; height: 20px; }
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-item__text strong {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-item__text span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── INSTAGRAM REELS ────────────────────────────────────── */
.insta-section {
  padding: var(--sp-3xl) 0;
  background: var(--charcoal);
}
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.insta-header__heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0;
  line-height: 1.15;
}
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.insta-follow-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.insta-follow-btn svg { flex-shrink: 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.insta-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insta-reel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.insta-reel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── BRAND STORY ────────────────────────────────────────── */
.brand-story {
  padding: var(--sp-3xl) 0;
  background: var(--cream-mid);
}
.brand-story__inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: var(--sp-2xl);
  align-items: center;
}
/* Image side (left, 60%) */
.brand-story__visual {
  position: relative;
}
.brand-story__img-ph {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-story__img-ph svg {
  width: 120px; height: 120px;
  color: var(--gray-light); opacity: 0.2;
}
/* Gold corner accent */
.brand-story__visual::before {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(196,162,101,0.2);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.brand-story__img-ph { position: relative; z-index: 1; }
.brand-story__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

/* Text side (right, 40%) */
.brand-story__label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: var(--sp-md);
}
.brand-story__heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}
.brand-story__heading em {
  font-style: italic;
  color: var(--olive);
  display: block;
}
.brand-story__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: var(--sp-md);
}
.brand-story__cta { margin-top: var(--sp-lg); }

/* ── NEWSLETTER (light override) ────────────────────────── */
.newsletter { background: var(--white); }
.newsletter .label { color: var(--olive); }
.newsletter h2 { color: var(--charcoal); }
.newsletter h2 em { color: var(--olive); }
.newsletter__sub { color: var(--gray); }
.newsletter__form { background: var(--cream-mid); border-color: var(--border); }
.newsletter__form:focus-within { border-color: var(--olive); }
.newsletter__input { color: var(--charcoal); }
.newsletter__input::placeholder { color: var(--gray-light); }
.newsletter__btn { background: var(--olive); color: var(--white); }
.newsletter__btn:hover { background: var(--olive-dark); }
.newsletter__note { color: var(--gray-light); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .arrivals-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card--featured { grid-column: 1 / -1; }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg) var(--sp-xl); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story__inner { grid-template-columns: 1fr; }
  .brand-story__visual { max-width: 480px; margin: 0 auto; }
  .brand-story__visual::before { display: none; }
}

@media (max-width: 640px) {
  .cat-section { padding: var(--sp-xl) 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { height: 200px; }
  .cat-card--featured { height: 160px; }
  .arrivals-section { padding: var(--sp-xl) 0; }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { align-items: flex-start; }
  .brand-story { padding: var(--sp-xl) 0; }
  .insta-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
  .insta-section { padding: var(--sp-xl) 0; }
  .ticker-item { padding: 0 var(--sp-md); }
  .site-hero__eyebrow { display: none; }
  .site-hero__heading { font-size: 1.75rem; }
}

/* ============================================================
   SHOP PAGE — Filter Bar + Results
============================================================ */

/* ── Page hero sub text ──────────────────────────────────── */
.page-hero__sub {
  color: var(--gray);
  font-size: 1.0625rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ── Shop hero (light override) ──────────────────────────── */
.shop-hero {
  background: var(--cream);
  padding: 28px 0 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.shop-hero .label { color: var(--olive); display: block; margin-bottom: 4px; }
.shop-hero__title { color: var(--charcoal); font-size: clamp(1.375rem, 2.5vw, 1.875rem) !important; font-weight: 300; letter-spacing: -0.01em; }
.shop-hero__sub   { color: var(--gray); font-size: 0.9375rem; margin-top: 4px; }

/* ── Filter bar ──────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: var(--total-header-h);
  z-index: 50;
}
.filter-bar__inner {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-group__label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.filter-select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A85' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 32px 8px 12px;
  font-size: 0.875rem;
  color: var(--charcoal);
  cursor: pointer;
  min-width: 120px;
  transition: border-color 0.2s;
}
.filter-select:focus {
  outline: none;
  border-color: var(--olive);
}
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding-bottom: 2px;
}
.filter-toggle input[type="checkbox"] { display: none; }
.filter-toggle__track {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.filter-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.filter-toggle input:checked ~ .filter-toggle__track { background: var(--olive); }
.filter-toggle input:checked ~ .filter-toggle__track .filter-toggle__thumb { transform: translateX(16px); }
.filter-toggle__label {
  font-size: 0.875rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.filter-bar__spacer { flex: 1; min-width: 0; }
.filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 2px;
}
.filter-clear:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ── Results bar ─────────────────────────────────────────── */
.shop-results-bar {
  display: flex;
  align-items: center;
  padding: var(--sp-lg) 0 var(--sp-md);
  margin-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}
.shop-results-count {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 0.875rem;
  color: var(--gray);
}
.shop-results-count strong { color: var(--charcoal); font-weight: 600; }
.shop-results-tag {
  background: var(--olive-tint);
  color: var(--olive-dark);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ── Pagination ──────────────────────────────────────────── */
.shop-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: var(--sp-2xl) 0 var(--sp-3xl);
}
.shop-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--charcoal);
  font-family: var(--sans);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.shop-pager .page-numbers:hover { border-color: var(--olive); color: var(--olive); }
.shop-pager .page-numbers.current {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.shop-pager .page-numbers.dots { border: none; color: var(--gray-light); }

/* ── Empty state ─────────────────────────────────────────── */
.shop-empty {
  text-align: center;
  padding: var(--sp-3xl) 0 var(--sp-3xl);
}
.shop-empty__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto var(--sp-lg);
  color: var(--gray-light);
}
.shop-empty h2 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: var(--sp-sm);
}
.shop-empty p {
  color: var(--gray);
  max-width: 400px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
============================================================ */

.founder-quote {
  padding: var(--sp-3xl) 0;
  background: var(--cream);
}
.founder-quote__figure {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: var(--sp-xl);
}
.founder-quote__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-quote__name {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.founder-quote__role { font-size: 0.8125rem; color: var(--gray); }

.gold-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.45;
}

/* Origin story */
.origin-story { padding: var(--sp-3xl) 0; }
.origin-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.origin-story__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
}
.origin-story__img-wrap {
  aspect-ratio: 4/5;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  color: var(--gray-light);
  font-size: 0.8125rem;
}
.origin-story__img-wrap svg { width: 56px; height: 56px; }
.origin-story__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  margin-bottom: var(--sp-lg);
  color: var(--charcoal);
}
.origin-story__text p { color: var(--gray); line-height: 1.8; }

/* Promise grid */
.about-promise { padding: var(--sp-3xl) 0; background: var(--cream); }
.about-promise__hd { text-align: center; margin-bottom: var(--sp-2xl); }
.about-promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl) var(--sp-2xl);
}
.promise-item { text-align: center; }
.promise-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--sp-md);
  color: var(--olive);
}
.promise-item__icon svg { width: 100%; height: 100%; }
.promise-item__title {
  font-family: var(--serif);
  font-size: 1.125rem;
  margin-bottom: var(--sp-xs);
  color: var(--charcoal);
}
.promise-item__desc { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* Closing CTA */
.about-close { padding: var(--sp-3xl) 0; background: var(--charcoal); }
.about-close__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.about-close__quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: var(--sp-xl);
}
.about-close .btn--dark {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.about-close .btn--dark:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

/* ============================================================
   CATEGORIES PAGE
============================================================ */

.cats-section { padding: var(--sp-2xl) 0 var(--sp-3xl); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cats-cta {
  background: var(--cream);
  padding: var(--sp-2xl) 0;
  border-top: 1px solid var(--border);
}
.cats-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}
.cats-cta__heading { font-size: 1.375rem; margin-bottom: var(--sp-xs); color: var(--charcoal); }
.cats-cta__sub     { font-size: 0.9375rem; color: var(--gray); }

/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-section { padding: var(--sp-3xl) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-3xl);
  align-items: start;
}
.contact-col__heading { font-size: 1.375rem; margin-bottom: var(--sp-xl); color: var(--charcoal); }
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.contact-submit {
  width: 100%;
  justify-content: center;
  padding-block: 1rem;
}
.contact-success {
  margin-top: var(--sp-md);
  color: var(--olive);
  font-size: 0.9375rem;
}
.contact-info-block { margin-bottom: var(--sp-xl); }
.contact-info-block .label { display: block; margin-bottom: var(--sp-sm); }
.contact-info-link {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: var(--sp-xs);
  transition: color 0.2s;
}
.contact-info-link:hover { color: var(--olive); }
.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.2s;
  margin-bottom: var(--sp-sm);
}
.contact-whatsapp-btn:hover { background: #1aad54; color: var(--white); }
.contact-info-note { font-size: 0.8125rem; color: var(--gray); }

/* ============================================================
   RESPONSIVE — new pages
============================================================ */
@media (max-width: 1024px) {
  .filter-bar__inner { gap: var(--sp-md); }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-cta__inner { flex-direction: column; align-items: flex-start; }
  .origin-story__inner { grid-template-columns: 1fr; }
  .origin-story__img { order: -1; max-width: 420px; margin: 0 auto; }
  .about-promise__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .contact-row { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cats-cta__inner { flex-direction: column; align-items: flex-start; }
  .about-promise__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .founder-quote { padding: var(--sp-2xl) 0; }
  .founder-quote__text { font-size: 1.25rem; }
  .origin-story { padding: var(--sp-2xl) 0; }
  .filter-bar { padding: 10px 0; }
  .filter-group__label { display: none; }
  .filter-bar__inner { gap: 8px; }
  .filter-select { min-width: 100px; font-size: 0.8125rem; }
  .shop-pager .page-numbers { min-width: 36px; height: 36px; font-size: 0.8125rem; }
  .contact-section { padding: var(--sp-2xl) 0; }
}

/* ============================================================
   COMPACT PAGE HEROES (overrides all above — must stay last)
============================================================ */
.page-hero {
  padding: 28px 0 16px !important;
}
.page-hero h1 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem) !important;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.page-hero .label { margin-bottom: 4px; }
.page-hero p,
.page-hero__sub {
  font-size: 0.9375rem;
  margin-top: 4px;
  margin-bottom: 0;
}

/* ============================================================
   PRICE RANGE SLIDER
============================================================ */
.filter-group--price {
  min-width: 220px;
  flex-shrink: 0;
}
.price-slider { position: relative; }
.price-slider__vals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.price-slider__sep { color: var(--gray-light); margin: 0 4px; }
.price-slider__track {
  position: relative;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 10px 0;
}
.price-slider__fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  pointer-events: none;
}
.psr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}
.psr::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--olive);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.psr::-webkit-slider-thumb:hover {
  border-color: var(--olive-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.psr::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--olive);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.psr:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(92,107,71,0.2);
}

@media (max-width: 1100px) {
  .filter-group--price { min-width: 160px; }
}
@media (max-width: 900px) {
  .filter-group--price { width: 100%; min-width: 0; }
  .price-slider__vals { justify-content: flex-start; gap: var(--sp-xs); }
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 1.375rem !important; }
  .shop-hero__title { font-size: 1.25rem !important; }
}

/* ── Shop sidebar layout ──────────────────────────────────── */
.shop-layout {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2xl);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-3xl);
}
.shop-sidebar {
  width: 190px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--total-header-h) + var(--sp-lg));
  max-height: calc(100vh - var(--total-header-h) - var(--sp-3xl));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.shop-sidebar::-webkit-scrollbar { width: 3px; }
.shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}
.shop-sidebar::-webkit-scrollbar-thumb:hover { background: var(--olive); }
.shop-sidebar__head {
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-lg);
}
.shop-sidebar__title {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.shop-sidebar__count {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}
.shop-main { flex: 1; min-width: 0; }

/* Sidebar filter items */
.sf {
  margin-bottom: var(--sp-lg);
}
.sf__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6563rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.sf__label--inline {
  display: inline;
  margin-bottom: 0;
  vertical-align: middle;
}
.sf__select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238A8A85' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 26px 6px 9px;
  font-size: 0.8125rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.2s;
}
.sf__select:focus { outline: none; border-color: var(--olive); }
.sf__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.sf__toggle input[type="checkbox"] { display: none; }
.sf__clear {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: var(--sp-sm);
  transition: color 0.2s;
}
.sf__clear:hover { color: var(--charcoal); }

/* Product grid (3-col inside sidebar layout) */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl) var(--sp-lg);
}

/* Sidebar layout responsive */
@media (max-width: 900px) {
  .shop-layout { flex-direction: column; gap: var(--sp-lg); }
  .shop-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--sp-lg);
  }
  .shop-sidebar form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md) var(--sp-lg);
    align-items: end;
  }
  .shop-sidebar__head { grid-column: 1 / -1; }
  .sf { margin-bottom: 0; }
  .sf__clear { grid-column: 1 / -1; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
}


/* ════════════════════════════════════════════════════════════
   JOURNAL — listing, single post, archive
   ════════════════════════════════════════════════════════════ */

/* ── Shared meta row ──────────────────────────────────────── */
.j-post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--gray);
  flex-wrap: wrap;
}
.j-meta-sep { opacity: 0.4; }

/* ── Category tag chip ────────────────────────────────────── */
.j-cat-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
  background: rgba(86,101,60,0.09);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  margin-bottom: var(--sp-sm);
  transition: background 0.2s, color 0.2s;
}
.j-cat-tag:hover { background: rgba(86,101,60,0.16); }

/* ── Journal listing container ────────────────────────────── */
.journal-container {
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}

/* ── Featured post ────────────────────────────────────────── */
.j-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid var(--border);
}
.j-featured__img-wrap {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.j-featured__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.j-featured__img--ph {
  background: var(--cream-mid);
  width: 100%; height: 100%;
}
.j-featured__img-wrap:hover .j-featured__img { transform: scale(1.04); }
.j-featured__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}
.j-featured__title a { color: inherit; text-decoration: none; }
.j-featured__title a:hover { color: var(--olive-dark); }
.j-featured__excerpt {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.j-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
  text-decoration: none;
  margin-top: var(--sp-lg);
  transition: gap 0.2s, color 0.2s;
}
.j-featured__cta:hover { gap: 11px; }

/* ── Grid heading ─────────────────────────────────────────── */
.journal-grid-label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--sp-xl);
}

/* ── Pagination ───────────────────────────────────────────── */
.journal-pagination { margin-top: var(--sp-3xl); }
.journal-pagination ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0; margin: 0;
}
.journal-pagination .page-numbers {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.journal-pagination .page-numbers.current,
.journal-pagination .page-numbers:hover {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}
.journal-pagination .prev,
.journal-pagination .next { width: auto; padding: 0 16px; }

/* ── Empty state ──────────────────────────────────────────── */
.journal-empty {
  text-align: center;
  padding: var(--sp-3xl) 0;
  max-width: 480px;
  margin: 0 auto;
}
.journal-empty svg { color: var(--gray-light); margin-bottom: var(--sp-lg); }
.journal-empty h2 { margin-bottom: var(--sp-md); }
.journal-empty p  { color: var(--gray); line-height: 1.7; }

/* ── Single post — breadcrumb ─────────────────────────────── */
.breadcrumb {
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--gray);
}
.breadcrumb__list a { color: var(--gray); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--olive-dark); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--charcoal); }

/* ── Single post — header ─────────────────────────────────── */
.post-header {
  padding: var(--sp-2xl) 0 var(--sp-xl);
}
.post-header__inner {
  max-width: 800px;
}
.post-cat-tag { margin-bottom: var(--sp-md); }
.post-header__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}
.post-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--gray);
}
.post-meta-author strong { color: var(--charcoal); }
.post-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Single post — hero image ─────────────────────────────── */
.post-hero-img {
  margin-bottom: var(--sp-2xl);
}
.post-hero-img__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ── Single post — body ───────────────────────────────────── */
.post-body {
  max-width: 760px;
  padding-bottom: var(--sp-3xl);
}

/* ── Tags ─────────────────────────────────────────────────── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}
.post-tag {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--gray);
  background: var(--cream-mid);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.post-tag:hover { color: var(--olive-dark); background: rgba(86,101,60,0.1); }

/* ── Share ────────────────────────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}
.post-share__label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 4px;
}
.post-share__btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.post-share__btn:hover { border-color: var(--olive); color: var(--olive); background: rgba(86,101,60,0.05); }

/* ── Back link ────────────────────────────────────────────── */
.post-back {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}
.post-back__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.post-back__link:hover { color: var(--olive-dark); gap: 10px; }

/* ── Related posts ────────────────────────────────────────── */
.post-related {
  background: var(--cream-mid);
  padding: var(--sp-3xl) 0;
  margin-top: var(--sp-2xl);
}
.post-related__hd { margin-bottom: var(--sp-2xl); }
.post-related__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0;
}
.journal-grid--related { margin-top: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .j-featured { grid-template-columns: 1fr; }
  .j-featured__img-wrap { aspect-ratio: 16/9; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .journal-grid { grid-template-columns: 1fr; }
  .post-header__title { font-size: 1.75rem; }
  .post-hero-img__img { max-height: 280px; }
  .breadcrumb__current { display: none; }
}


/* ══════════════════════════════════════════════════════════
   ADDENDUM — accessibility, forms, comments, block alignment
   ══════════════════════════════════════════════════════════ */

/* ── Screen-reader utility + skip link ──────────────────── */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Make keyboard focus visible everywhere it was not */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

/* ── Nav: an assigned menu outputs <li>, the fallback outputs <a> ── */
.primary-nav ul,
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav li { list-style: none; }
.mobile-nav li { list-style: none; display: block; }

/* WordPress puts current-menu-item on the <li>, not the <a> */
.primary-nav li.current-menu-item > a::after,
.primary-nav li.current_page_item > a::after { transform: scaleX(1); }
.mobile-nav li.current-menu-item > a,
.mobile-nav li.current_page_item > a { color: var(--olive); }

/* ── Cart badge: always rendered so WooCommerce fragments
      have a node to replace ─────────────────────────────── */
.cart-badge--empty { display: none; }

/* ── Footer social on a light background ────────────────── */
.footer__social--light a {
  border-color: var(--border);
  color: var(--charcoal);
}
.footer__social--light a:hover {
  border-color: var(--olive);
  color: var(--olive);
}

/* ── Contact form: honeypot + response message ──────────── */
.form-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.contact-response {
  margin-top: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  border-left: 2px solid var(--olive);
  background: var(--olive-tint);
  color: var(--olive-dark);
  font-size: var(--fs-body);
  line-height: 1.7;
}
.contact-response--error {
  border-left-color: #C0392B;
  background: #FBECEB;
  color: #922B21;
}
.contact-response[hidden] { display: none; }

.contact-submit[disabled],
.newsletter__btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ── Search results page ────────────────────────────────── */
.search-page-form {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.search-page-form .form-input { flex: 1 1 260px; }

.shop-sidebar__query {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gray);
  margin-top: var(--sp-xs);
}

/* ── Comments ───────────────────────────────────────────── */
.comments {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}
.comments__title {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-lg);
}
.comments__list,
.comments__list .children {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments__list .children { padding-left: var(--sp-lg); margin-top: var(--sp-md); }
.comments__list li.comment { margin-bottom: var(--sp-lg); }

.comments__list .comment-body {
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
}
.comments__list .comment-author {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
}
.comments__list .comment-author img { border-radius: 50%; }
.comments__list .comment-meta {
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin: var(--sp-xs) 0 var(--sp-sm);
}
.comments__list .comment-meta a { color: inherit; }
.comments__list p { color: var(--charcoal); line-height: 1.8; }
.comments__list .reply { margin-top: var(--sp-xs); }
.comments__list .reply a {
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.comments__notes,
.comments__closed {
  color: var(--gray);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}

.comment-respond { margin-top: var(--sp-xl); }
.comment-reply-title {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-md);
}
.comment-form p { margin-bottom: var(--sp-md); }
.comment-form label {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--sp-xs);
}
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-body);
  color: var(--ink);
}
.comment-form textarea { min-height: 150px; resize: vertical; }

/* Product reviews reuse the same shell */
.pdp-reviews {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

/* ── Block editor alignment + media ─────────────────────── */
.prose > * { max-width: 100%; }

.prose .alignleft {
  float: left;
  margin: 0.4em var(--sp-md) var(--sp-md) 0;
  max-width: 50%;
}
.prose .alignright {
  float: right;
  margin: 0.4em 0 var(--sp-md) var(--sp-md);
  max-width: 50%;
}
.prose .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.prose .alignwide {
  width: calc(100% + 2 * var(--sp-2xl));
  max-width: 100vw;
  margin-left: calc(-1 * var(--sp-2xl));
  margin-right: calc(-1 * var(--sp-2xl));
}
.prose .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.prose .alignwide img,
.prose .alignfull img { width: 100%; }

.prose img,
.prose figure,
.prose iframe,
.prose video { max-width: 100%; height: auto; }

.prose figure { margin: var(--sp-lg) 0; }
.prose figcaption,
.prose .wp-caption-text {
  margin-top: var(--sp-xs);
  font-size: var(--fs-sm);
  color: var(--gray);
  font-style: italic;
  text-align: center;
}

.prose blockquote {
  margin: var(--sp-lg) 0;
  padding-left: var(--sp-md);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--charcoal);
}
.prose blockquote cite {
  display: block;
  margin-top: var(--sp-sm);
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.prose pre {
  overflow-x: auto;
  padding: var(--sp-md);
  background: var(--cream-mid);
  border: 1px solid var(--border);
  font-size: 0.875rem;
}
.prose code { font-size: 0.9em; background: var(--cream-mid); padding: 0.1em 0.35em; }
.prose pre code { background: none; padding: 0; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-lg) 0;
  font-size: var(--fs-sm);
}
.prose th, .prose td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: var(--sp-xl) 0;
}

.prose .wp-block-separator { border: 0; border-top: 1px solid var(--border); margin: var(--sp-xl) 0; }
.prose .wp-block-button__link {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}

@media (max-width: 900px) {
  .prose .alignwide {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .prose .alignleft,
  .prose .alignright {
    float: none;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}


/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE — Cart · Checkout · My Account
   The theme unsets woocommerce-layout.css and
   woocommerce-smallscreen.css, so all layout for these three
   pages lives here.
   ══════════════════════════════════════════════════════════ */

.wc-page-wrap { width: 100%; }

/* Shared table shell ------------------------------------------------- */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: var(--sp-xl);
  font-size: 0.9375rem;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}
.woocommerce table.shop_table tbody tr:last-child td { border-bottom: none; }
.woocommerce table.shop_table td.product-name a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  text-decoration: none;
}
.woocommerce table.shop_table td.product-name a:hover { color: var(--olive-dark); }
.woocommerce table.shop_table img { width: 72px; height: auto; display: block; }

/* ── CART ───────────────────────────────────────────────── */
.woocommerce-cart-form { margin-bottom: var(--sp-xl); }

.woocommerce table.cart td.product-remove { width: 44px; text-align: center; }
.woocommerce table.cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  color: var(--gray) !important;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: color var(--fast), background var(--fast);
}
.woocommerce table.cart td.product-remove a.remove:hover {
  color: #C0392B !important;
  background: transparent !important;
}
.woocommerce table.cart td.product-thumbnail { width: 96px; }

.woocommerce .quantity { display: inline-flex; }
.woocommerce .quantity input.qty {
  width: 64px;
  padding: 10px 8px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.9375rem;
  text-align: center;
  -moz-appearance: textfield;
}
.woocommerce .quantity input.qty:focus {
  border-color: var(--olive-light);
  outline: none;
}

.woocommerce table.cart td.actions {
  padding: var(--sp-md);
  background: var(--cream-mid);
}
.woocommerce table.cart td.actions .coupon {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  align-items: center;
  float: none;
}
.woocommerce table.cart td.actions .coupon input.input-text {
  width: auto;
  min-width: 200px;
  flex: 0 1 240px;
}
.woocommerce table.cart td.actions > .button { float: right; }

/* Cart totals panel */
.cart-collaterals { display: flex; justify-content: flex-end; }
.cart-collaterals .cart_totals {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
  background: var(--cream-mid);
  padding: var(--sp-lg);
}
.cart-collaterals .cart_totals > h2 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-md);
}
.cart-collaterals .cart_totals table.shop_table {
  border: 0;
  margin-bottom: var(--sp-md);
  background: transparent;
}
.cart-collaterals .cart_totals table.shop_table th,
.cart-collaterals .cart_totals table.shop_table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  background: transparent !important;
}
.cart-collaterals .cart_totals tr.order-total th,
.cart-collaterals .cart_totals tr.order-total td {
  border-bottom: none;
  font-size: 1.0625rem;
}
.cart-collaterals .cart_totals tr.order-total .amount { color: var(--ink); font-weight: 500; }
.wc-proceed-to-checkout { margin-top: var(--sp-sm); }
.wc-proceed-to-checkout a.checkout-button { display: block; text-align: center; }

.woocommerce .cart-empty,
.woocommerce .return-to-shop {
  text-align: center;
  margin-block: var(--sp-md);
}
.woocommerce .cart-empty {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  color: var(--charcoal);
}

/* ── CHECKOUT ───────────────────────────────────────────── */
.woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  width: auto;
  float: none;
}

.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--border);
}

.woocommerce form .form-row {
  display: block;
  margin-bottom: var(--sp-md);
  padding: 0;
}
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.woocommerce form .form-row .required { color: #C0392B; text-decoration: none; }
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 100%;
  float: none;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
}
.woocommerce form .form-row textarea { min-height: 110px; }

/* Woo uses select2 for country/state */
.woocommerce .select2-container .select2-selection--single {
  height: auto;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--cream);
  padding: 8px 6px;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.6;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.9375rem;
}
.woocommerce .select2-dropdown {
  border-color: var(--border);
  border-radius: 0;
}

/* Order review + payment */
.woocommerce-checkout-review-order {
  border: 1px solid var(--border);
  background: var(--cream-mid);
  padding: var(--sp-lg);
}
.woocommerce-checkout-review-order table.shop_table {
  border: 0;
  background: transparent;
  margin-bottom: var(--sp-md);
}
.woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout-review-order table.shop_table td {
  padding: 0.7rem 0;
  background: transparent !important;
  border-bottom: 1px solid var(--border);
}
.woocommerce-checkout-review-order table.shop_table tfoot tr:last-child th,
.woocommerce-checkout-review-order table.shop_table tfoot tr:last-child td {
  border-bottom: none;
  font-size: 1.0625rem;
}

.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 var(--sp-md);
  padding: 0 0 var(--sp-md);
  border-bottom: 1px solid var(--border);
}
.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none;
  margin-bottom: var(--sp-xs);
}
.woocommerce-checkout #payment ul.payment_methods li label {
  display: inline;
  font-family: var(--sans);
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
}
.woocommerce-checkout #payment div.payment_box {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: var(--fs-sm);
  line-height: 1.7;
  padding: var(--sp-sm) var(--sp-md);
  margin-top: var(--sp-xs);
}
.woocommerce-checkout #payment div.payment_box::before { display: none; }
.woocommerce-checkout #payment .place-order { padding: 0; }
.woocommerce-checkout #payment #place_order {
  width: 100%;
  margin-top: var(--sp-sm);
}
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: var(--sp-md);
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p { color: var(--gray); }

.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle { margin-bottom: var(--sp-md); }
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  background: var(--cream-mid);
}

/* ── MY ACCOUNT ─────────────────────────────────────────── */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after { content: none; }

/* Login screen is a single centred column, not the two-col dashboard */
.woocommerce-account:not(.logged-in) .woocommerce {
  display: block;
  max-width: 480px;
  margin-inline: auto;
}

.woocommerce-MyAccount-navigation {
  width: auto;
  float: none;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.woocommerce-MyAccount-navigation li {
  list-style: none;
  border-bottom: 1px solid var(--border);
}
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--fast);
}
.woocommerce-MyAccount-navigation li a:hover { color: var(--ink); }
.woocommerce-MyAccount-navigation li.is-active a { color: var(--olive-dark); }

.woocommerce-MyAccount-content {
  width: auto;
  float: none;
}
.woocommerce-MyAccount-content > p { line-height: 1.8; color: var(--charcoal); }
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content legend {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: var(--sp-md);
}
.woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--border);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions .button {
  margin: 2px 4px 2px 0;
  padding: 0.6rem 1.1rem !important;
  font-size: 0.625rem !important;
}

.woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
.woocommerce-Addresses .woocommerce-Address { width: auto; float: none; }
.woocommerce-Address-title { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-sm); }
.woocommerce-Address-title h2, .woocommerce-Address-title h3 { margin-bottom: var(--sp-xs); }

/* ── ORDER RECEIVED / ORDER DETAIL ──────────────────────── */
.woocommerce-order { max-width: 760px; margin-inline: auto; }
.woocommerce-thankyou-order-received {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}
ul.woocommerce-thankyou-order-details,
ul.order_details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  margin: 0 0 var(--sp-xl);
  padding: var(--sp-md) 0;
  border-block: 1px solid var(--border);
}
ul.woocommerce-thankyou-order-details li,
ul.order_details li {
  list-style: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
ul.woocommerce-thankyou-order-details li strong,
ul.order_details li strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.125rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.woocommerce-customer-details address {
  border: 1px solid var(--border);
  padding: var(--sp-md);
  font-style: normal;
  line-height: 1.8;
  border-radius: 0;
}

/* ── RESPONSIVE (replaces woocommerce-smallscreen.css) ──── */
@media (max-width: 900px) {
  .woocommerce-checkout #customer_details { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .woocommerce-Addresses { grid-template-columns: 1fr; }
  .cart-collaterals .cart_totals { max-width: none; }
}

@media (max-width: 720px) {
  /* Stack every shop table into labelled rows */
  .woocommerce table.shop_table_responsive,
  .woocommerce table.shop_table_responsive tbody,
  .woocommerce table.shop_table_responsive tr,
  .woocommerce table.shop_table_responsive td {
    display: block;
    width: 100%;
  }
  .woocommerce table.shop_table_responsive thead { display: none; }
  .woocommerce table.shop_table_responsive tr {
    border-bottom: 1px solid var(--border);
    padding: var(--sp-sm) 0;
  }
  .woocommerce table.shop_table_responsive tr:last-child { border-bottom: none; }
  .woocommerce table.shop_table_responsive td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    border: 0;
    padding: 0.45rem var(--sp-sm);
    text-align: right;
  }
  .woocommerce table.shop_table_responsive td::before {
    content: attr(data-title) ": ";
    flex: 0 0 auto;
    font-size: var(--fs-label);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    text-align: left;
  }
  .woocommerce table.shop_table_responsive td.product-remove::before,
  .woocommerce table.shop_table_responsive td.product-thumbnail::before { content: none; }
  .woocommerce table.shop_table_responsive td.actions { display: block; text-align: left; }
  .woocommerce table.cart td.actions > .button { float: none; width: 100%; margin-top: var(--sp-xs); }
  .woocommerce table.cart td.actions .coupon input.input-text { flex: 1 1 100%; min-width: 0; }

  .woocommerce-checkout-review-order,
  .cart-collaterals .cart_totals { padding: var(--sp-md); }

  ul.woocommerce-thankyou-order-details,
  ul.order_details { flex-direction: column; gap: var(--sp-md); }

  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button { width: 100%; text-align: center; }
  .woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions .button { width: auto; }
}


/* ── Address blocks (footer + contact page) ─────────────── */
.footer__address {
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: var(--sp-sm);
}

.contact-address {
  font-style: normal;
  line-height: 1.9;
  color: var(--gray);
  margin-top: 6px;
}

/* Category still awaiting a cover image — a real, clickable tile rather
   than a greyed-out dummy. */
.cat-card--noimg {
  background: linear-gradient(150deg, var(--ink) 0%, var(--olive-dark) 140%);
}
.cat-card--noimg .cat-card__overlay { opacity: 0.35; }
