/* ═══════════════════════════════════════════════════════════════════
   Stationery Corner — Main Stylesheet
   Refined luxury × bold graphic design
   Typefaces: Newsreader (display) + DM Sans (body/UI)
═══════════════════════════════════════════════════════════════════ */

/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-latin.woff2') format('woff2');
  font-weight: 300 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-italic-latin.woff2') format('woff2');
  font-weight: 300 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

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

:root {
  --white:       #FFFFFF;
  --off-white:   #FAF9F7;
  --warm:        #F3F1EC;
  --warm-mid:    #E8E5DF;
  --border:      #E0DDD6;
  --text:        #1A1918;
  --text-mid:    #5C5A56;
  --text-light:  #9C9994;
  --accent:      #E8724E;
  --accent-dark: #C24A28;
  --ink:         #2A201A;
  --dark:        #1A1918;
  --ff-display:  'Newsreader', Georgia, serif;
  --ff-body:     'DM Sans', sans-serif;
  --side-pad:    60px;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: clip;
}

/* ─── ANNOUNCE BAR ─── */
.announce {
  background: var(--off-white);
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  padding: 13px 0; overflow: hidden;
}
.announce-track {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  max-width: 1440px; margin: 0 auto; padding: 0 var(--side-pad);
}
.announce-item {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.announce-item--left { justify-content: flex-start; }
.announce-item--center { justify-content: center; }
.announce-item--right { justify-content: flex-end; }
.announce-item.hl { color: var(--accent); }
.announce-tp-star { width: 13px; height: 13px; flex-shrink: 0; }
.announce-g-star { width: 14px; height: 14px; flex-shrink: 0; }
.announce-review-link { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.announce-review-link:hover { opacity: 0.7; }

/* ─── NAVIGATION ─── */
nav#mainNav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 221, 214, 0.35);
  display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: 100px 62px;
  padding: 0 var(--side-pad);
  transition: box-shadow 0.4s;
}
nav#mainNav.scrolled { box-shadow: 0 4px 40px rgba(20,18,24,0.07); }
.nav-links {
  display: flex; gap: 44px; list-style: none;
  grid-column: 1 / -1; grid-row: 2; align-items: center; justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 calc(-1 * var(--side-pad)); padding: 0 var(--side-pad);
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-family: var(--ff-display); font-size: 17px; font-weight: 300; letter-spacing: 0; text-transform: capitalize;
  display: inline-block; position: relative; padding-bottom: 3px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s ease-out;
}
.nav-links li:hover > a { color: var(--accent); }
.nav-links li:hover > a::after { width: 100%; }
/* WordPress menu wraps links in li > a — ensure menu_class works */
.nav-links li { list-style: none; }
.nav-links .sub-menu { display: none; }
/* Mega-menu triggers have an absolutely-positioned panel sibling that can inflate
   the <li>'s intrinsic width; cap the <a> to its text content so the underline matches */
.nav-links .has-mega > a { display: inline-block; width: max-content; }
.nav-logo {
  grid-column: 1; grid-row: 1; align-self: center;
  text-align: left; font-family: var(--ff-display);
  font-size: 28px; font-weight: 400; letter-spacing: 0.02em;
  color: var(--text); text-decoration: none; display: block;
}
.nav-logo em { font-style: italic; }
.nav-logo-img { display: block; height: 52px; width: auto; }
.nav-actions { grid-column: 3; grid-row: 1; align-self: center; display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.nav-actions button, .nav-actions a {
  background: none; border: none; cursor: pointer; color: var(--text-mid);
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px; transition: color 0.2s;
  text-decoration: none;
}
.nav-actions button:hover, .nav-actions a:hover { color: var(--text); }
.nav-icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.nav-actions-cart { position: relative; }
.cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--accent); color: white;
  min-width: 18px; height: 18px; border-radius: 50%; font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--ff-body);
}

/* ═══════════════════════════════════════════════════════
   MEGA MENU
═══════════════════════════════════════════════════════ */

/* The <li> with a panel must be position:static so the panel
   spans the full nav width (positioned relative to the nav). */
.nav-links .has-mega { position: static; }

.has-mega > a { padding-right: 0; }
.has-mega > a::before { display: none; }

/* Panel — absolutely positioned, full nav width */
.mega-panel {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--white);
  border-top: none;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(26,25,24,0.12);
  z-index: 200;

  /* Hidden */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Reveal — JS-controlled (is-open) or keyboard focus only; hover handled entirely by JS */
.mega-panel.is-open,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Inner layout */
.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 40px var(--side-pad) 44px;
}
.mega-panel--no-tiles .mega-inner {
  grid-template-columns: 1fr;
}

/* Links column */
.mega-links {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}
.mega-panel--no-tiles .mega-links {
  border-right: none;
  padding-right: 0;
  column-count: 3;
  column-gap: 32px;
}
.mega-links-heading {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
  break-after: avoid;
}
.mega-links-list { list-style: none; padding: 0; margin: 0; }
.mega-links-list li { break-inside: avoid; }
.mega-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; font-size: 13.5px; color: var(--text-mid);
  text-decoration: none; transition: color 0.15s;
}
.mega-link:hover { color: var(--accent); }
.mega-link--all {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-link-count {
  font-size: 10px; color: var(--text-light);
  background: var(--warm); padding: 1px 6px; border-radius: 20px;
}

/* Tiles column */
.mega-tiles {
  display: flex; gap: 18px;
  padding-left: 48px; align-items: flex-start;
}
.mega-tile {
  flex: 1; max-width: 220px;
  text-decoration: none; color: inherit;
}
.mega-tile-img {
  aspect-ratio: 1/1; overflow: hidden; background: var(--warm); margin-bottom: 12px;
}
.mega-tile-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 1, 1);
}
.mega-tile:hover .mega-tile-img img { transform: scale(1.06); }
.mega-tile-name {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); line-height: 1.4;
}

/* Hide on mobile (nav-links already hidden at 768px) */
@media (max-width: 768px) { .mega-panel { display: none; } }

/* ─── HERO ─── */
/* Slider container */
.hero { position: relative; aspect-ratio: 21/8; overflow: hidden; display: flex; align-items: center; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  pointer-events: none; z-index: 0;
  display: flex; align-items: center;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }

/* Full-bleed photo layer */
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }

.hero-slide::after { display: none; }

/* Text panel — sits over photo */
.hero-panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-content { display: flex; flex-direction: column; max-width: 680px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: inherit; opacity: 0.9;
  display: inline-block; padding: 6px 16px;
  border: 1px solid currentColor; border-radius: 2px;
  opacity: 0; animation: fadeUp 0.8s 0.1s ease-out forwards;
}
.hero-brand-logo { margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.1s ease-out forwards; }
.hero-brand-logo img { display: block; object-fit: contain; }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 5vw, 82px); font-weight: 400; font-optical-sizing: auto;
  line-height: 1.05; color: inherit; letter-spacing: normal; padding: 0.05em 0;
  margin-top: 24px; max-width: 680px;
  opacity: 0; animation: fadeUp 0.9s 0.22s ease-out forwards;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-body {
  font-size: 16px; line-height: 1.75; color: inherit; opacity: 0.8;
  max-width: 480px; margin-top: 20px;
  opacity: 0; animation: fadeUp 0.9s 0.38s ease-out forwards;
}
.hero-cta {
  display: flex; gap: 16px; align-items: center; margin-top: 36px;
  opacity: 0; animation: fadeUp 0.9s 0.52s ease-out forwards;
}
.btn-hero-primary {
  background: var(--accent); color: white; border: none;
  padding: 17px 42px; font-family: var(--ff-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s;
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-hero-ghost {
  background: transparent; color: inherit;
  border: 1.5px solid currentColor; opacity: 0.6;
  padding: 16px 36px; font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: border-color 0.3s, background 0.3s;
}
.btn-hero-ghost:hover { opacity: 1; background: rgba(128,128,128,0.12); }
.hero-foot { display: flex; align-items: center; justify-content: space-between; }
.hero-foot-count { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.hero-foot-scroll { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.hero-foot-scroll-line { width: 24px; height: 1px; background: var(--border); }

/* Slide nav dots */
.hero-dots { display: flex; gap: 10px; margin-top: 48px; padding: 0; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.hero-dot.is-active { width: 32px; border-radius: 5px; background: var(--accent); }
.hero-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }


@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── SHARED SECTION UTILITIES ─── */
.section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  width: fit-content; margin: 0 auto 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--accent);
}
.section-title { font-family: var(--ff-display); font-size: clamp(40px, 5vw, 58px); font-weight: 300; line-height: 1.05; color: var(--text); text-align: center; display: inline-block; letter-spacing: 0; }
.section-title em { font-style: italic; color: var(--accent); }
.section-subtitle { font-size: 13px; color: var(--text-light); margin-top: 8px; text-align: center; }
.view-all {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: gap 0.25s, color 0.2s;
}
.view-all::after { content: '→'; }
.view-all:hover { gap: 14px; color: var(--text); }

/* ─── USP BAR ─── */
.usp-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.usp-bar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad); }
.usp-item { display: flex; align-items: center; gap: 10px; padding: 28px 0; flex: 1; justify-content: center; }
.usp-item + .usp-item { border-left: 1px solid var(--border); }
.usp-item svg { width: 16px; height: 16px; stroke: var(--accent); flex-shrink: 0; }
.usp-item span { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); white-space: nowrap; }

/* ─── HOMEPAGE USPS ─── */
.hp-usps { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.hp-usps-inner {
  max-width: 960px; margin: 0 auto; padding: 0 var(--side-pad);
  display: flex; justify-content: center; align-items: center; gap: 48px;
}
.hp-usp {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 260px; height: 260px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  justify-content: center;
  padding: 32px;
}
.hp-usp-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.hp-usp-icon svg { width: 28px; height: 28px; color: var(--accent); }
.hp-usp-icon--tp svg { color: #00B67A; width: 28px; height: 28px; }
.hp-usp-title {
  font-family: var(--ff-display); font-size: clamp(15px, 1.3vw, 18px); font-weight: 400;
  color: var(--text); margin-bottom: 6px; line-height: 1.2;
}
.hp-usp-text { font-size: 11px; line-height: 1.6; color: var(--text-mid); margin: 0; }

@media (max-width: 768px) {
  .hp-usps { padding: 40px 0; }
  .hp-usps-inner { flex-direction: column; gap: 16px; }
  .hp-usp { width: 150px; height: 150px; padding: 16px; }
  .hp-usp-icon { margin-bottom: 8px; }
  .hp-usp-icon svg { width: 20px; height: 20px; }
  .hp-usp-title { font-size: 12px; }
  .hp-usp-text { font-size: 9px; }
}

/* ─── OFFERS: 3-TILE GRID ─── */
/* ─── OFFERS / LIMITED TIME ─── */
.offers-section {
  position: relative;
  padding: 96px 0 clamp(64px, 6.5vw, 112px);
  border-top: 1px solid var(--border);
}
.offers-bg { position: absolute; inset: 0; background: var(--white); }
.offers-pattern { display: none; }
.offers-text-wrap {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad) 48px;
  text-align: center;
}
.offers-desc {
  font-size: 15px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 0;
}
.offers-tiles {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad);
}
.offers-banner-wrap {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto 24px; padding: 0 var(--side-pad);
}
.offers-banner-wrap .cat-banner { aspect-ratio: 16/4; }
.offers-banner-mobile { display: none; }
.offers-banner-mobile .cat-banner { aspect-ratio: 1/1; border-radius: 0; }
.offers-banner-mobile .cat-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.offers-tile { display: block; text-decoration: none; color: inherit; }
.offers-tile-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 20px; }
.offers-tile-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.6s ease-out;
}
.offers-tile:hover .offers-tile-img { transform: scale(1.04); }
.offers-tile-content { padding: 0 2px; }
.offers-tile-name {
  font-family: var(--ff-display); font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400; color: var(--text); line-height: 1.2; margin: 0;
}
.offers-badge {
  position: absolute; top: 20px; right: 20px;
  width: 80px; height: 80px;
  background: var(--accent); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ink); z-index: 3;
  box-shadow: 0 8px 32px rgba(200,74,40,0.5);
}
.offers-badge-pct {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700; line-height: 1;
}
.offers-badge-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ─── BRAND TILES ─── */
.brand-tiles-section { background: var(--white); border-top: 1px solid var(--border); padding: 96px 0 clamp(48px, 4vw, 96px); }
.brand-tiles-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad); }
.brand-tiles-header { display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 24px; margin-bottom: 48px; }
.brand-carousel-wrap { position: relative; width: 100%; }
.brand-carousel-wrap .carousel-btn--side {
  position: absolute; top: calc(50% - 30px); transform: translateY(-50%);
  z-index: 2;
}
.brand-carousel-wrap #brandPrev { left: 8px; }
.brand-carousel-wrap #brandNext { right: 8px; }
.brand-carousel-track {
  display: flex; gap: 24px; justify-content: safe center;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 var(--side-pad);
}
.brand-carousel-track::-webkit-scrollbar { display: none; }
.brand-tile {
  flex: 0 0 min(calc((100% - 96px) / 5), 390px);
  min-width: 308.02px;
  scroll-snap-align: start;
  display: block; text-decoration: none; color: inherit;
}
@media (max-width: 900px) { .brand-tile { flex: 0 0 calc((100% - 16px) / 2); } }
.brand-tile-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 20px; }
.brand-tile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease-out; }
.brand-tile:hover .brand-tile-img-wrap img { transform: scale(1.05); }
.brand-tile-content { padding: 0 2px; text-align: center; }
.brand-tile-name { font-family: var(--ff-display); font-size: clamp(16px, 1.6vw, 22px); font-weight: 300; color: var(--text); margin-bottom: 5px; line-height: 1.2; letter-spacing: 0; }
.brand-tile-tagline { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); margin: 0; }
.brand-tile-cta { display: none; }

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

/* ─── NEW IN GRID ─── */
.new-in-section { background: var(--white); border-top: 1px solid var(--border); padding: 64px 0 clamp(96px, 8vw, 144px); }
.new-in-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad); }
.new-in-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.new-in-header > div { display: flex; flex-direction: column; }
.new-in-view-all { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-dark); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid currentColor; transition: color 0.2s; white-space: nowrap; }
.new-in-view-all:hover { color: var(--accent); }
.new-in-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
.new-in-tile { display: block; text-decoration: none; color: inherit; }
.new-in-tile .product-img-wrap { aspect-ratio: 1/1; overflow: hidden; }
.new-in-tile .product-img { width: 100%; height: 100%; object-fit: cover; }

/* ─── GIFT GUIDE ─── */
.gift-section { background: var(--off-white); border-top: 1px solid var(--border); padding: 64px 0 clamp(96px, 8vw, 144px); }
.gift-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad); }
.gift-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 40px; }
.gift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gift-tile { display: block; text-decoration: none; color: inherit; }
.gift-tile-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 14px; }
.gift-tile-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease-out; }
.gift-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,25,24,0.55) 0%, transparent 60%); pointer-events: none; }
.gift-tile:hover .gift-tile-img-wrap img { transform: scale(1.05); }
.gift-tile-caption { padding: 0 2px; }
.gift-tile-name { font-family: var(--ff-display); font-size: clamp(20px, 1.8vw, 26px); font-weight: 400; color: var(--text); line-height: 1.2; margin: 0 0 4px; }
.gift-tile-sub { font-size: 12px; color: var(--text-mid); margin: 0; }

@media (max-width: 900px) {
  .mood-grid, .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .new-in-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .new-in-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── CATEGORY CAROUSEL (SPLIT PANEL) ─── */
.cat-carousel { background: var(--white); border-top: 1px solid var(--border); overflow: hidden; }
.cat-carousel-inner { display: grid; grid-template-columns: 320px 1fr; }
.cat-carousel-panel {
  background: var(--ink);
  padding: clamp(48px, 5vw, 80px) 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 480px;
}
.cat-carousel-panel-top { display: flex; flex-direction: column; }
.cat-carousel-eyebrow { color: var(--accent); margin-bottom: 20px; }
.cat-carousel-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 3.8vw, 58px); font-weight: 300;
  color: white; line-height: 1.05; margin: 0 0 24px;
}
.cat-carousel-desc {
  font-size: 13.5px; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-bottom: 32px;
}
.cat-carousel-link {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.25s, color 0.25s; width: fit-content;
}
.cat-carousel-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.cat-carousel-link:hover { gap: 14px; color: white; }
.cat-carousel-controls { display: flex; gap: 8px; }
.cat-carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cat-carousel-btn svg { width: 16px; height: 16px; }
.cat-carousel-btn:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.cat-carousel-btn:disabled { opacity: 0.3; cursor: default; }
.cat-carousel-right {
  overflow: hidden;
  padding: clamp(48px, 5vw, 80px) 40px clamp(48px, 5vw, 80px) 0;
  display: flex; align-items: center;
}
.cat-carousel-track { padding-left: 32px !important; flex: 1; }
.cat-carousel-track .carousel-card { flex: 0 0 calc((100vw - 320px - 120px) / 3.5); }

@media (max-width: 1024px) {
  .cat-carousel-inner { grid-template-columns: 260px 1fr; }
  .cat-carousel-track .carousel-card { flex: 0 0 calc((100vw - 260px - 80px) / 2.5); }
}
@media (max-width: 768px) {
  .cat-carousel-inner { grid-template-columns: 1fr; }
  .cat-carousel-panel { min-height: auto; padding: 40px 24px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 20px; }
  .cat-carousel-panel-top { flex: 1; }
  .cat-carousel-title { font-size: 28px; }
  .cat-carousel-desc { display: none; }
  .cat-carousel-right { padding: 0 0 40px 0; }
  .cat-carousel-track { padding-left: 24px !important; }
  .cat-carousel-track .carousel-card { flex: 0 0 calc((100vw - 68px) / 2); }
}

/* ─── PROMO PAIR ─── */
.promo-pair { background: var(--off-white); border-top: 1px solid var(--border); padding: 64px 0 clamp(96px, 8vw, 144px); }
.promo-pair-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.promo-tile { position: relative; overflow: hidden; aspect-ratio: 3/2; display: block; text-decoration: none; }
.promo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease-out; }
.promo-tile:hover img { transform: scale(1.04); }
.promo-tile-content {
  position: absolute; inset: 0; padding: 40px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(26,25,24,0.75) 0%, rgba(26,25,24,0.18) 55%, transparent 100%);
}
.promo-tile-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.promo-tile-title { font-family: var(--ff-display); font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; color: white; line-height: 1.1; margin-bottom: 20px; }
.promo-tile-cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: white; display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: gap 0.25s, border-color 0.25s; width: fit-content;
}
.promo-tile:hover .promo-tile-cta { gap: 14px; border-color: white; }
@media (max-width: 640px) { .promo-pair-inner { grid-template-columns: 1fr; } }

/* ─── CATEGORIES: 5-COL × 2-ROW SQUARE GRID ─── */
.categories { background: var(--white); padding: 96px 0 clamp(96px, 8vw, 144px); border-top: 1px solid var(--border); }
.categories-inner { max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad); }
.categories-section-header {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 var(--side-pad) 24px; margin-bottom: 48px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
  row-gap: 110px;
}
/* 2 rows of 4 tiles (3 cols each = 12) */
.cat-grid .cat-tile { grid-column: span 3; }
.categories-inner--wide { max-width: 1360px; padding: 0; }
.cat-grid--rect {
  grid-template-columns: repeat(6, 1fr);
}
.cat-grid--rect .cat-tile-img {
  aspect-ratio: 2/3;
}

/* Featured: 3 portrait (top row) + 2 landscape (bottom row) */
.cat-grid--featured {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 560px 445px;
  gap: 24px;
}
.cat-grid--featured .cat-tile:nth-child(-n+3) { grid-column: span 2; }
.cat-grid--featured .cat-tile:nth-child(n+4) { grid-column: span 3; }
/* ─── CAT BANNER: full-width third row ─── */
.cat-banner {
  grid-column: 1 / -1;
  position: relative; overflow: hidden;
  aspect-ratio: 16/4;
  display: block; text-decoration: none;
}
.cat-banner-img { position: absolute; inset: 0; }
.cat-banner-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease-out; }
.cat-banner:hover .cat-banner-img img { transform: scale(1.03); }
.cat-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(42,32,26,0.82) 0%, rgba(42,32,26,0.5) 45%, rgba(42,32,26,0.15) 100%);
}
.cat-banner-content { position: absolute; left: 52px; top: 50%; transform: translateY(-50%); }
.cat-banner-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.cat-banner-title {
  font-family: var(--ff-display); font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300; color: var(--white); line-height: 1.1; margin: 0;
}
.cat-banner-cta {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.cat-banner:hover .cat-banner-cta { color: var(--accent); border-color: var(--accent); }

/* ─── CAT TILE: image with label below ─── */
.cat-tile {
  position: relative; overflow: visible;
  display: block; text-decoration: none; cursor: pointer;
  background: var(--warm);
}
/* Default square grid: 1:1 ratio */
.cat-grid:not(.cat-grid--rect):not(.cat-grid--featured) .cat-tile { aspect-ratio: 1/1; }
/* Rect grid: portrait */
.cat-grid--rect .cat-tile { aspect-ratio: 2/3; }

/* Background image layer — overflow:hidden clips the hover zoom within tile bounds */
.cat-tile-img {
  position: absolute; inset: 0; overflow: hidden;
}
.cat-tile-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease-out;
}
.cat-tile:hover .cat-tile-img img { transform: scale(1.04); }

/* Overlay and arrow hidden — label sits below tile */
.cat-tile-overlay { display: none; }
.cat-tile-arrow { display: none; }

/* Text content — positioned below the tile image */
.cat-tile-content {
  position: absolute; top: calc(100% + 20px); bottom: auto;
  left: 0; right: 0; padding: 0;
  transform: none;
  background: none;
}
.cat-tile:hover .cat-tile-content { transform: none; }
.cat-tile-name {
  font-family: var(--ff-display); font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300; color: var(--text); margin-bottom: 5px; line-height: 1.2;
  text-transform: capitalize; letter-spacing: 0;
}
.cat-tile-count {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light);
}

/* ─── STATEMENT STRIP ─── */
.statement {
  background: var(--ink); padding: 28px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; overflow: hidden; position: relative;
}
.statement::before {
  content: '"'; position: absolute; left: -40px; top: -60px;
  font-family: var(--ff-display); font-size: 400px; font-weight: 300;
  color: rgba(232,114,78,0.08); line-height: 1; pointer-events: none;
}
.statement-text {
  font-family: var(--ff-display); font-size: clamp(36px, 3.8vw, 60px);
  font-weight: 300; line-height: 1.1; color: white; flex: 1; position: relative; z-index: 1;
}
.statement-text em { font-style: italic; color: var(--accent); }
.statement-right {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: flex-end; gap: 20px; position: relative; z-index: 1;
}
.statement-meta { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); text-align: right; }
.btn-statement {
  background: var(--accent); color: var(--ink); border: none;
  padding: 16px 36px; font-family: var(--ff-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.25s, transform 0.2s;
}
.btn-statement:hover { background: var(--accent-dark); transform: translateY(-1px); }
.statement--has-bg { background-color: var(--ink); background-repeat: no-repeat; }
.statement--has-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,25,24,0.62); z-index: 0;
}
.statement--has-bg::before { z-index: 1; }
.statement--has-bg .statement-text,
.statement--has-bg .statement-right { z-index: 2; }

/* ─── PRODUCT CARDS (shared by both carousels) ─── */
.product-card { cursor: pointer; }
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; margin-bottom: 16px; background: var(--white);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease, opacity 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
/* Crossfade when a hover image is present */
.product-img-wrap.has-hover .product-img { transition: opacity 0.45s ease; }
.product-card:hover .product-img-wrap.has-hover .product-img { opacity: 0; }
.product-img-hover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 0.45s ease;
}
.product-card:hover .product-img-wrap.has-hover .product-img-hover { opacity: 1; }

/* ─── VARIATION IMAGE STACK (transparent-bg PNG products only) ─── */
/* overflow: hidden is inherited from .product-img-wrap — effect clipped to card square.
   Layers sit behind the main PNG; they show through its transparent areas and as strips
   at the left edge as they translate. Main image stays centred — no movement needed. */
.var-stack-layer {
  position: absolute; inset: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  will-change: transform;
  pointer-events: none;
  filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.12));
}
.var-stack-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Main image sits above stack layers */
.product-img-wrap.has-var-stack .product-img--main { position: relative; z-index: 20; filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.15)); }
/* Hide stack when swatch is hovered */
.product-img-wrap.swatch-active .var-stack-layer { opacity: 0 !important; transform: scale(0.8) !important; }
.product-img-wrap.swatch-active .product-img--main { transform: scale(1) !important; filter: none !important; }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px;
}
.badge-new  { background: var(--ink);    color: white; }
.badge-sale { background: var(--accent); color: var(--ink); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  background: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-card:hover .product-wishlist { opacity: 1; transform: translateY(0); }
.product-wishlist:hover svg { stroke: var(--accent); }
.product-wishlist.active svg { fill: var(--accent); stroke: var(--accent); }
.product-wishlist svg { width: 14px; height: 14px; stroke: var(--text-mid); fill: none; stroke-width: 1.5; transition: stroke 0.2s, fill 0.2s; }
.product-brand { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
.product-name { font-family: var(--ff-display); font-size: 18px; font-weight: 300; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
.product-card:hover .product-name { color: var(--accent-dark); }
.product-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 8px; }
.product-stars .star { width: 15px; height: 15px; fill: none; stroke: var(--accent); stroke-width: 1.5; flex-shrink: 0; }
.product-stars .star.filled { fill: var(--accent); stroke: var(--accent); }
.product-stars-count { font-size: 12px; color: var(--text-light); margin-left: 4px; }
.product-price { font-size: 20px; color: var(--accent-dark); font-weight: 500; margin-bottom: 12px; }
.product-atc-btn,
.product-quick { display: block; width: 50%; margin: 0 auto; padding: 11px 16px; background: transparent; color: var(--text); font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-align: center; text-decoration: none; border: 1.5px solid var(--accent); cursor: pointer; transition: background 0.2s, color 0.2s; }
.product-atc-btn:hover,
.product-quick:hover { background: var(--accent); color: #fff; }
.product-atc-btn--oos { background: var(--warm-mid); color: var(--text-light); cursor: default; }
.price-was { text-decoration: line-through; color: var(--text-light); margin-right: 6px; }
.price-now { color: var(--accent); font-weight: 700; }
.product-rating { display: flex; align-items: center; gap: 5px; }
.stars { color: var(--accent); font-size: 11px; letter-spacing: 1.5px; }
.rating-count { font-size: 10px; color: var(--text-light); }

/* ─── CAROUSEL SHARED ─── */
.carousel-section { padding: 96px 0 clamp(48px, 4vw, 96px); border-top: 1px solid var(--border); }
.carousel-section--warm { background: var(--white); }
.carousel-section--white { background: var(--white); }
.carousel-section--ink { background: var(--ink); border-top: none; }
.carousel-section--ink .section-eyebrow { color: var(--accent); }
.carousel-section--ink .section-title { color: var(--white); }
.carousel-section--ink .section-title em { color: var(--accent); }
.carousel-section--ink .carousel-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.carousel-section--ink .carousel-btn:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.carousel-section--ink .product-name { color: var(--white); }
.carousel-section--ink .product-brand { color: rgba(255,255,255,0.45); }
.carousel-section--ink .product-price,
.carousel-section--ink .product-price .woocommerce-Price-amount { color: rgba(255,255,255,0.8); }

.carousel-container {
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--side-pad);
}
.carousel-header {
  padding-bottom: 24px; margin-bottom: 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.carousel-wrap {
  position: relative; display: flex; align-items: center; gap: 0;
}
.carousel-wrap--edge { position: relative; width: 100%; display: block; }
.carousel-wrap--edge .carousel-btn--side {
  position: absolute; top: calc(50% - 30px); transform: translateY(-50%); z-index: 2;
}
.carousel-wrap--edge #editPrev { left: calc(-1 * var(--side-pad) + 8px); }
.carousel-wrap--edge #editNext { right: calc(-1 * var(--side-pad) + 8px); }
.carousel-wrap--edge .carousel-track { gap: 16px; width: 100%; }
.carousel-wrap--edge .carousel-card { flex: 0 0 calc((100% - 48px) / 4); min-width: 0; max-width: none; }
.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border); border-radius: 50%;
  background: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.carousel-btn:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: white; }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }
.carousel-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.carousel-btn--side { flex-shrink: 0; }

.carousel-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; user-select: none; }
/* Carousel WooCommerce price compatibility */
.carousel-section .product-price .woocommerce-Price-amount { color: var(--accent-dark); font-weight: 500; }
.carousel-section .product-price ins .woocommerce-Price-amount { color: var(--accent-dark); font-weight: 700; }
.carousel-section .product-price del .woocommerce-Price-amount { color: var(--text-light); font-weight: 400; }

.carousel-card {
  flex: 0 0 calc((100vw - 200px) / 4);
  min-width: 220px; max-width: 360px;
  scroll-snap-align: start;
  display: flex; flex-direction: column; text-align: center; cursor: pointer;
}
.carousel-card .product-name { font-weight: 300; }
.carousel-card .product-stars { justify-content: center; }
.carousel-card .product-price { order: 3; }
.carousel-card .product-stars { order: 4; }

/* ─── BLOG ─── */
.blog-section { background: var(--off-white); padding: 96px 0 80px; border-top: 1px solid var(--border); }
.blog-container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.blog-header {
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 20px; margin-bottom: 36px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card-img {
  display: block; aspect-ratio: 4/3; overflow: hidden;
  background: var(--warm); margin-bottom: 18px;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 1, 1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-meta {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 12px;
}
.blog-card-meta span { color: var(--accent); }
.blog-card-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 300;
  color: var(--text); line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 10px; transition: color 0.2s;
}
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card-excerpt { font-size: 13px; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; flex: 1; }
.blog-card-link {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  padding-bottom: 5px; position: relative;
  display: inline-block; transition: color 0.2s; width: fit-content;
}
.blog-card-link:hover { color: var(--accent); }

/* ─── BRANDS ─── */
.brands-section {
  background: var(--off-white);
  padding: 64px 0 clamp(96px, 8vw, 144px);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.brands-header-wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 52px;
}
.brands-ticker {
  position: relative;
  display: flex; overflow: hidden;
}
.brands-ticker::before,
.brands-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.brands-ticker::before { left: 0; background: linear-gradient(to right, var(--off-white) 60%, transparent); }
.brands-ticker::after  { right: 0; background: linear-gradient(to left, var(--off-white) 60%, transparent); }
.brands-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap; width: max-content;
  animation: brandScroll 40s linear infinite;
}
.brands-section:hover .brands-track { animation-play-state: paused; }
.brands-item {
  display: inline-flex; align-items: center;
  font-family: var(--ff-display); font-size: clamp(18px, 2vw, 26px);
  font-weight: 300; letter-spacing: 0.04em; color: var(--text-mid);
  padding: 0 40px; transition: color 0.2s;
  cursor: default;
}
.brands-item:hover { color: var(--accent); }
.brands-item::after {
  content: '◆';
  font-size: 6px; color: var(--accent); opacity: 0.5;
  margin-left: 40px;
}
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SOCIAL ─── */
.social-section { background: var(--white); border-top: 1px solid var(--border); }
.social-header {
  display: flex; flex-direction: column; align-items: center;
  padding: 64px var(--side-pad) 24px; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.social-platforms { display: flex; align-items: center; gap: 8px; padding-bottom: 3px; }
.social-plat {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  padding: 10px 18px; border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-plat:hover { color: var(--text); border-color: var(--text-mid); background: var(--warm); }
.social-plat svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.social-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.social-post { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--warm); display: block; }
.social-post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.65s cubic-bezier(0.4, 0, 1, 1); }
.social-post:hover img { transform: scale(1.06); }
.social-post-ov {
  position: absolute; inset: 0; background: rgba(42,32,26,0);
  transition: background 0.25s; display: flex; align-items: center; justify-content: center;
}
.social-post:hover .social-post-ov { background: rgba(42,32,26,0.44); }
.social-post-ov svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.5; opacity: 0; transition: opacity 0.25s; }
.social-post:hover .social-post-ov svg { opacity: 1; }

/* ─── TRUSTPILOT STRIP ─── */
.tp-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: none; padding: 64px 0 clamp(96px, 8vw, 144px); }
.tp-strip-header { text-align: center; max-width: 1440px; margin: 0 auto; padding: 0 40px 52px; }
.tp-strip-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }
.tp-strip-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 180px; }
.tp-strip-star { width: 28px; height: 28px; }
.tp-strip-logo { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.tp-strip-score { font-family: var(--ff-display); font-size: 36px; font-weight: 300; color: var(--text); line-height: 1; }
.tp-strip-stars { color: #00B67A; font-size: 20px; letter-spacing: 3px; line-height: 1; }
.tp-strip-count { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.tp-strip-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tp-strip-card { background: var(--off-white); padding: 24px 28px; border: 1px solid var(--border); }
.tp-strip-card-stars { color: #00B67A; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.tp-strip-card-text { font-size: 13px; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 12px; }
.tp-strip-card-author { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }

/* Social mini-grid in newsletter */
.nl-social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 28px; }
.nl-social-img { display: block; aspect-ratio: 1/1; overflow: hidden; }
.nl-social-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease-out; }
.nl-social-img:hover img { transform: scale(1.05); }

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--ink); padding: 36px var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: center; position: relative; overflow: hidden;
}
.newsletter::before {
  content: 'SC'; position: absolute; right: -32px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 380px; font-weight: 600;
  color: rgba(232,114,78,0.06); line-height: 1; pointer-events: none; user-select: none;
}
.nl-social { padding-right: 88px; border-right: 1px solid rgba(255,255,255,0.08); }
.nl-signup { padding-left: 88px; }
.nl-platforms { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.nl-plat {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
}
.nl-plat svg { width: 16px; height: 16px; flex-shrink: 0; }
.nl-plat:hover { color: white; }
.nl-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.nl-title { font-family: var(--ff-display); font-size: 64px; font-weight: 300; color: white; line-height: 1.0; letter-spacing: 0; }
.nl-title em { font-style: italic; }
.nl-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.48); margin-bottom: 32px; }
.nl-form { display: flex; }
.nl-form input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-right: none; padding: 15px 20px; font-family: var(--ff-body); font-size: 13px; color: white; outline: none; transition: border-color 0.25s, background 0.25s; }
.nl-form input::placeholder { color: rgba(255,255,255,0.28); }
.nl-form input:focus { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.1); }
.nl-form button { background: var(--accent); color: var(--ink); border: none; padding: 15px 30px; font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.25s; }
.nl-form button:hover { background: var(--accent-dark); }
.nl-note { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 13px; }

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,0.42); padding: 80px var(--side-pad) 40px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.32); padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-hours-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-img { display: block; height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--ff-display); font-size: 28px; font-weight: 300; color: white; margin-bottom: 16px; letter-spacing: 0; }
.footer-brand-name em { font-style: italic; color: rgba(255,255,255,0.4); }
.footer-about { font-size: 13px; line-height: 1.88; max-width: 252px; margin-bottom: 30px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link svg { display: block; }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.32); font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
/* WP nav menu in footer — wrap is a ul with class menu */
.footer-col .menu { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col .menu li a { text-decoration: none; color: rgba(255,255,255,0.32); font-size: 13px; transition: color 0.2s; }
.footer-col .menu li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { text-decoration: none; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ─── IMAGE FADE + REVEAL ─── */
img { opacity: 0; transition: opacity 0.5s ease; }
img.loaded { opacity: 1; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.4, 0, 1, 1), transform 0.9s cubic-bezier(0.4, 0, 1, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SPLIT HEADING ANIMATION ─── */
.split-heading .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.06em; }
.split-heading .word-inner { display: inline-block; transform: translateY(110%); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: calc(var(--i, 0) * 75ms); }
.split-heading.words-visible .word-inner { transform: translateY(0); }

/* ─── WOOCOMMERCE INTEGRATION ─── */
.sc-wc-main { min-height: 60vh; }
/* Price display compatibility */
.woocommerce-Price-amount { color: var(--accent-dark); font-size: 13px; font-weight: 500; }
ins .woocommerce-Price-amount { color: var(--accent); font-weight: 700; }
del .woocommerce-Price-amount { color: var(--text-light); }
del { text-decoration: line-through; color: var(--text-light); }

/* ─── BLOG ARCHIVE (index.php) ─── */
.sc-archive-main { background: var(--white); }
.sc-archive-inner { }
.sc-pagination { border-top: 1px solid var(--border); }
.sc-pagination .page-numbers { list-style: none; display: flex; gap: 8px; }
.sc-pagination .page-numbers li a,
.sc-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1.5px solid var(--border);
  font-size: 11px; font-weight: 700; text-decoration: none; color: var(--text-mid);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sc-pagination .page-numbers li a:hover { background: var(--ink); border-color: var(--ink); color: white; }
.sc-pagination .page-numbers li .current { background: var(--ink); border-color: var(--ink); color: white; }

/* ─── BREADCRUMB ─── */
.breadcrumb-bar { padding: 18px var(--side-pad); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 10px; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.06em; color: var(--text-light); }
.breadcrumb li::after { content: '›'; color: var(--warm-mid); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { text-decoration: none; color: inherit; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb li:last-child { color: var(--text-mid); }

/* ─── CATEGORY HEADER ─── */
.cat-header {
  padding: 52px var(--side-pad) 48px; background: var(--ink);
  display: grid; grid-template-columns: 1fr; align-items: end; gap: 40px;
  position: relative; overflow: hidden; min-height: 300px;
}
.cat-header-bg { position: absolute; inset: 0; z-index: 0; }
.cat-header-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-header-bg::after { content: ''; position: absolute; inset: 0; background: none; }
.cat-header::before {
  content: attr(data-ghost); position: absolute; right: -20px; bottom: -40px;
  font-family: var(--ff-display); font-size: clamp(140px, 18vw, 260px);
  font-weight: 300; line-height: 1; color: rgba(232,114,78,0.07);
  letter-spacing: -0.04em; user-select: none; pointer-events: none; z-index: 1;
}
.cat-header-left { position: relative; z-index: 2; text-align: center; }
.cat-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; text-align: center; }
.cat-title { font-family: var(--ff-display); font-size: clamp(42px, 5vw, 68px); font-weight: 300; line-height: 1.0; color: white; margin-bottom: 14px; }
.cat-title em { font-style: italic; }
.cat-description { font-size: 15px; color: rgba(255,255,255,0.52); max-width: 560px; line-height: 1.7; }
.cat-header-right { position: absolute; right: var(--side-pad); bottom: 48px; text-align: right; z-index: 2; }
.cat-count-num { font-family: var(--ff-display); font-size: 52px; font-weight: 300; color: white; line-height: 1; }
.cat-count-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.32); }

/* No-image variant — matches cart/checkout white hero */
.cat-header--no-img { background: var(--off-white); min-height: auto; border-bottom: 1px solid var(--border); padding: 52px var(--side-pad); grid-template-columns: 1fr; justify-items: center; text-align: center; }
.cat-header--no-img::before { display: none; }
.cat-header--no-img .cat-header-left { text-align: center; }
.cat-header--no-img .cat-eyebrow { color: var(--accent-dark); text-align: center; }
.cat-header--no-img .cat-title { color: var(--text); font-size: clamp(40px, 5vw, 58px); line-height: 1.05; }
.cat-header--no-img .cat-title em { color: var(--accent); }
.cat-header--no-img .cat-description { color: var(--text-mid); text-align: center; max-width: 560px; margin: 0 auto; font-size: 13px; line-height: 1.7; }
.cat-header--no-img .cat-header-right { display: none; }
.cat-header--no-img .cat-header-center { position: relative; z-index: 2; }

/* ─── SUB-NAV ─── */
.sub-nav { position: relative; padding: 0 var(--side-pad) 0 256px; border-bottom: 1px solid var(--border); display: flex; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; background: var(--off-white); }
.sub-nav::-webkit-scrollbar { display: none; }
.sub-nav::before { content: ''; position: absolute; left: 256px; top: 0; bottom: 0; width: 1px; background: var(--border); pointer-events: none; }
.sub-nav-link { padding: 16px 24px; font-family: var(--ff-body); font-size: 13px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; color: var(--text-light); text-decoration: none; white-space: nowrap; border-bottom: 1.5px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; }
.sub-nav-link:hover { color: var(--text); }
.sub-nav-link.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 500; }

/* ─── ARCHIVE LAYOUT ─── */
.archive-layout { display: grid; grid-template-columns: 256px 1fr; align-items: start; min-height: 70vh; }

/* ─── FILTER SIDEBAR ─── */
.filter-sidebar { border-right: 1px solid var(--border); padding: 40px 32px 60px; position: sticky; top: 112px; height: calc(100vh - 112px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border) transparent; background: var(--white); }
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.filter-header { display: none; }
.filter-heading { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); font-weight: 400; }
.sub-nav-filter-label { position: absolute; left: 0; top: 0; bottom: 0; width: 256px; display: flex; align-items: center; padding-left: 32px; font-family: var(--ff-body); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-transform: none; color: var(--text); pointer-events: none; flex-shrink: 0; }
.filter-section { border-top: none; }
.filter-section ~ .filter-section { border-top: 1px solid var(--border); }
#dynamicFilterSections .filter-section { border-top: 1px solid var(--border); }
#dynamicFilterSections + .filter-section { border-top: 1px solid var(--border); }
.filter-section-btn { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--ff-body); font-size: 13px; letter-spacing: 0.02em; text-transform: none; color: var(--text); font-weight: 400; }
.filter-chevron { width: 14px; height: 14px; stroke: var(--text-light); fill: none; stroke-width: 1.8; transition: transform 0.25s; flex-shrink: 0; }
.filter-section.open .filter-chevron { transform: rotate(180deg); }
.filter-body { display: none; padding-bottom: 20px; }
.filter-section.open .filter-body { display: block; }
.filter-check-list { display: flex; flex-direction: column; gap: 2px; }
.filter-check-label { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 13px; color: var(--text-mid); transition: color 0.2s; }
.filter-check-label:hover { color: var(--text); }
.filter-check-label input[type="checkbox"] { display: none; }
.filter-check-box { width: 16px; height: 16px; border: 1px solid var(--border); background: white; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.filter-check-label input:checked ~ .filter-check-box { background: var(--text); border-color: var(--text); }
.filter-check-box::after { content: ''; width: 8px; height: 5px; border-left: 1.5px solid white; border-bottom: 1.5px solid white; transform: rotate(-45deg) translateY(-1px); display: none; }
.filter-check-label input:checked ~ .filter-check-box::after { display: block; }
.filter-check-count { margin-left: auto; font-size: 11px; color: var(--text-light); }

/* ── Colour group swatch filter ── */
.filter-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 14px 6px; padding: 4px 0 8px;
}
.filter-swatch {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 2px;
}
.filter-swatch-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sc-sw, #ccc);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block; flex-shrink: 0;
}
.filter-swatch:hover .filter-swatch-circle { transform: scale(1.1); }
.filter-swatch.active .filter-swatch-circle {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3.5px var(--ink);
}
.filter-swatch-name {
  font-family: var(--ff-body); font-size: 9px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-light); text-align: center; line-height: 1.2;
  word-break: break-word;
}
.filter-swatch.active .filter-swatch-name { color: var(--text); font-weight: 700; }
.price-range-wrap { padding: 4px 0 8px; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-mid); margin-bottom: 14px; }
input[type="range"] { -webkit-appearance: none; width: 100%; height: 2px; background: var(--border); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--text); border-radius: 50%; cursor: pointer; }

/* ─── PRICE RANGE SLIDER ─── */
.price-range-wrap { padding: 4px 0 8px; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-mid); margin-bottom: 14px; }
.price-range-labels span:last-child { color: var(--text); font-weight: 400; }
.price-range-wrap input[type="range"] { -webkit-appearance: none; width: 100%; height: 2px; background: var(--border); outline: none; cursor: pointer; display: block; }
.price-range-wrap input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; background: var(--text); border-radius: 50%; cursor: pointer; transition: transform 0.15s; }
.price-range-wrap input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.price-range-wrap input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: var(--text); border: none; border-radius: 50%; cursor: pointer; }

/* ─── ARCHIVE PRODUCT AREA & TOOLBAR ─── */
.product-area { padding: 0; }
.toolbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 40px; border-bottom: none; position: sticky; top: 112px; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); z-index: 10; gap: 16px; flex-wrap: wrap; }
.result-count { font-size: 12px; color: var(--text-light); white-space: nowrap; }
.result-count strong { color: var(--text); font-weight: 400; }
.toolbar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
/* Filter button — hidden on desktop, shown on mobile */
.toolbar-filter-btn { display: none; }
/* Filter drawer close button — hidden on desktop */
.filter-close-btn { display: none; }
/* Backdrop */
.filter-backdrop { display: none; position: fixed; inset: 0; background: rgba(26,25,24,0.5); z-index: 299; }
.filter-backdrop.is-open { display: block; }
.sort-select,
.woocommerce-ordering select { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.1em; color: var(--text); background: none; border: 1px solid var(--border); padding: 0 26px 0 10px; height: 30px; cursor: pointer; outline: none; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C9994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering label { display: none; }
.result-count-short { display: none; }
.product-grid-wrap { padding: 36px 40px 56px; max-width: 1550px; margin: 0 auto; }

/* ─── ARCHIVE PRODUCT GRID ─── */
.archive-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 20px; }
.archive-product-grid .product-card { text-decoration: none; color: inherit; display: block; }
.archive-product-grid .product-name { font-family: var(--ff-display); font-size: 18px; font-weight: 300; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
/* WooCommerce price output compatibility in archive */
.archive-product-grid .product-price { font-size: 18px; color: var(--text); }
.archive-product-grid .product-price .woocommerce-Price-amount { font-size: 18px; color: var(--text); font-weight: 500; }
.archive-product-grid .product-price ins { text-decoration: none; }
.archive-product-grid .product-price ins .woocommerce-Price-amount { color: var(--text); font-weight: 700; }
.archive-product-grid .product-price del .woocommerce-Price-amount { color: var(--text-light); }
.archive-product-grid .product-card { display: flex; flex-direction: column; }
.archive-product-grid .product-img-wrap { order: 0; }
.archive-product-grid .product-brand { order: 1; text-align: center; margin-bottom: 12px; }
.archive-product-grid .product-name { order: 2; text-align: center; }
.archive-product-grid .product-price { order: 3; text-align: center; }
.archive-product-grid .product-stars { order: 4; justify-content: center; }
.archive-product-grid .card-swatches { order: 5; justify-content: center; }

/* ─── PRODUCT PAGE ─── */
.pd-breadcrumb { background: var(--white); }
.pd-breadcrumb-inner { max-width: 1340px; margin: 0 auto; padding: 10px 72px 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pd-breadcrumb-inner a { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); text-decoration: none; transition: color 0.15s; }
.pd-breadcrumb-inner a:hover { color: var(--accent); }
.pd-breadcrumb-sep { font-size: 9px; font-weight: 700; color: var(--accent-dark); opacity: 0.4; letter-spacing: 0; }
.pd-breadcrumb-current { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-light); }
.pd-section { background: var(--white); padding: 24px 0 80px; border-bottom: 1px solid var(--border); }
.pd-layout { display: grid; grid-template-columns: 68px 1fr 460px; column-gap: 48px; max-width: 1340px; margin: 0 auto; padding: 0 72px; align-items: start; }

/* Thumbnail strip */
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; padding-top: 2px; max-height: 600px; overflow-y: auto; scrollbar-width: none; position: sticky; top: 100px; align-self: start; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { width: 68px; aspect-ratio: 1/1; overflow: hidden; cursor: pointer; border: 2px solid transparent; background: var(--warm); transition: border-color 0.2s, opacity 0.2s; flex-shrink: 0; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 0.7; }
.gallery-thumb.active { border-color: var(--ink); }

/* Main image */
.gallery-main-col { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; align-self: start; }
.gallery-main { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--warm); cursor: zoom-in; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.75s cubic-bezier(0.4, 0, 1, 1); }
.gallery-main:hover .gallery-main-img { transform: scale(1.04); }
.gallery-dots { display: none; }
.gallery-tape { position: absolute; top: 28px; right: -42px; z-index: 2; background: var(--accent); color: var(--ink); font-size: 8px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 8px 60px; transform: rotate(45deg); white-space: nowrap; pointer-events: none; }
.gallery-foot { display: flex; align-items: center; gap: 14px; }
.gallery-count { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-light); white-space: nowrap; }
.gallery-prog { flex: 1; height: 1.5px; background: var(--warm-mid); overflow: hidden; }
.gallery-prog-fill { height: 100%; background: var(--accent-dark); transition: width 0.35s cubic-bezier(0.4, 0, 1, 1); }

/* Purchase column */
.purchase-col { border-left: 1px solid var(--border); padding-left: 52px; padding-top: 0; }
.pd-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 24px; }
.pd-brand { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.pd-brand a { text-decoration: none; color: inherit; transition: color 0.2s; }
.pd-brand a:hover { color: var(--text-mid); }
.pd-title { font-family: var(--ff-display); font-size: clamp(24px, 2.2vw, 36px); font-weight: 300; line-height: 1.05; color: var(--text); letter-spacing: 0; margin-bottom: 21px; }
.pd-title em { font-style: italic; color: var(--accent); }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; width: 100%; }
.pd-rating .pd-stock { margin: 0; margin-left: auto; }
.pd-stars { display: flex; gap: 2px; }
.star { width: 12px; height: 12px; fill: var(--accent); display: block; }
.pd-rating-score { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.pd-rating-count { font-size: 12px; color: var(--text-light); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border); transition: color 0.2s; }
.pd-rating-count:hover { color: var(--text-mid); }
.pd-price-row { margin-bottom: 0; }
.pd-price { font-family: var(--ff-display); font-size: 32px; font-weight: 300; color: var(--ink); line-height: 1; }
.pd-price .woocommerce-Price-amount,
.pd-price .woocommerce-Price-amount bdi { font-family: var(--ff-display); font-size: 32px; font-weight: 300; color: var(--ink); }
.pd-price-was { font-size: 15px; color: var(--text-light); text-decoration: line-through; margin-left: 12px; vertical-align: middle; }
.pd-price-was .woocommerce-Price-amount,
.pd-price-was .woocommerce-Price-amount bdi { font-size: 15px; color: var(--text-light); font-weight: 300; }
.pd-stock { display: inline-flex; align-items: center; gap: 7px; margin-top: 0; margin-bottom: 0; padding: 5px 12px; border-radius: 2px; background: rgba(94,155,94,0.12); border: 1px solid rgba(94,155,94,0.3); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4A8A4A; }
.pd-stock.out-of-stock { background: rgba(192,57,43,0.08); border-color: rgba(192,57,43,0.25); color: #C0392B; }
.pd-stock-dot { width: 6px; height: 6px; border-radius: 50%; background: #5E9B5E; flex-shrink: 0; }
.pd-stock.out-of-stock .pd-stock-dot { background: #C0392B; }
.pd-rule { height: 1px; background: var(--border); margin: 25px 0; }
.pd-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 0; }
.pd-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.pd-features li svg { width: 13px; height: 13px; stroke: var(--accent-dark); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
/* ─ Dispatch estimate strip ─ */
.pd-dispatch {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--warm); padding: 14px 16px; margin-bottom: 20px;
}
.pd-dispatch-icon { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.pd-dispatch-text { display: flex; flex-direction: column; gap: 2px; }
.pd-dispatch-urgency { font-family: var(--ff-body); font-size: 13px; color: var(--text); }
.pd-dispatch-urgency strong { font-weight: 700; color: var(--accent); }
.pd-dispatch-est { font-family: var(--ff-body); font-size: 12px; color: var(--text-mid); }
.pd-dispatch-est strong { font-weight: 600; color: var(--text); }

.pd-delivery { display: flex; flex-direction: column; gap: 11px; }
.pd-delivery-item { display: flex; align-items: center; gap: 11px; font-size: 12px; color: var(--text-light); }
.pd-delivery-item svg { width: 14px; height: 14px; stroke: var(--text-light); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.pd-delivery-item strong { color: var(--text-mid); font-weight: 600; }
.pd-delivery-toggle { display: flex; align-items: center; gap: 6px; background: none; border: none; padding: 8px 0 0; font-family: var(--ff-body); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--accent-dark); cursor: pointer; transition: color 0.15s; }
.pd-delivery-toggle:hover { color: var(--accent); }
.pd-delivery-toggle-icon { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.25s ease; }
.pd-delivery-toggle[aria-expanded="true"] .pd-delivery-toggle-icon { transform: rotate(180deg); }
.pd-delivery-table { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.pd-delivery-table.open { max-height: 400px; }
.pd-delivery-table table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.pd-delivery-table th { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); padding: 0 8px 8px 0; border-bottom: 1px solid var(--border); text-align: left; }
.pd-delivery-table td { font-size: 12px; color: var(--text-mid); padding: 9px 8px 9px 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.pd-delivery-table tr:last-child td { border-bottom: none; }
.pd-delivery-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }

/* ─── WOOCOMMERCE ADD TO CART FORM ─── */

/* Quantity wrapper — flex row: label | − | input | + */
.pd-wc-form .quantity { display: flex; align-items: stretch; border: 1px solid var(--border); width: fit-content; flex-shrink: 0; }

/* Un-hide WC's screen-reader label and style it as "Qty" prefix */
.pd-wc-form .quantity .screen-reader-text { position: static; clip: auto; width: auto; height: auto; overflow: visible; white-space: nowrap; display: flex; align-items: center; font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; padding: 0 14px; flex-shrink: 0; }

/* Qty number input — no spin arrows */
.pd-wc-form input.qty { width: 52px; height: 48px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; padding: 0; -moz-appearance: textfield; }
.pd-wc-form input.qty::-webkit-outer-spin-button,
.pd-wc-form input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Custom ± stepper buttons injected by JS */
.pd-qty-btn { width: 48px; height: 48px; background: none; border: none; cursor: pointer; font-size: 22px; font-weight: 300; color: var(--text-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: color 0.2s, background 0.2s; user-select: none; line-height: 1; }
.pd-qty-btn:hover { color: var(--text); background: var(--warm); }

/* Variations table — render as stacked divs */
.pd-wc-form .variations, .pd-wc-form .variations tbody { display: block; width: 100%; }
.pd-wc-form .variations tr { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.pd-wc-form .variations th.label, .pd-wc-form .variations td.value { display: block; padding: 0; }
.pd-wc-form .variations th.label label { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; cursor: default; }

/* Variation dropdown — custom styled */
.pd-wc-form .variations select { width: 100%; height: 46px; border: 1px solid var(--border); padding: 0 40px 0 14px; font-family: var(--ff-body); font-size: 12px; letter-spacing: 0.03em; color: var(--text); background: var(--white); outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C9994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; transition: border-color 0.2s; }
.pd-wc-form .variations select:focus { border-color: var(--text-mid); }

/* "Clear" link */
.pd-wc-form .reset_variations { display: none; margin-top: 6px; font-size: 10px; color: var(--text-light); text-decoration: underline; text-underline-offset: 3px; letter-spacing: 0.04em; transition: color 0.2s; }
.pd-wc-form .reset_variations[style*="visibility: visible"] { display: inline-block; }
.pd-wc-form .reset_variations:hover { color: var(--text-mid); }

/* Variation price/stock update area */
.pd-wc-form .woocommerce-variation { font-size: 13px; color: var(--text-mid); margin: 0; padding: 0; }
.pd-wc-form .woocommerce-variation-price,
.pd-wc-form .woocommerce-variation-availability { display: none; }
.pd-wc-form .woocommerce-variation-add-to-cart { display: flex; flex-direction: row; align-items: stretch; gap: 12px; }

/* Add to Cart button */
.pd-wc-form .single_add_to_cart_button,
.pd-wc-form button.button,
.pd-wc-form .wp-element-button { flex: 1; width: 0; min-width: 0; height: 52px; background: var(--ink); color: white; border: none; padding: 0 17px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 0; outline: none; -webkit-appearance: none; appearance: none; box-shadow: none; }
.pd-wc-form .single_add_to_cart_button::before,
.pd-wc-form button.button::before { content: ''; display: inline-block; width: 15px; height: 15px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; background-position: center; }
.pd-wc-form .single_add_to_cart_button:hover,
.pd-wc-form button.button:hover { background: var(--dark); }
.pd-wc-form .single_add_to_cart_button:disabled,
.pd-wc-form .single_add_to_cart_button.disabled { background: var(--text-mid); color: white; cursor: not-allowed; }
.pd-wc-form .single_add_to_cart_button:disabled::before,
.pd-wc-form .single_add_to_cart_button.disabled::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E"); }

.pd-wc-form .variations { margin-top: -17px; margin-bottom: 25px; }
.pd-wc-form .variations tr + tr { margin-top: 8px; }
.pd-wc-form .woocommerce-variation-add-to-cart { margin-top: 0; }
.pd-payment-icons { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.pd-payment-icons svg { width: 34px; height: 22px; color: var(--text-mid); opacity: 0.7; transition: opacity 0.2s; }
.pd-payment-icons svg:hover { opacity: 1; }

/* ─── DESCRIPTION + SPECS TABS ─── */
.pd-tabs { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pd-tabs-inner { max-width: 1340px; margin: 0 auto; padding: 0 72px; }

/* Tab nav */
.pd-tab-nav { display: inline-flex; border-bottom: 1px solid var(--border); }
.pd-tab-btn { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 28px 0; margin-right: 40px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.pd-tab-btn:hover { color: var(--text); }
.pd-tab-btn.active { color: var(--text); border-bottom-color: var(--accent); }

/* Panels */
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; padding: 64px 0 80px; }

/* Description panel content */
.pd-desc-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 18px; }
.pd-desc-title { font-family: var(--ff-display); font-size: clamp(28px, 2.6vw, 40px); font-weight: 300; line-height: 1.06; color: var(--text); }
.pd-desc-title em { font-style: italic; }
.pd-desc-text { font-size: 14px; line-height: 1.95; color: var(--text-mid); padding-top: 12px; }
.pd-desc-text p + p { margin-top: 18px; }

/* Specs panel content */
.pd-specs-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 18px; }
.pd-specs-title { font-family: var(--ff-display); font-size: clamp(28px, 2.6vw, 40px); font-weight: 300; color: var(--text); line-height: 1.05; }
.pd-specs-title em { font-style: italic; }
.spec-table { border-top: 1px solid var(--border); }
.spec-row { display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--border); }
.spec-key { padding: 13px 14px 13px 0; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.spec-val { padding: 13px 0; font-size: 13px; color: var(--text); }

/* Related carousel */
/* ─── REVIEWS ─── */
.pd-reviews { background: var(--off-white); padding: 72px 0; border-top: 1px solid var(--border); }
.pd-reviews-inner { max-width: 1340px; margin: 0 auto; padding: 0 72px; }
.pd-reviews-head { margin-bottom: 48px; }
.pd-reviews-title { font-family: var(--ff-display); font-size: clamp(28px, 2.6vw, 40px); font-weight: 300; color: var(--text); margin-top: 12px; }
.pd-reviews-title em { font-style: italic; }

/* Summary bar */
.pd-reviews-summary { display: grid; grid-template-columns: 160px 1fr; gap: 48px; align-items: center; padding: 36px 40px; background: var(--white); border: 1px solid var(--border); margin-bottom: 48px; }
.pd-reviews-avg { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pd-reviews-big-num { font-family: var(--ff-display); font-size: 64px; font-weight: 300; line-height: 1; color: var(--text); }
.pd-reviews-avg-stars { display: flex; gap: 3px; }
.pd-reviews-avg-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.pd-reviews-bars { display: flex; flex-direction: column; gap: 10px; }
.pd-reviews-bar-row { display: flex; align-items: center; gap: 10px; }
.pd-reviews-bar-label { font-size: 12px; font-weight: 600; color: var(--text-mid); width: 10px; text-align: right; flex-shrink: 0; }
.pd-reviews-bar-star { width: 12px; height: 12px; fill: var(--accent); stroke: none; flex-shrink: 0; }
.pd-reviews-bar-track { flex: 1; height: 6px; background: var(--warm-mid); }
.pd-reviews-bar-fill { height: 100%; background: var(--accent); transition: width 0.4s ease; }
.pd-reviews-bar-count { font-size: 11px; color: var(--text-light); width: 20px; flex-shrink: 0; }

/* Review cards carousel */
.pd-reviews-carousel-wrap { position: relative; }
.pd-reviews-carousel-wrap .carousel-btn--side { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.pd-reviews-carousel-wrap #reviewPrev { left: -56px; }
.pd-reviews-carousel-wrap #reviewNext { right: -56px; }
.pd-reviews-grid { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; margin-bottom: 56px; }
.pd-reviews-grid.is-dragging { cursor: grabbing; user-select: none; }
.pd-reviews-grid::-webkit-scrollbar { display: none; }
.pd-review-card { flex: 0 0 calc((100% - 48px) / 3); min-width: 280px; background: var(--white); border: 1px solid var(--border); padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; scroll-snap-align: start; }
.pd-review-top { display: flex; align-items: center; gap: 12px; }
.pd-review-stars { display: flex; gap: 3px; }
.pd-review-stars .star { width: 14px; height: 14px; }
.pd-review-verified { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.pd-review-text { font-size: 14px; line-height: 1.7; color: var(--text-mid); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pd-review-text.expanded { -webkit-line-clamp: unset; }
.pd-review-card { position: relative; }
.pd-review-read-more { background: none; border: none; padding: 0; position: absolute; bottom: 28px; right: 32px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dark); cursor: pointer; transition: color 0.2s; }
.pd-review-read-more:hover { color: var(--accent); }
.pd-review-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.pd-review-author { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.pd-review-date { font-size: 11px; color: var(--text-light); }

/* Stars shared */
.star { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-width: 1.5; }
.star.filled { fill: var(--accent); stroke: var(--accent); }

#writeReviewToggle { margin-bottom: 48px; }

/* Write a review form */
.pd-review-form-wrap { border-top: 1px solid var(--border); padding-top: 48px; }
.pd-review-form-title { font-family: var(--ff-display); font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 32px; }
.pd-review-submit { margin-top: 24px; }
.btn-add-bag { height: 52px; background: var(--ink); color: white; border: none; padding: 0 32px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; border-radius: 0; outline: none; -webkit-appearance: none; appearance: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-add-bag:hover { background: var(--dark); color: white; }

/* WooCommerce native form fields */
.pd-review-form p { margin-bottom: 20px; }
.pd-review-form label {
  display: block; margin-bottom: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid);
}
.pd-review-form input[type="text"],
.pd-review-form input[type="email"],
.pd-review-form textarea {
  width: 100%; border: 1px solid var(--border); background: var(--white);
  padding: 12px 16px; font-family: var(--ff-body); font-size: 13px; color: var(--text);
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.pd-review-form input:focus,
.pd-review-form textarea:focus { border-color: var(--accent); }
.pd-review-form .comment-form-author,
.pd-review-form .comment-form-email { display: inline-block; width: calc(50% - 10px); }
.pd-review-form .comment-form-author { margin-right: 20px; }
.pd-review-form .comment-form-comment { display: block; }
.pd-review-form .comment-form-comment textarea { min-height: 130px; }

/* Star rating input — reversed radio buttons */
.pd-review-rating-wrap { margin-bottom: 24px; }
.pd-review-rating-wrap > label { display: block; margin-bottom: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); }
.pd-stars-input { display: flex; flex-direction: row-reverse; gap: 4px; width: fit-content; }
.pd-stars-input input[type="radio"] { display: none; }
.pd-stars-input label { font-size: 28px; color: var(--border); cursor: pointer; transition: color 0.15s; line-height: 1; }
.pd-stars-input label:hover,
.pd-stars-input label:hover ~ label,
.pd-stars-input input:checked ~ label { color: var(--accent); }
.pd-review-login-note { font-size: 14px; color: var(--text-mid); }
.pd-review-login-note a { color: var(--accent); text-decoration: none; }
.pd-review-form .required { color: var(--accent); margin-left: 2px; }

@media (max-width: 1100px) { .pd-reviews-inner { padding: 0 48px; } .pd-review-card { flex: 0 0 calc((100% - 24px) / 2); } .pd-reviews-carousel-wrap .carousel-btn--side { display: none; } }
@media (max-width: 768px) { .pd-reviews-inner { padding: 0 24px; } .pd-reviews-summary { grid-template-columns: 120px 1fr; gap: 24px; padding: 24px; } .pd-review-card { flex: 0 0 85%; } .pd-review-fields { grid-template-columns: 1fr; } }

.related { background: var(--white); padding: 72px 0; border-top: 1px solid var(--border); }
.related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; padding: 0 var(--side-pad) 20px; border-bottom: 1px solid var(--border); }
.related-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.related-title { font-family: var(--ff-display); font-size: clamp(30px, 3.8vw, 44px); font-weight: 300; color: var(--text); }
.related-title em { font-style: italic; }
.related-controls { display: flex; align-items: center; gap: 10px; }
.related .carousel-track { padding: 0 var(--side-pad) 8px; }

/* ═══════════════════════════════════════════════════════
   SHARED PAGE ELEMENTS
═══════════════════════════════════════════════════════ */

/* Page hero header — used on cart, checkout, account */
.sc-page-hero { background: var(--off-white); padding: 52px var(--side-pad); border-bottom: 1px solid var(--border); text-align: center; }
.sc-page-hero .section-eyebrow { color: var(--accent-dark); margin: 0 auto 14px; }
.sc-page-hero .section-eyebrow::before,
.sc-page-hero .section-eyebrow::after { display: none; }
.sc-page-title { font-family: var(--ff-display); font-size: clamp(40px, 5vw, 58px); font-weight: 300; line-height: 1.05; color: var(--text); margin-top: 8px; letter-spacing: 0; }
.sc-page-title em { font-style: italic; color: var(--accent); }
.sc-page-meta { display: block; font-size: 12px; color: var(--text-light); margin-top: 10px; letter-spacing: 0.06em; }

/* Empty state */
.sc-empty-state { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 100px 40px; }
.sc-empty-state svg { width: 52px; height: 52px; color: var(--border); margin-bottom: 28px; }
.sc-empty-title { font-family: var(--ff-display); font-size: 36px; font-weight: 300; color: var(--text); margin-bottom: 8px; }
.sc-empty-title em { font-style: italic; color: var(--accent); }
.sc-empty-body { font-size: 14px; color: var(--text-light); margin-bottom: 36px; }
.sc-btn-ink { display: inline-block; background: var(--ink); color: white; padding: 14px 36px; font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: background 0.25s; }
.sc-btn-ink:hover { background: var(--dark); color: white; }
.sc-btn-ghost { display: inline-block; background: transparent; color: var(--text-mid); padding: 14px 36px; font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border: 1.5px solid var(--border); transition: border-color 0.25s, color 0.25s; }
.sc-btn-ghost:hover { border-color: var(--text-mid); color: var(--text); }

/* ─── THANK YOU PAGE ─── */
.sc-thankyou { max-width: 720px; margin: 0 auto; padding: 0 var(--side-pad); }
.sc-thankyou-hero { text-align: center; padding: 72px 0; }
.sc-thankyou-hero svg { width: 56px; height: 56px; color: #5E9B5E; margin-bottom: 24px; }
.sc-thankyou-hero--failed svg { color: #C0392B; }
.sc-thankyou-title { font-family: var(--ff-display); font-size: clamp(32px, 4vw, 44px); font-weight: 300; color: var(--text); margin-bottom: 12px; line-height: 1.05; }
.sc-thankyou-title em { font-style: italic; color: var(--accent); }
.sc-thankyou-body { font-size: 15px; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.sc-thankyou-body strong { color: var(--text); font-weight: 500; }
.sc-thankyou-actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }

@media (max-width: 768px) {
  .sc-thankyou-hero { padding: 48px 0 36px; }
  .sc-thankyou-actions { flex-direction: column; align-items: center; gap: 10px; }
}

/* WooCommerce notices */
.woocommerce-error, .woocommerce-message, .woocommerce-info { list-style: none; padding: 14px 20px; margin: 0 0 20px; font-size: 13px; border-left: 3px solid; }
.woocommerce-error { background: #FEF2F2; border-color: #C0392B; color: #8B1A1A; }
.woocommerce-message { background: var(--warm); border-color: var(--accent-dark); color: var(--text); }
.woocommerce-info { background: var(--off-white); border-color: var(--text-light); color: var(--text-mid); }
.woocommerce-error a, .woocommerce-message a, .woocommerce-info a { color: inherit; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════════════ */

/* Page header — cart (dark ink, ghost text, breadcrumb) */
.page-header { background: var(--ink); padding: 52px var(--side-pad); position: relative; overflow: hidden; }
.page-header::before { content: attr(data-ghost); position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--ff-display); font-size: 260px; font-weight: 600; color: rgba(232,114,78,0.06); line-height: 1; pointer-events: none; user-select: none; white-space: nowrap; }
.page-header-breadcrumb { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.page-header-breadcrumb a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.page-header-breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.page-header-breadcrumb span { color: rgba(255,255,255,0.14); }
.page-header-row { display: flex; align-items: flex-end; justify-content: space-between; position: relative; z-index: 1; }
.page-header-title { font-family: var(--ff-display); font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: white; line-height: 1.05; }
.page-header-title em { font-style: italic; color: var(--accent); }
.page-header-meta { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.32); padding-bottom: 8px; }
.page-header-meta strong { color: var(--accent); }

/* Cart layout */
.cart-wrap { display: grid; grid-template-columns: 1fr 400px; align-items: stretch; border-bottom: 1px solid var(--border); }
.cart-items-col { border-right: 1px solid var(--border); }

/* Column header bar */
.cart-col-bar { display: grid; grid-template-columns: 88px 1fr 130px 160px auto 48px; gap: 0 24px; align-items: center; padding: 20px var(--side-pad); background: var(--off-white); border-bottom: 1px solid var(--border); }
.cart-col-label { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-light); }
.cart-col-label--center { text-align: center; }
.cart-col-label--right { text-align: right; }

/* Cart item row */
.cart-item { display: grid; grid-template-columns: 88px 1fr 130px 160px auto 48px; gap: 0 24px; align-items: center; padding: 24px var(--side-pad); border-bottom: 1px solid var(--border); transition: background 0.2s; }
.cart-item:hover { background: var(--off-white); }

/* Thumbnail */
.cart-item-thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--warm); flex-shrink: 0; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1; }
.cart-item-thumb a { display: block; width: 100%; height: 100%; }

/* Product info column */
.cart-item-brand { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.cart-item-name { font-family: var(--ff-display); font-size: 18px; font-weight: 300; color: var(--text); line-height: 1.25; margin-bottom: 8px; }
.cart-item-name a { text-decoration: none; color: inherit; transition: color 0.2s; }
.cart-item-name a:hover { color: var(--text-mid); }
.cart-item-variant { font-size: 11px; color: var(--text-light); margin-bottom: 12px; }
.cart-item-variant dl.variation { display: flex; flex-wrap: wrap; align-items: center; gap: 0 4px; margin: 0; }
.cart-item-variant dl.variation dt,
.cart-item-variant dl.variation dd { margin: 0; }
.cart-item-variant dl.variation p { display: inline; margin: 0; }
.cart-item-variant dl.variation dd:not(:last-child)::after { content: ' ·'; margin-left: 2px; color: var(--border); }
.cart-item-remove-text { background: none; border: none; cursor: pointer; padding: 0; font-family: var(--ff-body); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s; }
.cart-item-remove-text:hover { color: var(--accent); }
.cart-item-remove-text svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Price column */
.cart-item-price { font-size: 15px; font-weight: 500; color: var(--text); text-align: center; }
.cart-item-price .woocommerce-Price-amount { font-size: 15px; color: var(--text); }

/* Qty stepper */
.cart-item-qty { display: flex; justify-content: center; }
.cart-item-qty .quantity { display: flex; align-items: stretch; border: 1px solid var(--border); background: var(--white); }
.cart-item-qty .quantity .screen-reader-text { display: none; }
.cart-item-qty input.qty { width: 40px; height: 36px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--text); background: none; outline: none; padding: 0; -moz-appearance: textfield; }
.cart-item-qty input.qty::-webkit-outer-spin-button,
.cart-item-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-qty .pd-qty-btn { width: 36px; height: 36px; background: none; border: none; cursor: pointer; color: var(--text-mid); font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.18s, color 0.18s; }
.cart-item-qty .pd-qty-btn:hover { background: var(--warm); color: var(--text); }
.cart-item-qty-single { font-size: 14px; color: var(--text-mid); }

/* Row total */
.cart-item-total { font-size: 15px; font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }
.cart-item-total .woocommerce-Price-amount { font-size: 15px; color: var(--text); }

/* Delete button */
.cart-item-del { display: flex; align-items: center; justify-content: center; }
.cart-del-btn { width: 32px; height: 32px; border: 1px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.cart-del-btn:hover { border-color: var(--accent); background: rgba(232,114,78,0.06); }
.cart-del-btn svg { width: 13px; height: 13px; stroke: var(--text-light); fill: none; stroke-width: 2; }
.cart-del-btn:hover svg { stroke: var(--accent); }

/* Coupon row (below items, inside items col) */
.cart-coupon-row { padding: 36px var(--side-pad); display: flex; align-items: center; background: var(--white); border-bottom: 1px solid var(--border); }
.coupon-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mid); white-space: nowrap; margin-right: 20px; }
.coupon-input { flex: 1; max-width: 280px; height: 44px; border: 1px solid var(--border); border-right: none; background: var(--white); padding: 0 16px; font-family: var(--ff-body); font-size: 13px; color: var(--text); outline: none; transition: border-color 0.25s; }
.coupon-input::placeholder { color: var(--text-light); }
.coupon-input:focus { border-color: var(--text-mid); }
.coupon-btn { height: 44px; padding: 0 22px; background: var(--ink); color: white; border: 1px solid var(--ink); font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.22s; white-space: nowrap; }
.coupon-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* Cart footer bar */
.cart-footer-bar { padding: 20px var(--side-pad); border-top: 1px solid var(--border); }
.cart-continue-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.cart-continue-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-continue-link:hover { color: var(--text); }

/* Order summary sidebar */
.cart-summary-col { background: var(--off-white); }
.cart-summary { padding: 48px 44px; position: sticky; top: 112px; }
.summary-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; }
.summary-title { font-family: var(--ff-display); font-size: 32px; font-weight: 300; color: var(--ink); line-height: 1.0; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.summary-title em { font-style: italic; }
.summary-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.summary-line-label { font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.06em; }
.summary-line-value { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }
.summary-line-value .woocommerce-Price-amount { font-size: 13px; color: var(--text); }
.summary-line-value.free { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.summary-line-value.savings { color: #5a9e6f; }
/* WooCommerce shipping calc inside summary */
.summary-line .shipping-calculator-form { margin-top: 8px; }
.summary-line .woocommerce-shipping-calculator { font-size: 12px; }
.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: 24px; margin-top: 8px; border-top: 1px solid var(--border); }
.summary-total-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); }
.summary-total-amount { font-family: var(--ff-display); font-size: 38px; font-weight: 300; color: var(--ink); letter-spacing: 0; }
.summary-total-amount .woocommerce-Price-amount { font-family: var(--ff-display); font-size: 38px; font-weight: 300; color: var(--ink); }
.summary-vat { font-size: 10px; color: var(--text-light); text-align: right; margin-top: 4px; margin-bottom: 32px; }

/* Checkout button — accent coral */
.wc-proceed-to-checkout { margin-bottom: 14px; }
.checkout-button.button, .checkout-button { display: block; width: 100%; background: var(--accent); color: var(--ink); border: none; padding: 18px 24px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.25s, color 0.25s, transform 0.2s; }
.checkout-button.button:hover, .checkout-button:hover { background: var(--accent-dark); color: white; transform: translateY(-1px); }

/* Continue shopping ghost button */
.btn-continue { display: block; width: 100%; background: transparent; color: var(--text-mid); border: 1.5px solid var(--border); padding: 14px 24px; font-family: var(--ff-body); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; text-align: center; text-decoration: none; transition: border-color 0.22s, background 0.22s, color 0.22s; margin-bottom: 0; }
.btn-continue:hover { border-color: var(--text-mid); background: var(--warm); color: var(--text); }

/* Trust signals */
.summary-trust { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-mid); }
.trust-item svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════════════ */

.checkout-layout { display: grid; grid-template-columns: 1fr 420px; align-items: start; }
.checkout-form-col { padding: 52px 60px 80px; border-right: 1px solid var(--border); min-width: 0; }
.checkout-review-col { position: sticky; top: 112px; padding: 52px 48px 80px; background: var(--off-white); min-height: calc(100vh - 140px); }
.checkout-section { margin-bottom: 44px; }
.checkout-subsection { margin-bottom: 36px; }
.checkout-section-title { font-family: var(--ff-display); font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 24px; line-height: 1; }

/* "Ship to different address" heading */
#ship-to-different-address { margin-bottom: 16px; }
#ship-to-different-address label { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 22px; font-weight: 300; color: var(--text); cursor: pointer; }
#ship-to-different-address input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ink); cursor: pointer; flex-shrink: 0; }

/* Checkout form field rows */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.checkout-form-col .form-row,
#customer_details .form-row { margin-bottom: 14px; }

.woocommerce-billing-fields > h3,
.woocommerce-shipping-fields > h3 { display: none; }
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper { display: flex; flex-wrap: wrap; gap: 14px 16px; }
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-shipping-fields__field-wrapper .form-row { flex: 1 1 100%; min-width: 0; margin-bottom: 0; }
.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-shipping-fields__field-wrapper .form-row-first,
.woocommerce-shipping-fields__field-wrapper .form-row-last { flex: 1 1 calc(50% - 8px); min-width: 160px; }

/* Field labels */
.woocommerce-checkout .form-row label,
.woocommerce-MyAccount-content .form-row label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 7px; font-family: var(--ff-body); }
.woocommerce-checkout .form-row label .optional { font-size: 9px; font-weight: 400; color: var(--text-light); letter-spacing: 0; text-transform: none; }
.woocommerce-checkout .form-row label .required { color: var(--accent-dark); margin-left: 2px; }

/* Inputs */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea { width: 100%; height: 46px; border: 1px solid var(--border); padding: 0 14px; font-family: var(--ff-body); font-size: 13px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; border-radius: 0; display: block; }
.woocommerce-checkout .form-row textarea { height: 96px; padding: 12px 14px; resize: vertical; }
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus { border-color: var(--text-mid); }
.woocommerce-checkout .form-row.woocommerce-invalid .input-text,
.woocommerce-checkout .form-row.woocommerce-invalid input { border-color: #C0392B; }
.woocommerce-checkout .form-row.woocommerce-validated .input-text,
.woocommerce-checkout .form-row.woocommerce-validated input { border-color: #5E9B5E; }
.woocommerce-checkout .form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C9994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }

/* Select2 (WooCommerce uses this for country/state dropdowns) */
.select2-container--default .select2-selection--single { height: 46px; border: 1px solid var(--border); border-radius: 0; background: var(--white); }
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 46px; padding: 0 14px; font-family: var(--ff-body); font-size: 13px; color: var(--text); }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 46px; right: 8px; }
.select2-dropdown { border: 1px solid var(--border); border-radius: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.select2-container--default .select2-results__option { font-family: var(--ff-body); font-size: 13px; padding: 9px 14px; }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--ink); }
.select2-container--default .select2-search--dropdown .select2-search__field { border: 1px solid var(--border); padding: 8px 12px; font-family: var(--ff-body); font-size: 12px; outline: none; }

/* Checkout order review table */
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.woocommerce-checkout-review-order-table thead th { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); padding: 0 0 14px; font-weight: 600; border-bottom: 1px solid var(--border); }
.woocommerce-checkout-review-order-table thead .product-total { text-align: right; }
.woocommerce-checkout-review-order-table tbody td { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); }
.woocommerce-checkout-review-order-table .product-total { text-align: right; font-weight: 500; }
.woocommerce-checkout-review-order-table .product-name .product-quantity { color: var(--text-light); font-size: 11px; }
.woocommerce-checkout-review-order-table tfoot tr { border-bottom: 1px solid var(--border); }
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td { padding: 14px 0; font-size: 12px; color: var(--text-mid); }
.woocommerce-checkout-review-order-table tfoot td { text-align: right; }
.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td { font-family: var(--ff-display); font-size: 24px; font-weight: 300; color: var(--text); border-bottom: none; padding-top: 20px; }
.woocommerce-checkout-review-order-table tfoot .order-total td .woocommerce-Price-amount { font-size: 24px; }

/* Payment section */
#payment { margin-top: 8px; }
#payment .payment_methods { list-style: none; border-top: 1px solid var(--border); }
#payment .payment_methods > li { border-bottom: 1px solid var(--border); }
#payment .payment_methods > li > label { display: flex; align-items: center; gap: 12px; padding: 15px 0; cursor: pointer; font-size: 13px; color: var(--text); font-family: var(--ff-body); }
#payment .payment_methods > li > input[type="radio"] { accent-color: var(--ink); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
#payment .payment_box { background: var(--warm); padding: 16px 18px; margin-bottom: 12px; font-size: 12px; color: var(--text-mid); line-height: 1.7; }
.woocommerce-terms-and-conditions-wrapper { margin-top: 16px; font-size: 12px; color: var(--text-light); }
.woocommerce-privacy-policy-text { font-size: 11px; color: var(--text-light); margin-top: 12px; line-height: 1.7; }
.woocommerce-privacy-policy-text a { color: var(--text-mid); }
.woocommerce-additional-fields { margin-top: 36px; }
.woocommerce-additional-fields h3 { font-family: var(--ff-display); font-size: 28px; font-weight: 300; color: var(--text); margin-bottom: 24px; line-height: 1; }
.woocommerce-additional-fields__field-wrapper .form-row { margin-bottom: 14px; }
#place_order { width: 100%; height: 54px; background: var(--accent); color: var(--ink); border: none; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s, color 0.25s; margin-top: 20px; border-radius: 0; display: flex; align-items: center; justify-content: center; -webkit-appearance: none; }
#place_order:hover { background: var(--accent-dark); color: white; }

@media (max-width: 1100px) {
  .checkout-layout { grid-template-columns: 1fr 360px; }
  .checkout-form-col { padding: 40px 40px 60px; }
  .checkout-review-col { padding: 40px 32px 60px; }
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr 340px; }
  .checkout-form-col { padding: 36px 32px 60px; }
  .woocommerce-billing-fields__field-wrapper .form-row-first,
  .woocommerce-billing-fields__field-wrapper .form-row-last,
  .woocommerce-shipping-fields__field-wrapper .form-row-first,
  .woocommerce-shipping-fields__field-wrapper .form-row-last { flex: 1 1 100%; }
}
@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form-col { padding: 32px 24px 40px; border-right: none; border-bottom: 1px solid var(--border); }
  .checkout-review-col { position: static; padding: 32px 24px 48px; min-height: auto; }
  .checkout-section-title { font-size: 22px; }
}

/* Cart — tablet */
@media (max-width: 1100px) {
  .cart-wrap { grid-template-columns: 1fr 360px; }
  .cart-item { grid-template-columns: 72px 1fr 100px 130px auto 40px; gap: 0 16px; padding: 20px 32px; }
  .cart-col-bar { grid-template-columns: 72px 1fr 100px 130px auto 40px; gap: 0 16px; padding: 16px 32px; }
  .cart-summary { padding: 40px 32px; }
}

/* Cart — mobile */
@media (max-width: 768px) {
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-items-col { border-right: none; }
  .cart-col-bar { display: none; }
  .cart-item { grid-template-columns: 72px 1fr auto; grid-template-rows: auto auto; gap: 8px 16px; padding: 20px 24px; }
  .cart-item-thumb { grid-row: 1; width: 72px; }
  .cart-item-info { grid-column: 2; grid-row: 1; }
  .cart-item-name { font-size: 15px; margin-bottom: 4px; }
  .cart-item-brand { margin-bottom: 4px; }
  .cart-item-variant { margin-bottom: 8px; }
  .cart-item-price,
  .cart-item-price .woocommerce-Price-amount { grid-column: 3; grid-row: 1; align-self: start; text-align: right; font-size: 13px; font-weight: 500; color: var(--accent-dark); }
  .cart-item-total { grid-column: 3; grid-row: 2; align-self: center; text-align: right; font-size: 15px; font-weight: 600; }
  .cart-item-remove { grid-column: 1; grid-row: 2; align-self: center; }
  .cart-item-qty { grid-column: 2; grid-row: 2; justify-self: start; }
  .cart-item-total .cart-item-remove { position: static; }
  .cart-summary-col { border-top: 1px solid var(--border); }
  .cart-summary { padding: 32px 24px; position: static; }
  .summary-title { font-size: 24px; margin-bottom: 24px; padding-bottom: 20px; }
  .summary-total-amount,
  .summary-total-amount .woocommerce-Price-amount { font-size: 28px; }
  .cart-actions { padding: 20px 24px; }
  .cart-continue-link { font-size: 10px; }
  .cart-coupon-row { padding: 16px 24px; flex-wrap: wrap; gap: 10px; }
  .coupon-label { margin-right: 0; width: 100%; }
  .coupon-input { max-width: none; flex: 1; }
  .page-header { padding: 40px 24px 36px; }
}

/* ═══════════════════════════════════════════════════════
   MY ACCOUNT
═══════════════════════════════════════════════════════ */

.woocommerce-account .sc-wc-main { min-height: 80vh; }
/* ─ Login / Register ─ */
.sc-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px var(--side-pad) 80px;
  gap: 0;
}
.sc-auth-col {
  padding: 40px 48px;
}
.sc-auth-col--login {
  border-right: 1px solid var(--border);
}
.sc-auth-col--register {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}
.sc-auth-col--register .sc-auth-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-auth-col--register .sc-btn-full {
  margin-top: auto;
}
.sc-auth-heading {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 8px;
}
.sc-auth-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 28px;
}
.sc-auth-form .sc-form-row {
  margin-bottom: 20px;
}
.sc-auth-form label {
  display: block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.sc-auth-form .sc-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0 16px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.sc-auth-form .sc-input:focus {
  border-color: var(--text-mid);
}
.sc-form-row--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-mid);
  cursor: pointer;
}
.sc-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.sc-auth-link {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sc-btn-full {
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Login page — hide default WC notices container padding */
.woocommerce-account:not(.logged-in) .myaccount-layout { display: none; }

@media (max-width: 768px) {
  .sc-auth-wrap {
    grid-template-columns: 1fr;
    padding: 32px 24px 60px;
  }
  .sc-auth-col {
    padding: 32px 0;
  }
  .sc-auth-col--login {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
  }
  .sc-auth-col--register {
    background: none;
    padding-top: 40px;
  }
}

.myaccount-layout { display: flex; min-height: 80vh !important; }
.myaccount-nav-col { display: block !important; flex: 0 0 260px !important; width: 260px !important; background: var(--off-white); border-right: 1px solid var(--border); padding: 40px 0 80px; }
.myaccount-content-col { flex: 1; padding: 48px 60px 80px; }

/* Account nav */
.myaccount-nav { list-style: none; margin: 0; padding: 0; }
.myaccount-nav-item { border-bottom: 1px solid var(--border); }
.myaccount-nav-item:first-child { border-top: 1px solid var(--border); }
.myaccount-nav-item a { display: block; padding: 14px 32px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s, background 0.2s, padding-left 0.2s; font-weight: 500; }
.myaccount-nav-item a:hover { color: var(--text); background: var(--warm); padding-left: 36px; }
.myaccount-nav-item.is-active a { color: var(--accent); background: var(--warm); font-weight: 700; border-left: 3px solid var(--accent); padding-left: 29px; }

/* Account section header (above forms) */
.sc-account-section-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.sc-account-section-title { font-family: var(--ff-display); font-size: 32px; font-weight: 300; color: var(--text); margin: 0; }
.sc-account-section-title em { font-style: italic; }

/* Account form structure */
.sc-account-form { max-width: 100%; }
.sc-form-section { margin-bottom: 48px; display: flex; flex-direction: column; gap: 20px; }
.sc-form-section-label { margin-bottom: 0; }

/* Address field wrapper — flex wrap handles WC's dynamic first/last pairs */
.woocommerce-address-fields__field-wrapper { display: flex; flex-wrap: wrap; gap: 28px 16px; }
.woocommerce-address-fields__field-wrapper .form-row { flex: 1 1 100%; margin: 0; }
.woocommerce-address-fields__field-wrapper .form-row-first,
.woocommerce-address-fields__field-wrapper .form-row-last { flex: 1 1 calc(50% - 8px); min-width: 160px; }
.sc-form-section-hint { margin-bottom: 0; }
.sc-form-section-label { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sc-form-section-hint { font-size: 13px; color: var(--text-light); margin: -12px 0 24px; }
.sc-form-row-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.sc-form-row-pair .form-row { margin-bottom: 0; }
.sc-field-hint { display: block; font-size: 12px; color: var(--text-light); margin-top: 7px; line-height: 1.5; }
.sc-form-submit { padding-top: 24px; border-top: 1px solid var(--border); margin-top: 8px; }
.sc-account-form .woocommerce-address-fields__field-wrapper { display: flex; flex-wrap: wrap; gap: 16px; }
.sc-account-form .woocommerce-address-fields__field-wrapper .form-row { flex: 1 1 100%; min-width: 0; margin: 0; }
.sc-account-form .woocommerce-address-fields__field-wrapper .form-row-first,
.sc-account-form .woocommerce-address-fields__field-wrapper .form-row-last { flex: 1 1 calc(50% - 8px); min-width: 160px; }
.sc-account-form .form-row label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 8px; font-family: var(--ff-body); }
.sc-account-form .form-row label .optional { font-size: 9px; font-weight: 400; color: var(--text-light); letter-spacing: 0; text-transform: none; }
.sc-account-form .form-row label .required { color: var(--accent-dark); margin-left: 2px; }
.sc-account-form .form-row input[type="text"],
.sc-account-form .form-row input[type="email"],
.sc-account-form .form-row input[type="tel"],
.sc-account-form .form-row input[type="password"],
.sc-account-form .form-row input[type="number"],
.sc-account-form .form-row .input-text { width: 100%; height: 52px; border: 1px solid var(--border); padding: 0 16px; font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; display: block; -webkit-appearance: none; appearance: none; border-radius: 0; box-sizing: border-box; }
.sc-account-form .form-row input:focus { border-color: var(--text-mid); }
.sc-account-form .form-row select { width: 100%; height: 52px; border: 1px solid var(--border); padding: 0 36px 0 16px; font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C9994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; -webkit-appearance: none; appearance: none; outline: none; transition: border-color 0.2s; cursor: pointer; display: block; border-radius: 0; box-sizing: border-box; }
.sc-account-form .form-row select:focus { border-color: var(--text-mid); }
.sc-form-row-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Account content — headings */
.woocommerce-MyAccount-content h2 { font-family: var(--ff-display); font-size: clamp(28px, 3vw, 42px); font-weight: 400; font-style: italic; color: var(--text); margin: 0 0 36px; line-height: 1.1; }
.woocommerce-MyAccount-content h3 { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 20px; font-weight: 700; }
.woocommerce-MyAccount-content p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.woocommerce-MyAccount-content a { color: var(--accent); text-decoration: none; }
.woocommerce-MyAccount-content a:hover { text-decoration: underline; }

/* Dashboard welcome intro */
.woocommerce-MyAccount-content .woocommerce-customer-details p,
.woocommerce-MyAccount-content > p:first-of-type { font-size: 15px; color: var(--text-mid); line-height: 1.9; }
.woocommerce-MyAccount-content > p:first-of-type a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Orders table */
.woocommerce-orders-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 40px; }
.woocommerce-orders-table thead th { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); padding: 0 16px 14px 0; font-weight: 700; text-align: left; border-bottom: 1px solid var(--border); font-family: var(--ff-body); }
.woocommerce-orders-table thead th:last-child { padding-right: 0; }
.woocommerce-orders-table tbody td { padding: 20px 16px 20px 0; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.woocommerce-orders-table tbody td:last-child { padding-right: 0; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a { font-family: var(--ff-display); font-size: 20px; font-weight: 400; color: var(--text); text-decoration: none; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover { color: var(--accent-dark); }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-date { color: var(--text-mid); font-size: 13px; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-total { font-weight: 600; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark { background: none; padding: 4px 10px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; font-family: var(--ff-body); border: 1px solid currentColor; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.order-status-completed { color: #2D6A4F; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.order-status-processing { color: var(--accent-dark); }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.order-status-on-hold { color: #B7791F; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.order-status-cancelled,
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.order-status-refunded { color: var(--text-light); }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions { text-align: right; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a { display: inline-block; padding: 7px 16px; border: 1px solid var(--border); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; margin-left: 6px; transition: border-color 0.2s, color 0.2s; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a:hover { border-color: var(--accent); color: var(--accent); }
.woocommerce-orders-table tbody tr:last-child td { border-bottom: none; }

/* Account forms — fieldsets & legends */
.woocommerce-MyAccount-content fieldset { border: none; padding: 0 0 1px; margin: 0 0 32px; }
.woocommerce-MyAccount-content fieldset legend { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; padding: 0; margin-bottom: 24px; display: block; width: 100%; padding-top: 28px; border-top: 1px solid var(--border); }

/* Account forms — inputs */
.woocommerce-MyAccount-content .form-row { margin-bottom: 0; }
.woocommerce-MyAccount-content .form-row label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 8px; font-family: var(--ff-body); }
.woocommerce-MyAccount-content .form-row label .optional { font-size: 9px; font-weight: 400; color: var(--text-light); letter-spacing: 0; text-transform: none; }
.woocommerce-MyAccount-content .form-row .required { color: var(--accent-dark); margin-left: 2px; }
.woocommerce-MyAccount-content .form-row .input-text,
.woocommerce-MyAccount-content .form-row input[type="text"],
.woocommerce-MyAccount-content .form-row input[type="email"],
.woocommerce-MyAccount-content .form-row input[type="tel"],
.woocommerce-MyAccount-content .form-row input[type="password"],
.woocommerce-MyAccount-content .form-row input[type="number"] { width: 100%; height: 52px; border: 1px solid var(--border); padding: 0 16px; font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; display: block; -webkit-appearance: none; appearance: none; border-radius: 0; }
.woocommerce-MyAccount-content .form-row input:focus { border-color: var(--text-mid); }
.woocommerce-MyAccount-content .form-row select { width: 100%; height: 52px; border: 1px solid var(--border); padding: 0 36px 0 16px; font-family: var(--ff-body); font-size: 14px; color: var(--text); background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C9994' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; -webkit-appearance: none; appearance: none; outline: none; transition: border-color 0.2s; cursor: pointer; display: block; border-radius: 0; }
.woocommerce-MyAccount-content .form-row select:focus { border-color: var(--text-mid); }
.woocommerce-MyAccount-content .form-row .description { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.woocommerce-MyAccount-content .form-row-last { margin-top: 28px; }
.sc-form-submit .button,
.sc-form-submit button[type="submit"] { width: 100%; height: 52px; background: var(--ink); color: white; border: none; padding: 0 24px; font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; display: flex; align-items: center; justify-content: center; border-radius: 0; outline: none; -webkit-appearance: none; appearance: none; }
.sc-form-submit .button:hover,
.sc-form-submit button[type="submit"]:hover { background: var(--dark); color: white; }
/* Other account buttons (view order, etc.) */
.woocommerce-MyAccount-content .button { display: inline-flex; align-items: center; background: var(--ink); color: white; padding: 0 24px; height: 46px; font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; border: none; text-decoration: none; transition: background 0.25s; border-radius: 0; -webkit-appearance: none; }
.woocommerce-MyAccount-content .button:hover { background: var(--dark); color: white; text-decoration: none; }

/* Password strength meter */
.woocommerce-MyAccount-content .woocommerce-password-strength { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 12px; margin-top: 8px; max-width: 420px; }
.woocommerce-MyAccount-content .woocommerce-password-hint { font-size: 12px; color: var(--text-light); margin-top: 8px; max-width: 420px; }

/* Address blocks */
.woocommerce-MyAccount-content .woocommerce-Address { padding: 28px; background: var(--off-white); margin-bottom: 0; }
.woocommerce-MyAccount-content .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.woocommerce-MyAccount-content .woocommerce-Address-title h3 { margin-bottom: 0; }
.woocommerce-MyAccount-content .woocommerce-Address-title a { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.woocommerce-MyAccount-content .woocommerce-Address-title a:hover { color: var(--accent); border-color: var(--accent); }
.woocommerce-MyAccount-content address { font-style: normal; font-size: 13px; color: var(--text-mid); line-height: 1.9; }
.woocommerce-MyAccount-content .woocommerce-Address address p { margin-bottom: 0; color: var(--text-mid); }
.woocommerce-column--addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 40px; }

/* Order detail page */
.woocommerce-order-details { margin-bottom: 48px; }
.woocommerce-order-details__title,
.woocommerce-column__title { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; margin-bottom: 20px; }
.woocommerce-table--order-details { width: 100%; border-collapse: collapse; margin-bottom: 0; }
.woocommerce-table--order-details thead th { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); padding: 0 0 14px; font-weight: 700; text-align: left; border-bottom: 1px solid var(--border); font-family: var(--ff-body); }
.woocommerce-table--order-details tbody td { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); vertical-align: top; }
.woocommerce-table--order-details tfoot tr td,
.woocommerce-table--order-details tfoot tr th { padding: 14px 0; border-top: 1px solid var(--border); font-size: 13px; }
.woocommerce-table--order-details tfoot .order-total th,
.woocommerce-table--order-details tfoot .order-total td { font-weight: 700; font-size: 15px; border-top: 2px solid var(--border); }
.woocommerce-customer-details { margin-top: 40px; }
.woocommerce-customer-details address { font-style: normal; font-size: 13px; color: var(--text-mid); line-height: 1.9; padding: 20px 24px; background: var(--off-white); }

/* ─── GRID / LIST VIEW TOGGLE ─── */
/* ─ Per-page toggle ─ */
.sc-per-page { display: flex; align-items: center; gap: 6px; }
.sc-per-page-label { font-family: var(--ff-body); font-size: 11px; color: var(--text-light); margin-right: 2px; }
.sc-per-page-btn { width: 32px; height: 32px; background: none; border: 1px solid var(--border); cursor: pointer; font-family: var(--ff-body); font-size: 11px; font-weight: 600; color: var(--text-mid); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.sc-per-page-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }
.sc-per-page-btn:not(.active):hover { border-color: var(--text-mid); color: var(--text); }

/* ─── ARCHIVE 4-COL VIEW ─── */

/* ─── ARCHIVE LIST VIEW ─── */

/* ─── FILTER RATING STARS ─── */
.filter-rating-label { align-items: center; }
.filter-stars { display: flex; align-items: center; gap: 2px; }
.filter-star { width: 13px; height: 13px; fill: var(--accent); stroke: none; flex-shrink: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid--rect { grid-template-columns: repeat(6, 1fr); }
  .cat-grid--featured { grid-template-columns: repeat(3, 1fr); grid-template-rows: 480px 240px; }
  .cat-grid--featured .cat-tile:nth-child(-n+3) { grid-column: span 1; }
  .cat-grid--featured .cat-tile:nth-child(4) { grid-column: span 2; aspect-ratio: unset; }
  .cat-grid--featured .cat-tile:nth-child(5) { grid-column: span 1; aspect-ratio: unset; }
  .carousel-card { flex: 0 0 calc((100vw - 130px) / 3); }
  .pd-layout { grid-template-columns: 60px 1fr 380px; padding: 0 48px; }
  .pd-breadcrumb-inner { padding: 12px 48px; }
  .pd-tabs-inner { padding: 0 48px; }
  .related-header { padding: 0 48px 20px; }
  .related .carousel-track { padding: 0 48px 8px; }
  .archive-product-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
}
@media (max-width: 1100px) {
  :root { --side-pad: 32px; }
  nav#mainNav { padding: 0 32px; }
  .nav-links { margin: 0 -32px; padding: 0 32px; }
  .hero { aspect-ratio: 16/7; }
  .hero-title { font-size: clamp(36px, 4.5vw, 60px); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid--featured { grid-template-columns: repeat(2, 1fr); grid-template-rows: 360px 360px 220px; }
  .cat-grid--featured .cat-tile:nth-child(-n+3) { grid-column: span 1; }
  .cat-grid--featured .cat-tile:nth-child(3) { grid-column: span 2; }
  .cat-grid--featured .cat-tile:nth-child(4), .cat-grid--featured .cat-tile:nth-child(5) { grid-column: span 1; aspect-ratio: unset; }
  .pd-layout { grid-template-columns: 60px 1fr; }
  .purchase-col { grid-column: 1 / -1; border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 40px; margin-top: 16px; }
  .pd-tab-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .archive-layout { grid-template-columns: 220px 1fr; }
  .sub-nav { padding-left: 220px; }
  .sub-nav::before { left: 220px; }
  .sub-nav-filter-label { width: 220px; }
  .carousel-card { flex: 0 0 calc((100vw - 110px) / 3); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .social-platforms { flex-wrap: wrap; }
  .statement { flex-direction: column; align-items: flex-start; gap: 40px; }
  .statement-right { align-items: flex-start; }
  .newsletter { grid-template-columns: 1fr; gap: 48px; padding: 80px 48px; }
  .nl-social { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 48px; }
  .nl-signup { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --side-pad: 24px; }
  nav#mainNav { grid-template-columns: 1fr auto 1fr; grid-template-rows: 60px; padding: 0 24px; border-bottom: 2px solid var(--accent); background: var(--white); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links { display: none; }
  .nav-logo { grid-column: 2; grid-row: 1; text-align: center; align-self: center; }
  .nav-hamburger { grid-column: 1; grid-row: 1; justify-self: start; }
  .nav-actions { grid-column: 3; grid-row: 1; justify-self: end; gap: 18px; }
  .nav-actions a[aria-label="My Account"] { display: none; }
  .hero { aspect-ratio: 3/2; max-height: 280px; }
  .hero-panel { text-align: left; }
  .hero-content { width: fit-content; }
  .hero-frost--dark .hero-title,
  .hero-frost--dark .hero-body { background: rgba(26,25,24,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 4px 8px; margin-left: -8px; width: fit-content; border-radius: 2px; }
  .hero-frost--light .hero-title,
  .hero-frost--light .hero-body { background: rgba(255,255,255,0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 4px 8px; margin-left: -8px; width: fit-content; border-radius: 2px; }
  .hero-title { font-size: clamp(28px, 7vw, 44px); margin-top: 16px; max-width: 520px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.18em; }
  .hero-brand-logo img { transform: scale(0.7); transform-origin: left center; }
  .hero-body { font-size: 14px; max-width: 380px; }
  .btn-hero-ghost { display: none; }
  .btn-hero-primary { padding: 14px 28px; font-size: 10px; }
  .hero-dots { margin-top: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); column-gap: 10px; row-gap: 80px; }
  .cat-grid--rect { grid-template-columns: repeat(3, 1fr); }
  .cat-grid--featured { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .cat-grid--featured .cat-tile:nth-child(-n+3),
  .cat-grid--featured .cat-tile:nth-child(n+4) { grid-column: span 1; aspect-ratio: 1/1; }
  .archive-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .sub-nav { padding-left: var(--side-pad); }
  .sub-nav::before { display: none; }
  .sub-nav-filter-label { display: none; }
  .filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
  .nav-logo-img { height: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .cat-grid .cat-tile, .cat-grid .cat-tile:nth-child(n+5) { grid-column: span 1; }
  .pd-layout { grid-template-columns: 1fr; padding: 0 24px; overflow-x: hidden; }
  .pd-layout > * { min-width: 0; }
  .gallery-main-col { order: 1; position: static; }
  .gallery-thumbs { display: none; }
  .pd-breadcrumb { display: none; }
  .pd-section { padding-top: 0; }
  .gallery-foot { display: none; }
  .gallery-main { position: relative; }
  .gallery-dots { display: flex; gap: 6px; position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2; }
  .gallery-dot { width: 20px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.4); border: none; padding: 0; cursor: pointer; transition: background 0.2s; }
  .gallery-dot.active { background: rgba(255,255,255,0.9); }
  .purchase-col { order: 3; border-top: none; padding-top: 19px; margin-top: 0; }
  .pd-brand { display: none; }
  .pd-title { margin-bottom: 16px; }
  .pd-rating { margin-bottom: 20px; }
  .pd-rule { margin: 20px 0; }
  .pd-features { gap: 5px; }
  .pd-wc-form .quantity { flex-shrink: 1; min-width: 0; }
  .pd-wc-form .quantity .screen-reader-text { display: none; }
  .pd-price,
  .pd-price .woocommerce-Price-amount,
  .pd-price .woocommerce-Price-amount bdi { font-size: 24px; }
  .pd-tabs-inner { padding: 0 24px; }
  .related-header { padding: 0 24px 32px; margin-bottom: 36px; }
  .related-controls { display: none; }
  .related .carousel-track { padding: 0 24px 8px; }
  .archive-product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .archive-product-grid .product-price { font-size: 16px; font-weight: 500; }
  .archive-product-grid .product-price .woocommerce-Price-amount { font-weight: 500; font-size: 16px; }
  .wishlist-item .product-price,
  .wishlist-item .product-price .woocommerce-Price-amount { font-size: 16px; }
  .product-grid-wrap { padding: 24px 24px 48px; }
  .toolbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 16px; top: 60px; gap: 0; margin-top: 8px; background: var(--white); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .toolbar-right { justify-self: end; }
  .sc-per-page { display: none; }
  .product-area { min-width: 0; }
  /* Mobile toolbar: [Filters] [x products centred] [sort] */
  .toolbar-filter-btn { justify-self: start; display: inline-flex; align-items: center; justify-content: center; min-width: 90px; height: 44px; background: none; border: 1px solid var(--border); padding: 0 16px; font-family: var(--ff-body); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); cursor: pointer; white-space: nowrap; transition: border-color 0.2s; }
  .toolbar-filter-btn:hover { border-color: var(--text-mid); }
  .toolbar-right .woocommerce-ordering select { height: 44px; width: 90px; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; padding: 4px 22px 4px 8px; white-space: normal; line-height: 1.3; background-position: right 6px center; }
  .result-count { text-align: center; font-size: 13px; }
  .result-count-full { display: none; }
  .result-count-short { display: inline; }
  /* Filter sidebar: slide-in drawer on mobile */
  .filter-sidebar { display: block; position: fixed; top: 0; left: 0; width: 82vw; max-width: 300px; height: 100vh; z-index: 300; background: var(--white); border-right: none; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 28px 24px 60px; }
  .filter-sidebar.is-open { transform: translateX(0); }
  .filter-close-btn { display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; color: var(--text-mid); padding: 4px; transition: color 0.2s; }
  .filter-close-btn:hover { color: var(--text); }
  /* USP bar — stack on mobile */
  .usp-bar-inner { flex-wrap: wrap; justify-content: center; }
  .usp-item { flex: 0 0 100%; border-left: none !important; }
  .usp-item + .usp-item { border-top: 1px solid var(--border); border-left: none !important; }
  /* Offers — stack to single column on mobile */
  .offers-banner-wrap { display: none; }
  .offers-banner-mobile { display: block; }
  .offers-tiles { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 0 24px; }
  .offers-text-wrap { padding: 0 24px; margin-bottom: 36px; }
  .offers-badge { top: -14px; right: -14px; width: 90px; height: 90px; }
  .offers-badge-pct { font-size: 24px; }
  .categories { padding: 48px 0 80px; }
  .categories-inner { padding: 0 24px; }
  .categories-section-header { padding: 0 24px 32px; }
  .cat-grid { padding: 0; }
  .categories-inner--wide { padding: 0 24px; }
  .carousel-section { padding: 48px 0 80px; }
  .carousel-container { padding: 0 24px; }
  .carousel-card { flex: 0 0 calc((100vw - 68px) / 2); max-width: none; }
  .carousel-btn { display: none; }
  .blog-section { padding: 80px 0; }
  .blog-container { padding: 0; }
  .blog-header { padding: 0 24px; }
  .blog-grid { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding: 0 24px; -webkit-overflow-scrolling: touch; }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card { flex: 0 0 calc((100vw - 68px) / 1.3); scroll-snap-align: start; }
  .social-header { padding: 72px 24px 28px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .statement { padding: 60px 24px; }
  .newsletter { padding: 72px 24px; }
  footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .nl-title { font-size: 46px; }
  /* My Account — stack on mobile */
  .myaccount-layout { flex-direction: column; }
  .myaccount-nav-col { flex: 0 0 auto !important; width: 100% !important; border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .myaccount-content-col { padding: 32px 24px 60px; }
  .woocommerce-column--addresses { grid-template-columns: 1fr; }
  .woocommerce-orders-table thead th,
  .woocommerce-orders-table tbody td { padding-left: 0; }
  .sc-form-row-pair { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════ */

/* Hamburger — hidden on desktop, shown via media query below */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-self: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0; width: 22px; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.2s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Backdrop */
.sc-mobile-backdrop { position: fixed; inset: 0; background: rgba(26,25,24,0.55); z-index: 599; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.sc-mobile-backdrop.open { opacity: 1; pointer-events: all; }
body.sc-menu-open { overflow: hidden; }

/* Drawer */
.sc-mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 600; display: flex; flex-direction: column; transform: translateX(-105%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; overscroll-behavior: contain; }
.sc-mobile-menu.open { transform: translateX(0); }

/* Head */
.sc-mobile-menu-head { display: flex; align-items: center; justify-content: center; position: relative; padding: 20px 28px; background: var(--white); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.sc-mobile-logo { font-family: var(--ff-display); font-size: 22px; font-style: italic; font-weight: 300; color: var(--text); text-decoration: none; letter-spacing: 0; }
.sc-mobile-logo .nav-logo-img { height: 30px; width: auto; object-fit: contain; }
.sc-mobile-close { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text-light); padding: 6px; display: flex; align-items: center; transition: color 0.2s; }
.sc-mobile-close:hover { color: var(--text); }

/* Nav body */
.sc-mobile-menu-body { flex: 1; overflow-y: auto; }

/* Search bar */
.sc-mobile-search { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.sc-mobile-search-bar { display: flex; align-items: center; gap: 12px; }
.sc-mobile-search form { flex: 1; display: flex; align-items: center; gap: 10px; background: var(--off-white); border: 1px solid var(--border); border-radius: 4px; padding: 0 14px; transition: border-color 0.2s; }
.sc-mobile-search form:focus-within { border-color: var(--text-mid); }
.sc-mobile-search svg { flex-shrink: 0; color: var(--text-light); }
.sc-mobile-search input[type="search"] { flex: 1; border: none; background: none; padding: 11px 0; font-family: var(--ff-body); font-size: 12px; color: var(--text); outline: none; -webkit-appearance: none; }
.sc-mobile-search input[type="search"]::placeholder { color: var(--text-light); }
.sc-mobile-search-close { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-mid); flex-shrink: 0; }

/* Full-screen overlay state */
.sc-mobile-search--active { position: fixed; inset: 0; z-index: 700; display: flex; flex-direction: column; background: var(--white); overflow: hidden; }
.sc-mobile-search--active .sc-mobile-search-bar { padding: 14px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.sc-mobile-search--active .sc-mobile-search-close { display: flex; align-items: center; justify-content: center; }
.sc-mobile-search-results { display: none; overflow-y: auto; flex: 1; }
.sc-mobile-search--active .sc-mobile-search-results { display: block; }

/* Inner layout */
.sc-mobile-results-inner { padding: 20px 20px 4px; }
.sc-mobile-cats { margin-bottom: 24px; }
.sc-mobile-cat-chip { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); text-transform: none; letter-spacing: 0; }
.sc-mobile-cat-chip:last-of-type { border-bottom: none; }
.sc-mobile-cat-chip-img { width: 44px; height: 44px; flex-shrink: 0; background: var(--warm); border-radius: 2px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--text-mid); }
.sc-mobile-cat-chip-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-mobile-cat-chip-name { display: block; font-family: var(--ff-display); font-size: 17px; font-weight: 400; color: var(--text); }
.sc-mobile-cat-chip-count { display: block; font-family: var(--ff-body); font-size: 11px; color: var(--text-light); margin-top: 2px; }
.sc-mobile-cat-chip-arrow { margin-left: auto; color: var(--text-light); flex-shrink: 0; }
.sc-mobile-products { }
.sc-mobile-search-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* Reuse desktop product card styles — just override font sizes for mobile */
.sc-mobile-search-results .sc-search-product-name { font-size: 14px; }
.sc-mobile-search-results .sc-search-product-price { font-size: 11px; }

/* Footer */
.sc-mobile-search-results .sc-search-footer { display: block; padding: 16px 20px; font-family: var(--ff-body); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-mid); text-decoration: none; border-top: 1px solid var(--border); background: var(--off-white); text-align: center; text-transform: none; transition: color 0.2s; }
.sc-mobile-search-results .sc-search-footer:hover { color: var(--accent); }

/* States */
.sc-mobile-search-results .sc-search-loading { padding: 32px 20px; font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 10px; font-family: var(--ff-body); }
.sc-mobile-search-results .sc-search-no-results { padding: 32px 20px; display: flex; flex-direction: column; gap: 10px; }
.sc-mobile-search-results .sc-search-no-results span { font-family: var(--ff-display); font-size: 18px; font-weight: 400; color: var(--text-mid); }

/* Nav */
.sc-mobile-nav { list-style: none; margin: 0; padding: 0; }
.sc-mobile-nav > li { border-bottom: 1px solid var(--border); }

/* Top-level links */
.sc-mobile-nav > li > a { display: block; padding: 18px 28px; font-family: var(--ff-display); font-size: 18px; font-weight: 300; letter-spacing: 0; text-transform: capitalize; line-height: 1; color: var(--text); text-decoration: none; transition: color 0.2s, background 0.2s; }
.sc-mobile-nav > li > a:hover { color: var(--accent); background: var(--warm); }

/* Parent row — link + chevron side by side */
.sc-mobile-nav li.has-children { display: flex; flex-wrap: wrap; align-items: stretch; }
.sc-mobile-nav li.has-children > a { flex: 1 1 0; min-width: 0; }
.sc-mobile-expand { flex-shrink: 0; width: 56px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: background 0.2s, color 0.2s; }
.sc-mobile-expand:hover { background: var(--warm); color: var(--text); }
.sc-mobile-expand svg { transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); }
.sc-mobile-expand.open svg { transform: rotate(180deg); }

/* Sub-menu — animated with max-height */
.sc-mobile-nav .sub-menu { flex-basis: 100%; list-style: none; margin: 0; padding: 0; background: var(--off-white); max-height: 0; overflow: hidden; transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1); }
.sc-mobile-nav .sub-menu.open { max-height: 800px; }
.sc-mobile-nav .sub-menu > li { border-top: 1px solid var(--border); }
.sc-mobile-nav .sub-menu a { display: block; padding: 13px 28px 13px 40px; font-family: var(--ff-display); font-size: 15px; font-weight: 300; letter-spacing: 0; text-transform: capitalize; color: var(--text-mid); text-decoration: none; transition: color 0.2s, background 0.2s; }
.sc-mobile-nav .sub-menu a:hover { color: var(--accent); background: var(--warm-mid); }

/* "View all" link — subtle */
.sc-mobile-nav .sc-view-all a { color: var(--text-light); }

/* Active states */
.sc-mobile-nav > li.current-menu-item > a,
.sc-mobile-nav > li.current-menu-ancestor > a { color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); }

.sc-mobile-nav .sub-menu .sc-mobile-current > a { color: var(--accent); font-weight: 400; box-shadow: inset 3px 0 0 var(--accent); }

/* Footer — ink background to bookend the drawer */
.sc-mobile-menu-foot { padding: 22px 28px; background: var(--ink); flex-shrink: 0; display: flex; }
.sc-mobile-foot-link { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.sc-mobile-foot-link svg { stroke: currentColor; }
.sc-mobile-foot-link:hover { color: var(--white); }
.sc-mobile-foot-icon { position: relative; display: inline-flex; }
.sc-mobile-foot-count { position: absolute; top: -6px; right: -8px; min-width: 16px; height: 16px; padding: 0 4px; background: var(--accent); color: var(--ink); font-size: 9px; font-weight: 700; line-height: 16px; text-align: center; border-radius: 8px; font-family: var(--ff-body); letter-spacing: 0; }
.sc-mobile-foot-count { display: none; }
.sc-mobile-foot-count.visible { display: flex; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; align-self: center; }
}

/* ═══════════════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════════════ */

/* Nav inline search bar */
.nav-search-wrap { grid-column: 2; grid-row: 1; align-self: center; position: relative; display: flex; justify-content: center; }
.nav-search-form { display: flex; align-items: center; }
.nav-search-field { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 0; padding: 12px 18px; width: 360px; transition: width 0.3s ease, border-color 0.2s, background 0.2s; background: var(--off-white); }
.nav-search-field:focus-within { width: 420px; border-color: var(--text-mid); background: var(--white); }
.nav-search-icon { color: var(--text-light); flex-shrink: 0; transition: color 0.2s; }
.nav-search-field:focus-within .nav-search-icon { color: var(--text); }
.nav-search-input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--ff-body); font-size: 14px; font-weight: 400; color: var(--text); letter-spacing: 0.02em; }
.nav-search-input::placeholder { color: var(--text-light); font-weight: 300; }
.nav-search-input::-webkit-search-cancel-button { -webkit-appearance: none; }

/* ── Search backdrop ── */
.sc-search-backdrop { position: fixed; inset: 0; background: rgba(26,25,24,0.45); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.22s; }
.sc-search-backdrop.open { opacity: 1; pointer-events: all; }

/* ── Results panel (full-width overlay) ── */
.sc-search-results { position: fixed; top: 112px; left: 0; width: 100%; background: var(--white); border-top: 3px solid var(--accent); box-shadow: 0 20px 60px rgba(26,25,24,0.10); z-index: 200; max-height: calc(100vh - 152px); overflow-y: auto; overscroll-behavior: contain; transform: translateY(-6px); opacity: 0; transition: opacity 0.2s, transform 0.2s; pointer-events: none; text-transform: none; letter-spacing: 0; }
.sc-search-results.open { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ── Two-column inner layout ── */
.sc-search-inner { display: flex; max-width: 1440px; margin: 0 auto; padding: 0 var(--side-pad); }
.sc-search-cats-col { width: 260px; flex-shrink: 0; padding: 36px 40px 36px 0; border-right: 1px solid var(--border); }
.sc-search-products-col { flex: 1; min-width: 0; padding: 36px 0 36px 40px; }
.sc-search-products-col--full { padding-left: 0; }
.sc-search-col-heading { font-family: var(--ff-body); font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-dark); margin: 0 0 20px; }

/* ── Category list (sidebar) ── */
.sc-search-list { list-style: none; margin: 0; padding: 0; }
.sc-search-item { border-bottom: 1px solid var(--border); }
.sc-search-item:last-child { border-bottom: none; }
.sc-search-results .sc-search-item-link { display: flex; align-items: center; gap: 14px; padding: 14px 0; text-decoration: none; transition: color 0.15s; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text); }
.sc-search-results .sc-search-item-link:hover, .sc-search-item.active .sc-search-item-link { color: var(--accent-dark); }
.sc-search-item-img { width: 52px; height: 52px; flex-shrink: 0; background: var(--warm); display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 2px; }
.sc-search-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-search-item-text { flex: 1; min-width: 0; }
.sc-search-item-name { display: block; font-family: var(--ff-display); font-size: 17px; font-weight: 400; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.sc-search-item-meta { display: flex; align-items: center; gap: 10px; }
.sc-search-item-price { font-family: var(--ff-body); font-size: 12px; font-weight: 500; color: var(--text-light); }
.sc-search-item-stock { font-size: 11px; font-family: var(--ff-body); color: var(--text-light); }
.sc-search-item--cat .sc-search-item-img { color: var(--text-mid); }
.sc-search-item-cat-badge { font-family: var(--ff-body); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--accent-dark); padding: 2px 6px; border-radius: 2px; }

/* ── Product grid ── */
.sc-search-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 32px; }
.sc-search-product-card { display: block; text-decoration: none; color: var(--text); text-transform: none; letter-spacing: 0; }
.sc-search-product-card:hover { color: var(--text); }
.sc-search-product-card.active { outline: 2px solid var(--ink); outline-offset: 3px; }
.sc-search-product-img { aspect-ratio: 1/1; background: var(--warm); overflow: hidden; margin-bottom: 12px; }
.sc-search-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.sc-search-product-card:hover .sc-search-product-img img { transform: scale(1.04); }
.sc-search-product-name { font-family: var(--ff-display); font-size: 16px; font-weight: 400; color: var(--text); margin: 0 0 5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-search-product-price { font-family: var(--ff-body); font-size: 12px; font-weight: 600; color: var(--text-mid); margin: 0; }

/* ── Footer "view all" ── */
.sc-search-footer { display: block; padding: 18px var(--side-pad); font-family: var(--ff-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-mid); text-decoration: none; border-top: 1px solid var(--border); background: var(--off-white); transition: color 0.2s; text-align: center; text-transform: none; }
.sc-search-footer:hover { color: var(--accent); }

/* ── Loading & empty states ── */
.sc-search-loading { display: flex; align-items: center; gap: 12px; padding: 48px var(--side-pad); font-size: 13px; color: var(--text-light); font-family: var(--ff-body); max-width: 1440px; margin: 0 auto; }
.sc-search-spinner { width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--ink); border-radius: 50%; animation: sc-spin 0.6s linear infinite; flex-shrink: 0; }
@keyframes sc-spin { to { transform: rotate(360deg); } }
.sc-search-no-results { padding: 48px var(--side-pad); display: flex; flex-direction: column; gap: 12px; max-width: 1440px; margin: 0 auto; }
.sc-search-no-results span { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--text-mid); }
.sc-search-no-results a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--text-mid); text-decoration: none; font-family: var(--ff-body); transition: color 0.2s; }
.sc-search-no-results a:hover { color: var(--accent); }

/* ── Mobile: hide desktop search bar + backdrop ── */
@media (max-width: 768px) {
  .nav-search-wrap { display: none !important; }
  .sc-search-backdrop { display: none; }
}

/* ═══════════════════════════════════════════════════════
   ORDER TRACKING
═══════════════════════════════════════════════════════ */

/* Back link */
.sc-order-back { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; margin-bottom: 32px; transition: color 0.2s; }
.sc-order-back:hover { color: var(--accent); }

/* Summary bar */
.sc-order-summary { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.sc-order-summary-item { flex: 1; padding: 24px 0; margin-right: 32px; }
.sc-order-summary-item:last-child { margin-right: 0; }
.sc-order-summary-label { display: block; font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 8px; }
.sc-order-summary-value { font-family: var(--ff-display); font-size: 17px; font-weight: 300; color: var(--text); }

/* Section label (used within view-order panels) */
.sc-order-section-label { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; margin-bottom: 20px; display: block; }

/* Status badges */
.sc-order-badge { display: inline-block; padding: 5px 14px; font-family: var(--ff-body); font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid currentColor; }
.sc-order-badge--processing { color: var(--accent-dark); }
.sc-order-badge--completed  { color: #2D6A4F; }
.sc-order-badge--on-hold    { color: #B7791F; }
.sc-order-badge--pending    { color: var(--text-light); }
.sc-order-badge--cancelled,
.sc-order-badge--refunded,
.sc-order-badge--failed     { color: var(--text-light); }

/* Progress timeline */
.sc-order-timeline-wrap { margin: 0 0 40px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.sc-order-timeline { display: flex; align-items: flex-start; }
.sc-order-step { flex: 1; text-align: center; position: relative; }
.sc-order-step:not(:last-child)::after { content: ''; position: absolute; top: 14px; left: calc(50% + 14px); right: calc(-50% + 14px); height: 1px; background: var(--border); }
.sc-order-step.done:not(:last-child)::after { background: var(--ink); }
.sc-order-step.current:not(:last-child)::after { background: var(--border); }
.sc-order-step-dot { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; background: var(--white); }
.sc-order-step.done .sc-order-step-dot { background: var(--ink); border-color: var(--ink); color: white; }
.sc-order-step.current .sc-order-step-dot { background: var(--accent-dark); border-color: var(--accent-dark); }
.sc-order-step.inactive .sc-order-step-dot { background: var(--warm); border-color: var(--border); }
.sc-order-step-pulse { width: 8px; height: 8px; border-radius: 50%; background: white; display: block; }
.sc-order-step.current { animation: sc-step-pulse 2s ease-in-out infinite; }
@keyframes sc-step-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.sc-order-step-label { font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.08em; color: var(--text-light); line-height: 1.4; display: block; padding: 0 4px; }
.sc-order-step.done .sc-order-step-label,
.sc-order-step.current .sc-order-step-label { color: var(--text); font-weight: 600; }

/* Carrier tracking card */
.sc-order-carrier { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.sc-order-carrier-number { font-family: 'Courier New', monospace; font-size: 15px; color: var(--text); display: block; margin-top: 6px; letter-spacing: 0.04em; }
.sc-order-carrier-link { display: inline-flex; align-items: center; padding: 0 20px; height: 40px; border: 1px solid var(--accent); font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-decoration: none; white-space: nowrap; transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.sc-order-carrier-link:hover { background: var(--accent); color: white; }

/* Items table */
.sc-order-items-wrap { margin-bottom: 40px; }
.sc-order-items-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sc-order-items-table thead th { font-family: var(--ff-body); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 600; padding: 0 0 14px; text-align: left; border-bottom: 1px solid var(--border); }
.sc-order-items-table tbody td { padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.sc-order-items-table thead th.sc-col-center,
.sc-order-items-table tbody td.sc-col-center { width: 80px; text-align: center; }
.sc-order-items-table thead th.sc-col-right,
.sc-order-items-table tbody td.sc-col-right { width: 100px; text-align: right; }
.sc-order-items-table tfoot th,
.sc-order-items-table tfoot td { padding: 20px 0; font-size: 12px; font-weight: 500; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.sc-order-items-table tfoot tr:last-child th,
.sc-order-items-table tfoot tr:last-child td { font-size: 12px; font-weight: 600; color: var(--text); border-bottom: none; }
.sc-order-item-name { display: block; font-family: var(--ff-display); font-size: 15px; font-weight: 300; color: var(--text); }
.sc-order-item-sku { display: block; font-size: 11px; color: var(--text-light); margin-top: 3px; letter-spacing: 0.04em; }
.sc-col-center { text-align: center; }
.sc-col-right { text-align: right; }

/* Addresses */
.sc-order-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; border-top: 1px solid var(--border); padding-top: 28px; }
.sc-order-address { padding: 0; }
.sc-order-address address { font-style: normal; font-size: 13px; color: var(--text-mid); line-height: 1.9; }

/* View order action buttons */
.sc-order-view-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }

/* Action buttons (shared: list + view) */
.sc-order-action-btn { display: inline-flex; align-items: center; height: 44px; padding: 0 24px; border: 1.5px solid var(--border); font-family: var(--ff-body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: border-color 0.2s, color 0.2s; white-space: nowrap; cursor: pointer; background: none; }
.sc-order-action-btn:hover { border-color: var(--text-mid); color: var(--text); text-decoration: none; }
.sc-order-action-btn--primary { background: var(--ink); border-color: var(--ink); color: white; }
.sc-order-action-btn--primary:hover { background: var(--dark); border-color: var(--dark); color: white; }

/* ── Orders list ── */
.sc-orders-list { }
.sc-order-card { padding: 28px 0; border-bottom: 1px solid var(--border); }
.sc-order-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.sc-order-card-meta { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.sc-order-card-number { font-family: var(--ff-display); font-size: 22px; font-weight: 300; color: var(--text); text-decoration: none; transition: color 0.2s; }
.sc-order-card-number:hover { color: var(--accent-dark); }
.sc-order-card-date { font-size: 12px; color: var(--text-light); }
.sc-order-card-body { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.sc-order-card-items { font-family: var(--ff-display); font-size: 15px; font-weight: 300; color: var(--text-mid); margin: 0; }
.sc-order-card-more { color: var(--text-light); font-size: 12px; margin-left: 4px; }
.sc-order-card-total { font-family: var(--ff-display); font-size: 16px; font-weight: 300; color: var(--text); margin: 0; white-space: nowrap; }
.sc-order-card-qty { font-size: 12px; font-weight: 400; color: var(--text-light); margin-left: 4px; }
.sc-order-track-snippet { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-light); margin-bottom: 14px; }
.sc-order-track-snippet code { font-size: 11px; color: var(--text-mid); letter-spacing: 0.04em; background: none; padding: 0; }
.sc-order-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Empty state */
.sc-orders-empty { padding: 72px 0; text-align: center; }
.sc-orders-empty svg { display: block; margin: 0 auto 20px; stroke: var(--border); }
.sc-orders-empty p { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }

/* Pagination */
.sc-orders-pagination { display: flex; align-items: center; gap: 20px; justify-content: center; padding-top: 40px; }
.sc-orders-page-info { font-size: 12px; color: var(--text-light); letter-spacing: 0.06em; }

/* Responsive */
@media (max-width: 768px) {
  .sc-order-summary { flex-wrap: wrap; }
  .sc-order-summary-item { flex: 1 1 calc(50% - 16px); margin-right: 0; }
  .sc-order-timeline-wrap { padding: 20px 0; overflow-x: auto; }
  .sc-order-timeline { min-width: 480px; }
  .sc-order-carrier { flex-direction: column; align-items: flex-start; }
  .sc-order-addresses { grid-template-columns: 1fr; }
  .sc-order-card-body { flex-direction: column; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════
   WISHLIST
═══════════════════════════════════════════════════════ */

/* Nav wishlist icon — mirrors cart icon pattern */
.nav-actions-wishlist {
  position: relative; display: flex; align-items: center;
  text-decoration: none; color: inherit;
}
.wishlist-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--accent); color: white;
  min-width: 17px; height: 17px; border-radius: 50%;
  font-size: 9px; font-weight: 700; font-family: var(--ff-body);
  display: flex; align-items: center; justify-content: center;
  transition: none; transform: none; will-change: auto;
}
.wishlist-count.bump { transform: scale(1.4); transition: transform 0.2s; }
.wishlist-count[data-count="0"] { opacity: 0; transition: none; }

/* Product page wishlist button (ghost style in purchase column) */
.pd-wishlist-btn {
  width: 100%; height: 48px; margin-top: 12px;
  background: none; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mid); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.pd-wishlist-btn svg {
  width: 15px; height: 15px;
  stroke: var(--text-mid); fill: none; stroke-width: 1.5;
  transition: stroke 0.2s, fill 0.2s;
}
.pd-wishlist-btn:hover { border-color: var(--text-mid); color: var(--text); }
.pd-wishlist-btn:hover svg { stroke: var(--accent); }
.pd-wishlist-btn.active { border-color: var(--accent); color: var(--accent); }
.pd-wishlist-btn.active svg { fill: var(--accent); stroke: var(--accent); }

/* Heart animation pop on toggle */
@keyframes heart-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.product-wishlist.pop svg { animation: heart-pop 0.3s ease; }
.pd-wishlist-btn.pop svg { animation: heart-pop 0.3s ease; }

/* ─── Account Addresses ─── */
.sc-address-intro { font-size: 13px; color: var(--text-mid); margin-bottom: 32px; }
.sc-address-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sc-address-card { border: none; border-top: 1px solid var(--border); padding: 28px 0; }
.sc-address-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sc-address-card-title { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--text); margin: 0; }
.sc-address-edit { font-size: 11px; font-weight: 600; color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.sc-address-edit:hover { color: var(--accent); }
.sc-address-card-body address { font-style: normal; font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.sc-address-empty { font-size: 13px; color: var(--text-light); font-style: italic; }
@media (max-width: 768px) {
  .sc-address-grid { grid-template-columns: 1fr; }
}

/* ─── Wishlist Page ─── */
.wishlist-section { max-width: 100%; margin: 0; }
.wishlist-header { margin-bottom: 40px; }
.wishlist-title {
  font-family: var(--ff-display); font-size: 32px; font-weight: 300;
  color: var(--accent); margin-bottom: 6px;
}
.wishlist-subtitle { font-size: 13px; color: var(--text-light); }

.wishlist-empty {
  text-align: center; padding: 80px 24px;
  color: var(--text-light); font-size: 14px;
}
.wishlist-empty-icon {
  width: 48px; height: 48px; stroke: var(--border);
  fill: none; stroke-width: 1.2; margin-bottom: 20px;
}
.wishlist-empty p { margin-bottom: 24px; }
.wishlist-empty .btn-hero-primary { display: inline-block; }

.wishlist-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 44px 24px;
}
.wishlist-item { display: flex; flex-direction: column; text-align: center; position: relative; }
.wishlist-item-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; margin-bottom: 14px; background: var(--warm);
}
.wishlist-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.wishlist-item:hover .wishlist-item-img img { transform: scale(1.04); }
.wishlist-item .product-brand { text-align: center; }
.wishlist-item .product-name { text-align: center; order: 2; }
.wishlist-item .product-name a {
  text-decoration: none; color: inherit;
  font-family: var(--ff-display); font-size: 18px; font-weight: 300; line-height: 1.2;
}
.wishlist-item .product-name a:hover { color: var(--accent-dark); }
.wishlist-item .product-price { text-align: center; order: 3; margin: 4px 0 8px; font-size: 16px; color: var(--text); }
.wishlist-item .product-price .woocommerce-Price-amount { font-size: 16px; color: var(--text); font-weight: 500; }
.wishlist-item .product-price ins { text-decoration: none; }
.wishlist-item .product-price ins .woocommerce-Price-amount { color: var(--text); font-weight: 700; }
.wishlist-item .product-price del .woocommerce-Price-amount { color: var(--text-light); }
.wishlist-item .product-stars { justify-content: center; order: 4; }
.wishlist-remove {
  order: 5; margin-top: 12px;
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.wishlist-remove:hover { color: var(--accent-dark); }
.wishlist-item .product-wishlist { opacity: 1; transform: none; }

.wishlist-item.removing {
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.3s, transform 0.3s;
}

.wishlist-guest { padding: 60px var(--side-pad) 80px; }

@media (max-width: 900px) {
  .wishlist-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
}
@media (max-width: 768px) {
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ═══════════════════════════════════════════════════════
   VARIATION SWATCHES + COLOUR BOTTOM SHEET
═══════════════════════════════════════════════════════ */

/* ── Pill buttons (size, finish, etc.) ── */
.sc-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 10px; }
.sc-swatches--pill .sc-swatch {
  padding: 0 14px; height: 34px;
  border: 1.5px solid var(--border);
  background: transparent; cursor: pointer;
  font-family: var(--ff-body); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.sc-swatches--pill .sc-swatch:hover:not(:disabled):not(.active) { border-color: var(--text-mid); color: var(--text); }
.sc-swatches--pill .sc-swatch.active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.sc-swatches--pill .sc-swatch--unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* ── Colour trigger button ── */
.sc-colour-trigger {
  width: 100%; height: 46px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px; cursor: pointer;
  font-family: var(--ff-body); font-size: 12px; letter-spacing: 0.02em;
  color: var(--text-light);
  transition: border-color 0.2s, color 0.2s;
}
.sc-colour-trigger:hover { border-color: var(--text-mid); }
.sc-colour-trigger--set { color: var(--text); }
.sc-trigger-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.sc-trigger-dot--set { background: var(--sc-sw, var(--border)); }
.sc-trigger-chevron {
  width: 14px; height: 14px; margin-left: auto; flex-shrink: 0;
  stroke: var(--text-light); fill: none; stroke-width: 2; stroke-linecap: round;
}

/* ── Backdrop ── */
.sc-sheet-backdrop {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0); pointer-events: none;
  transition: background 0.3s;
}
.sc-sheet-backdrop.active { background: rgba(0,0,0,0.45); pointer-events: all; }

/* ── Bottom sheet ── */
.sc-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 600px; margin: 0 auto;
  background: var(--white); border-radius: 16px 16px 0 0;
  z-index: 9999; max-height: 82vh;
  display: flex; flex-direction: column;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 48px rgba(0,0,0,0.14);
}
.sc-sheet.active { transform: translateY(0); pointer-events: auto; }

/* Desktop: anchored popover positioned by JS */
@media (min-width: 768px) {
  .sc-sheet.sc-sheet--popover {
    bottom: auto; right: auto; margin: 0; max-width: none;
    border-radius: 0;
    border: 1px solid var(--border);
    opacity: 0; transform: scale(0.98) translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .sc-sheet.sc-sheet--popover.active { opacity: 1; transform: scale(1) translateY(0); }
  .sc-sheet--popover .sc-sheet-handle { display: none; }
  .sc-sheet--popover .sc-sheet-header { border-bottom: 1px solid var(--border); }
}

.sc-sheet-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 12px auto 2px; flex-shrink: 0;
}
.sc-sheet-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px 10px; flex-shrink: 0;
  border-bottom: 1px solid var(--warm);
}
.sc-sheet-title {
  font-family: var(--ff-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text);
}
.sc-sheet-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--warm); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.sc-sheet-close:hover { background: var(--warm-mid); }
.sc-sheet-close svg { width: 13px; height: 13px; stroke: var(--text-mid); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Spectrum filter tabs ── */
.sc-sheet-filters {
  display: flex; gap: 6px; padding: 12px 20px;
  overflow-x: auto; flex-shrink: 0; scrollbar-width: none;
}
.sc-sheet-filters::-webkit-scrollbar { display: none; }
.sc-filter {
  padding: 5px 13px; border: 1.5px solid var(--border);
  background: transparent; border-radius: 20px; cursor: pointer;
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid);
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.sc-filter:hover { border-color: var(--text-mid); color: var(--text); }
.sc-filter.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── Swatch grid ── */
.sc-sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 20px 8px; padding: 8px 20px 40px;
  overflow-y: auto; flex: 1;
}
.sc-sheet-swatch {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 4px 2px;
}
.sc-sheet-swatch:disabled { cursor: not-allowed; }
.sc-sheet-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sc-sw, #ccc);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.1);
  position: relative; display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sc-sheet-swatch:hover:not(:disabled) .sc-sheet-circle { transform: scale(1.1); }
.sc-sheet-swatch.active .sc-sheet-circle { box-shadow: 0 0 0 2.5px var(--white), 0 0 0 4.5px var(--ink); }
.sc-sheet-swatch--light.active .sc-sheet-circle { box-shadow: 0 0 0 2.5px var(--warm-mid), 0 0 0 4.5px var(--ink); }
/* Unavailable: slash */
.sc-sheet-swatch.sc-swatch--unavailable .sc-sheet-circle { opacity: 0.3; }
.sc-sheet-swatch.sc-swatch--unavailable .sc-sheet-circle::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.75px),
    rgba(0,0,0,0.55) calc(50% - 0.75px),
    rgba(0,0,0,0.55) calc(50% + 0.75px),
    transparent calc(50% + 0.75px)
  );
}
/* Tick: white with shadow works on dark swatches; dark ink on light swatches */
.sc-sheet-tick {
  width: 18px; height: 18px; fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke: white; filter: drop-shadow(0 0 1px rgba(0,0,0,0.5));
  opacity: 0; transition: opacity 0.15s;
}
.sc-sheet-swatch--light .sc-sheet-tick { stroke: var(--ink); filter: none; }
.sc-sheet-swatch.active .sc-sheet-tick { opacity: 1; }
.sc-sheet-name {
  font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.03em;
  color: var(--text-light); text-align: center; line-height: 1.3;
  word-break: break-word;
}
.sc-sheet-swatch.active .sc-sheet-name { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   AJAX FILTER — Loading state & empty state
═══════════════════════════════════════════════════════ */

/* Overlay the product area while AJAX is in flight */
.product-area {
  position: relative;
}
.product-area.sc-filter-loading {
  pointer-events: none;
}
.product-area.sc-filter-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  z-index: 10;
  animation: sc-fade-in 0.15s ease;
}
/* Spinner centred over the grid */
.product-area.sc-filter-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 2.5px solid var(--border);
  border-top-color: var(--ink);
  border-radius: 50%;
  z-index: 11;
  animation: sc-spin 0.7s linear infinite;
}
@keyframes sc-spin  { to { transform: rotate(360deg); } }
@keyframes sc-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* No-products state */
.sc-no-products {
  padding: 80px 40px;
  text-align: center;
  color: var(--text-light);
}
.sc-no-products-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}

/* ═══ CARD SWATCHES ═══ */
.card-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 7px 0 9px;
  flex-wrap: wrap;
}
.card-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sw, #cccccc);
  border: 2px solid transparent;
  outline: 1.5px solid rgba(0, 0, 0, 0.14);
  outline-offset: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: outline-offset 0.15s ease, transform 0.15s ease;
}
.card-swatch--text {
  background: var(--white);
  border: 1.5px solid var(--border);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 7px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0;
}
.card-swatch:hover,
.card-swatch:focus-visible {
  outline-offset: 2px;
  transform: scale(1.2);
}
.card-swatch--text:hover,
.card-swatch--text:focus-visible {
  border-color: var(--text);
  color: var(--text);
  outline: none;
}
.card-swatches-more {
  font-size: 11px;
  font-family: var(--ff-body);
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
/* Extra swatches hidden until hovered (desktop) or tapped to expand (touch) */
.card-swatch--extra { display: none; }
.card-swatches:hover .card-swatch--extra,
.card-swatches.expanded .card-swatch--extra { display: inline-flex; }
.card-swatches:hover .card-swatches-more,
.card-swatches.expanded .card-swatches-more { display: none; }

/* ═══════════════════════════════════════════════════════
   CONTENT PAGES — Shared + Page-specific styles
   ═══════════════════════════════════════════════════════ */

/* ─── 404 PAGE ─── */
.sc-404 { max-width: 1340px; margin: 0 auto; padding: 0 var(--side-pad); }
.sc-404-hero { text-align: center; padding: 80px 0 60px; border-bottom: 1px solid var(--border); }
.sc-404-code { font-family: var(--ff-display); font-size: clamp(80px, 12vw, 160px); font-weight: 300; color: var(--warm-mid); line-height: 1; display: block; margin-bottom: 8px; }
.sc-404-title { font-family: var(--ff-display); font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--text); line-height: 1.05; margin-bottom: 16px; }
.sc-404-title em { font-style: italic; color: var(--accent); }
.sc-404-body { font-size: 15px; color: var(--text-mid); max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }
.sc-404-search { max-width: 420px; margin: 0 auto 28px; }
.sc-404-search form { display: flex; border: 1px solid var(--border); }
.sc-404-search-input { flex: 1; height: 48px; border: none; padding: 0 16px; font-family: var(--ff-body); font-size: 13px; color: var(--text); background: var(--white); outline: none; }
.sc-404-search-input::placeholder { color: var(--text-light); }
.sc-404-search-btn { height: 48px; padding: 0 24px; background: var(--ink); color: white; border: none; font-family: var(--ff-body); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.sc-404-search-btn:hover { background: var(--accent); color: var(--ink); }
.sc-404-links { display: flex; justify-content: center; gap: 24px; }
.sc-404-link { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.sc-404-link:hover { color: var(--text); border-color: var(--accent); }
.sc-404-section { padding: 48px 0; border-bottom: 1px solid var(--border); text-align: center; }
.sc-404-section .section-eyebrow { margin-bottom: 24px; }
.sc-404-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.sc-404-cat { padding: 10px 24px; border: 1px solid var(--border); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.sc-404-cat:hover { background: var(--ink); color: white; border-color: var(--ink); }
.sc-404-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.sc-404-product { text-decoration: none; color: inherit; text-align: center; }
.sc-404-product-img { aspect-ratio: 1/1; overflow: hidden; background: var(--warm); margin-bottom: 14px; }
.sc-404-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sc-404-product:hover .sc-404-product-img img { transform: scale(1.04); }
.sc-404-product-name { font-family: var(--ff-display); font-size: 15px; font-weight: 300; color: var(--text); margin-bottom: 6px; line-height: 1.2; }
.sc-404-product-price { font-size: 14px; font-weight: 500; color: var(--text-mid); }

@media (max-width: 768px) {
  .sc-404-hero { padding: 48px 0 40px; }
  .sc-404-products { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sc-404-links { gap: 16px; }
  .sc-404-section { padding: 36px 0; }
}

/* ── Shared section primitives ── */
.section-eyebrow {
  font-size: 9px;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cp-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.cp-section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}
.cp-section-title em {
  font-style: italic;
  color: var(--accent-dark);
}

/* ═══ ABOUT PAGE ═══ */

/* ── Our Ethos ── */
.cp-ethos {
  padding: 80px var(--side-pad);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cp-ethos-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cp-ethos-inner .section-eyebrow { margin-bottom: 14px; }
.cp-ethos-text {
  font-size: 16px;
  font-family: var(--ff-body);
  line-height: 1.85;
  color: var(--text-mid);
  margin: 0;
  text-align: left;
}

/* ── Image + text sections ── */
.cp-about-sec {
  padding: 80px var(--side-pad);
  background: var(--white);
}
.cp-about-sec--alt { background: var(--off-white); }
.cp-about-sec-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cp-about-sec--reverse .cp-about-sec-img     { order: 2; }
.cp-about-sec--reverse .cp-about-sec-content { order: 1; }
.cp-about-sec-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cp-about-sec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-about-sec-content .section-eyebrow { margin-bottom: 14px; }
.cp-about-sec-content .cp-section-title { margin-bottom: 20px; }
.cp-about-sec-text {
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

/* ── USPs ── */
.cp-usps {
  padding: 80px var(--side-pad);
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cp-usps-heading {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.cp-usps-heading .section-eyebrow { margin-bottom: 14px; }
.cp-usps-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.cp-usp {
  background: var(--warm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cp-usp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-usp-num {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--border);
  line-height: 1;
}
.cp-usp-icon {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cp-usp-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.cp-usp-text {
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

/* ═══ DELIVERY & RETURNS PAGE ═══ */
.cp-section-title {
  font-family: var(--ff-display); font-size: clamp(28px, 4vw, 42px); font-weight: 300;
  color: var(--text); line-height: 1.15; margin: 0 0 40px;
}
.cp-section-title em { font-style: italic; }

.cp-delivery {
  padding: 80px var(--side-pad);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cp-delivery-inner { max-width: 900px; margin: 0 auto; }
.cp-delivery .section-eyebrow { margin-bottom: 14px; }
.cp-delivery-table {
  border: 1px solid var(--border);
  margin-bottom: 32px;
  background: var(--white);
}
.cp-delivery-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1.5fr;
  align-items: start;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.cp-delivery-row:last-child { border-bottom: none; }
.cp-delivery-row--head {
  background: var(--warm);
  padding: 12px 28px;
  font-size: 9px;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cp-del-name {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
}
.cp-del-price {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cp-del-time {
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--text-mid);
}
.cp-del-note {
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--text-light);
  line-height: 1.55;
}
.cp-del-name,
.cp-del-price,
.cp-del-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cp-del-name .cp-del-line2,
.cp-del-note .cp-del-line2 {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}
.cp-del-price .cp-del-line2 {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.cp-delivery-notes {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.cp-returns {
  padding: 80px var(--side-pad);
  background: var(--off-white);
}
.cp-returns-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cp-returns .section-eyebrow { margin-bottom: 14px; }
.cp-returns-intro {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 48px;
}
.cp-returns-block {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.cp-returns-block:last-child {
  border-bottom: 1px solid var(--border);
}
.cp-returns-block-title {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 14px;
}
.cp-returns-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 10px;
}
.cp-returns-block p:last-child { margin-bottom: 0; }
.cp-returns-block a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.cp-returns-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.cp-returns-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cp-step-num {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-step-body h4 {
  font-size: 15px;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}
.cp-step-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
.cp-step-body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ═══ FAQ PAGE ═══ */
.cp-faq {
  padding: 80px var(--side-pad);
  background: var(--white);
}
.cp-faq-inner { max-width: 860px; margin: 0 auto; }
.cp-faq-intro {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 48px;
  text-align: center;
}
.cp-faq-intro a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

.faq-group { margin-bottom: 48px; }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-group-title {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0;
  padding: 14px 0;
  background: var(--warm);
  padding-left: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.28s ease, stroke 0.2s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); stroke: var(--accent); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 18px;
  padding-right: 40px;
}
.faq-answer-inner a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

.cp-faq-cta {
  margin-top: 56px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cp-faq-cta p {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  color: var(--text);
  margin: 0 0 20px;
}

/* ═══ PRIVACY / LEGAL PAGE ═══ */
.cp-legal {
  padding: 80px var(--side-pad);
  background: var(--white);
}
.cp-legal-inner { max-width: 760px; margin: 0 auto; }
.cp-legal-updated {
  font-size: 11px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cp-legal-content h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin: 48px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cp-legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.cp-legal-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 14px;
}
.cp-legal-content ul {
  margin: 0 0 14px 0;
  padding: 0 0 0 20px;
}
.cp-legal-content li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 6px;
}
.cp-legal-content li strong { color: var(--text); font-weight: 600; }
.cp-legal-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ═══ CONTACT PAGE ═══ */
.cp-contact {
  padding: 96px var(--side-pad);
  background: var(--white);
}
.cp-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cp-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.cp-contact-info-left {
  grid-column: 1;
}
.cp-contact-info-right {
  grid-column: 2;
}
.cp-contact-eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
}
.cp-contact-eyebrow::before,
.cp-contact-eyebrow::after { display: none; }
.cp-contact-heading {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 32px;
  letter-spacing: 0;
}
.cp-contact-heading em { font-style: italic; color: var(--accent); }
.cp-contact-intro {
  font-size: 17px;
  font-family: var(--ff-body);
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0 0 48px;
}
.cp-contact-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.cp-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.cp-contact-item:last-child {
  border-bottom: 1px solid var(--border);
}
.cp-contact-label {
  font-size: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cp-contact-value {
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--text);
  line-height: 1.6;
}
.cp-contact-value a { color: inherit; text-decoration: none; }
.cp-contact-value a:hover { color: var(--accent-dark); }

.cp-contact-hours {
  margin-bottom: 40px;
}
.cp-contact-hours-title {
  font-size: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.cp-contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: var(--ff-body);
  color: var(--text-mid);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.cp-contact-hours-row:last-child {
  border-bottom: 1px solid var(--border);
}

.cp-contact-socials {
  display: flex;
  gap: 12px;
}
.cp-contact-social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cp-contact-social:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}
.cp-contact-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cp-contact-form-wrap {
  padding-top: 8px;
}
.cp-contact-form-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0;
  margin: 0 0 32px;
}
.cp-contact-form-title em { font-style: italic; color: var(--accent); }

/* ─── Responsive — content pages ─── */
@media (max-width: 1024px) {

  .cp-usps-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cp-returns-inner { grid-template-columns: 1fr; gap: 56px; }
  .cp-contact-info { grid-template-columns: 1fr; gap: 48px; }
  .cp-about-sec-inner { grid-template-columns: 1fr; gap: 40px; }
  .cp-about-sec--reverse .cp-about-sec-img,
  .cp-about-sec--reverse .cp-about-sec-content { order: 0; }
}
@media (max-width: 900px) {
  .cp-delivery-row { grid-template-columns: 100px 90px 1fr; }
  .cp-delivery-row--head span:last-child,
  .cp-del-note { display: none; }

}
@media (max-width: 768px) {
  .page-header { padding: 56px 24px 48px; }
  .page-header::before { display: none; }
  .cp-intro { padding: 72px 24px; }
  .cp-intro-inner { max-width: 100%; }
  .cp-pillar { padding: 48px 24px; }
  .cp-ethos { padding: 56px 24px; }
  .cp-ethos-inner { text-align: left; }
  .cp-about-sec { padding: 56px 24px; }
  .cp-usps { padding: 56px 24px; }
  .cp-usps-heading { margin-bottom: 40px; }
  .cp-usps-inner { grid-template-columns: 1fr; gap: 16px; }
  .cp-usp { padding: 24px; }
  .cp-delivery { padding: 72px 24px; }
  .cp-delivery-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px 20px; }
  .cp-delivery-row--head { display: none; }
  .cp-del-note { display: block; grid-column: 1 / -1; }
  .cp-del-time { grid-column: 1 / -1; }
  .cp-returns { padding: 72px 24px; }
  .cp-faq { padding: 56px 24px 80px; }
  .cp-legal { padding: 72px 24px; }
  .cp-contact { padding: 64px 24px; }
  .cp-contact-info { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════ */

.sc-cart-backdrop {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(26,25,24,0.35); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sc-cart-backdrop.open { opacity: 1; visibility: visible; }

.sc-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw; z-index: 99999;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-cart-drawer.open { transform: translateX(0); }

/* ─ Head ─ */
.sc-cart-drawer-head {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0; background: var(--warm);
}
.sc-cart-drawer-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 300;
  letter-spacing: 0; color: var(--text); margin: 0;
}
.sc-cart-drawer-title em { font-style: italic; }
.sc-cart-drawer-count {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  background: var(--warm); color: var(--text-mid);
  min-width: 22px; height: 22px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 6px;
}
.sc-cart-drawer-close {
  margin-left: auto; background: none; border: none;
  color: var(--text-mid); cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.sc-cart-drawer-close:hover { color: var(--text); }

/* ─ Body (scrollable items) ─ */
.sc-cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 0;
  -webkit-overflow-scrolling: touch;
}

/* ─ Empty state ─ */
.sc-cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 80px 32px; color: var(--text-light);
}
.sc-cart-empty svg { stroke: var(--border); margin-bottom: 16px; }
.sc-cart-empty-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 300;
  color: var(--text); margin-bottom: 16px;
}
.sc-cart-empty-btn {
  display: inline-block; padding: 12px 32px;
  background: var(--text); color: var(--white);
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: opacity 0.2s;
}
.sc-cart-empty-btn:hover { opacity: 0.85; }

/* ─ Cart item — grid: thumb | info | remove ─ */
/*                        thumb | qty + price   */
.sc-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s, transform 0.3s;
}
.sc-cart-item.removing {
  opacity: 0; transform: translateX(20px);
  pointer-events: none;
}

/* Thumb — spans both rows */
.sc-cart-item-thumb {
  grid-column: 1; grid-row: 1 / 3; align-self: start;
  width: 72px; height: 72px;
  background: var(--warm); overflow: hidden;
}
.sc-cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1; }

/* Details — row 1, col 2 */
.sc-cart-item-details {
  grid-column: 2; grid-row: 1;
  min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.sc-cart-item-name {
  font-family: var(--ff-display); font-size: 15px; font-weight: 300;
  color: var(--text); line-height: 1.3;
}
.sc-cart-item-name a { color: inherit; text-decoration: none; }
.sc-cart-item-name a:hover { text-decoration: underline; }

/* Variation meta — inline with dot separators */
.sc-cart-item-meta {
  font-family: var(--ff-body); font-size: 11px; color: var(--text-light);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0 4px;
}
.sc-cart-item-meta p { margin: 0; display: inline; }
.sc-cart-item-meta dl { display: flex; flex-wrap: wrap; align-items: center; gap: 0 4px; margin: 0; }
.sc-cart-item-meta dt, .sc-cart-item-meta dd { margin: 0; display: inline; }
.sc-cart-item-meta dd:not(:last-child)::after { content: ' ·'; margin-left: 2px; color: var(--border); }

/* Remove — row 1, col 3 (top-right) */
.sc-cart-item-remove {
  grid-column: 3; grid-row: 1; align-self: start; justify-self: end;
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  cursor: pointer; transition: color 0.15s;
}
.sc-cart-item-remove:hover { color: var(--accent-dark); }

/* Bottom row: qty left, price right */
.sc-cart-item-bottom {
  grid-column: 2 / 4; grid-row: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 6px;
}

/* ─ Qty stepper (drawer) ─ */
.sc-cart-item-qty { display: inline-flex; align-items: center; border: 1px solid var(--border); }
.sc-cart-qty-btn {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: var(--text-mid); transition: color 0.15s, background 0.15s;
}
.sc-cart-qty-btn:hover { color: var(--text); background: var(--warm); }
.sc-cart-qty-val {
  width: 30px; text-align: center;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600; color: var(--text);
}

/* Price — right side of bottom row */
.sc-cart-item-price {
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  color: var(--ink); text-align: right;
}
.sc-cart-item-price .woocommerce-Price-amount { color: var(--ink); font-size: 14px; font-weight: 600; }
.sc-cart-item-price del { color: var(--text-light); font-weight: 400; font-size: 12px; }
.sc-cart-item-price del .woocommerce-Price-amount { color: var(--text-light); font-weight: 400; font-size: 12px; }
.sc-cart-item-price ins { text-decoration: none; color: var(--ink); }
.sc-cart-item-price ins .woocommerce-Price-amount { color: var(--ink); font-weight: 600; }

/* ─ Footer (subtotal + buttons) ─ */
.sc-cart-drawer-foot {
  flex-shrink: 0; padding: 20px 24px 24px;
  border-top: 1px solid var(--border); background: var(--white);
}
.sc-cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.sc-cart-shipping-note {
  font-family: var(--ff-body); font-size: 11px; color: var(--text-light);
  margin-bottom: 16px;
}
.sc-cart-btn {
  display: block; width: 100%; text-align: center; padding: 14px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: opacity 0.2s;
  cursor: pointer;
}
.sc-cart-btn--view {
  background: none; border: 1px solid var(--border); color: var(--text);
  margin-bottom: 8px;
}
.sc-cart-btn--view:hover { border-color: var(--text); }
.sc-cart-btn--checkout {
  background: var(--accent); color: var(--ink); border: 1px solid var(--accent);
}
.sc-cart-btn--checkout:hover { opacity: 0.88; }

/* ─ Updating state ─ */
.sc-cart-drawer.is-updating .sc-cart-drawer-foot { opacity: 0.5; pointer-events: none; transition: opacity 0.2s; }
.sc-cart-drawer .sc-cart-drawer-foot { transition: opacity 0.2s; }
.sc-cart-drawer.is-updating::after {
  content: 'Updating…';
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); background: var(--white);
  padding: 6px 16px; border: 1px solid var(--border);
  z-index: 2; animation: sc-drawer-pulse 1s ease-in-out infinite;
}
@keyframes sc-drawer-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─ Mobile ─ */
@media (max-width: 480px) {
  .sc-cart-drawer { width: 100vw; }
  .sc-cart-item-thumb { flex: 0 0 68px; width: 68px; height: 68px; }
}

