/* ================================================================
   LUMIÈRE JEWELLERY — v3.0
   Luxury Shopify Theme · Jewellery Edition
   ================================================================ */

/* ── Design tokens ── */
:root {
  --color-primary:        #1a1a2e;
  --color-primary-text:   #ffffff;
  --color-accent:         #c9a96e;
  --color-accent-text:    #1a1a2e;
  --color-bg:             #faf8f3;
  --color-bg-text:        #1a1a2e;
  --color-surface:        #ffffff;
  --color-surface-text:   #1a1a2e;
  --color-secondary:      #f5f0e8;
  --color-border:         #e8e3da;
  --color-muted:          #8a8070;
  --color-success:        #2d6a4f;
  --color-error:          #9b1c1c;

  --font-heading:         Georgia, serif;
  --font-body:            system-ui, sans-serif;
  --font-body-weight:     300;
  --font-heading-weight:  400;
  --font-body-size:       16px;

  --page-width:           1300px;
  --section-spacing:      96px;
  --container-pad:        clamp(1.25rem, 5vw, 5rem);
  --grid-gap:             1.75rem;

  --radius:               6px;
  --radius-md:            10px;
  --radius-lg:            16px;
  --radius-full:          999px;

  --header-height:        72px;
  --transition:           0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow:      0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-xs:  0 1px 4px rgba(26,26,46,0.06);
  --shadow-sm:  0 2px 12px rgba(26,26,46,0.08);
  --shadow-md:  0 8px 30px rgba(26,26,46,0.12);
  --shadow-lg:  0 20px 60px rgba(26,26,46,0.18);
  --shadow-xl:  0 32px 80px rgba(26,26,46,0.22);

  /* Gold shimmer gradient */
  --gold-shimmer: linear-gradient(105deg, #c9a96e 0%, #e8cc8e 40%, #c9a96e 60%, #a8803e 100%);
  --gold-line:    linear-gradient(90deg, transparent, #c9a96e, transparent);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  color: var(--color-bg-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button { cursor: pointer; border: none; background: none; }

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: var(--gold-shimmer);
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-bg-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; font-weight: 600; }
h6 { font-size: 0.85rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

.overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gold-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-shimmer);
  margin: 1.25rem auto;
}

/* ── Layout ── */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow  { max-width: 640px;  margin: 0 auto; padding: 0 var(--container-pad); }
.container--content { max-width: 820px;  margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: var(--section-spacing) 0; }

/* ── Reveal animations ── */
/* Only hide elements when animations are enabled on body */
.animations-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animations-enabled .reveal.is-visible { opacity: 1; transform: none; }
.animations-enabled.anim-fade .reveal { transform: none; }
.animations-enabled .reveal:nth-child(2) { transition-delay: 0.08s; }
.animations-enabled .reveal:nth-child(3) { transition-delay: 0.16s; }
.animations-enabled .reveal:nth-child(4) { transition-delay: 0.24s; }
.animations-enabled .reveal:nth-child(5) { transition-delay: 0.32s; }
.animations-enabled .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 50px;
  position: relative;
  overflow: hidden;
}
/* Primary button — solid, no gold shimmer */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 0.88; }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: currentColor;
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-primary-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: #b89050;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-primary);
  padding-left: 0;
  letter-spacing: 0.18em;
  min-height: auto;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.btn--ghost::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s;
  font-size: 1em;
  letter-spacing: 0;
}
.btn--ghost:hover::after { transform: translateX(6px); }
.btn--ghost:hover { color: var(--color-accent); }

.btn--sm   { padding: 0.6rem 1.25rem; font-size: 0.65rem; min-height: 38px; }
.btn--lg   { padding: 1.1rem 2.75rem; font-size: 0.72rem; min-height: 56px; }
.btn--full { width: 100%; }

.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), opacity var(--transition);
}
.icon-btn:hover { background: var(--color-secondary); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.badge--sale     { background: var(--color-primary); color: var(--color-primary-text); }
.badge--sold-out { background: #6b7280; color: #fff; } /* darkened from #9ca3af for WCAG AA contrast (was ~2.1:1, now ~4.9:1) */
.badge--new      { background: var(--gold-shimmer); color: var(--color-accent-text); }

/* ── Section head ── */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .overline { display: block; margin-bottom: 0.75rem; }
.section-head__title { margin-bottom: 0.75rem; }
.section-head__sub { color: var(--color-muted); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: relative;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
/* Sticky header — attach to Shopify's section group wrapper so it works
   regardless of how deep the <header> element is nested */
.has-sticky-header .shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 200;
}
/* .site-header--sticky is kept as a marker class for JS only */
.site-header--transparent { background: transparent; }
.site-header--transparent .header-logo__text,
.site-header--transparent .header-nav__link,
.site-header--transparent .header-icon { color: var(--over-hero-color, #fff); }
.site-header--transparent .header-inner { border-bottom-color: rgba(255,255,255,0.12); }
.site-header.scrolled,
.site-header--solid {
  background: rgba(var(--header-solid-bg, 44,26,14),0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--header-border-color, var(--color-border)), var(--shadow-xs);
}
.site-header.scrolled .header-logo__text,
.site-header.scrolled .header-nav__link,
.site-header.scrolled .header-icon,
.site-header--solid .header-logo__text,
.site-header--solid .header-nav__link,
.site-header--solid .header-icon { color: var(--header-link-color, var(--color-primary)); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem var(--container-pad);
  max-width: var(--page-width);
  margin: 0 auto;
  transition: padding var(--transition);
}
.header-inner--left { grid-template-columns: auto 1fr auto; }
.header-inner--center { grid-template-columns: 1fr auto 1fr; }
.site-header.scrolled .header-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.header-logo { display: flex; justify-content: center; }
.header-inner--left .header-logo { justify-content: flex-start; }
.header-inner--center .header-logo { justify-content: center; }
.header-logo__link { display: inline-flex; align-items: center; }
.header-logo__text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.header-logo img { height: auto; }

.header-nav { display: flex; align-items: center; gap: 0.25rem; justify-content: flex-start; }
.header-inner--center .header-nav { justify-content: flex-start; }
.header-nav__item { position: relative; }
.header-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-radius: var(--radius);
}
.header-nav__link:hover { color: var(--color-accent); }
.header-nav__link[aria-current="page"] { color: var(--color-accent); }
.header-nav__caret {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.header-nav__item--dropdown:hover .header-nav__caret { transform: rotate(180deg); }

/* Mega-ish dropdown */
.header-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  overflow: hidden;
}
.header-nav__item--dropdown:hover .header-nav__dropdown,
.header-nav__item--dropdown:focus-within .header-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.header-nav__dropdown-list { padding: 0.5rem 0; }
.header-nav__dropdown-item {}
.header-nav__dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.header-nav__dropdown-link:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
  padding-left: 1.5rem;
}

.header-actions { display: flex; align-items: center; gap: 0.25rem; justify-content: flex-end; }
.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  color: inherit;
}
.header-icon:hover { background: var(--color-secondary); color: var(--color-accent); }
.header-cart__count {
  position: absolute;
  top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-surface);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  max-width: 360px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  z-index: 499;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(2px);
}
.mobile-overlay.is-visible { opacity: 1; visibility: visible; }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.mobile-drawer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mobile-nav { flex: 1; padding: 1rem 0; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav__link:hover { color: var(--color-accent); background: var(--color-secondary); }
.mobile-nav__details { border-bottom: 1px solid var(--color-border); }
.mobile-nav__details > summary { list-style: none; }
.mobile-nav__details > summary::-webkit-details-marker { display: none; }
.mobile-nav__sub { background: var(--color-secondary); }
.mobile-nav__sub-link {
  display: block;
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  transition: color var(--transition);
}
.mobile-nav__sub-link:hover { color: var(--color-accent); }
.mobile-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.mobile-drawer__action {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.mobile-drawer__action:hover { color: var(--color-accent); }

/* ── Announcement bar ── */
.announcement-bar {
  background: var(--color-primary);
  color: var(--color-primary-text);
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.announcement-bar__text { color: inherit; opacity: 0.9; }
.announcement-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.announcement-bar__close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ── Marquee ── */
.marquee-section {
  background: var(--color-primary);
  padding: 0.85rem 0;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.marquee-item::after {
  content: '◇';
  font-size: 0.5rem;
  color: var(--color-accent);
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── Hero ── */
.hero { position: relative; overflow: hidden; }

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 94vh;
  align-items: stretch;
}
.hero--split .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 4rem) var(--container-pad) 4rem;
  padding-left: max(var(--container-pad), calc((100vw - var(--page-width)) / 2 + var(--container-pad)));
}
.hero--split .hero__media {
  position: relative;
  overflow: hidden;
}
.hero--split .hero__media-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero--full {
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero--full .hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 5rem) var(--container-pad) 5rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero--full .hero__title,
.hero--full .hero__sub,
.hero--full .hero__eyebrow,
.hero--full .overline { color: #fff; }
.hero--full .hero__stats { border-top-color: rgba(255,255,255,0.2); }
.hero--full .hero__stat-number,
.hero--full .hero__stat-label { color: rgba(255,255,255,0.9); }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,var(--overlay-opacity, 0.45));
}
.hero__eyebrow { display: block; margin-bottom: 1.25rem; }
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.75rem;
  font-weight: 300;
}
.hero--full .hero__sub { margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero--full .hero__actions { justify-content: center; }
.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}
.hero__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
}
.hero__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.hero__badge {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--gold-shimmer);
  color: var(--color-accent-text);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  animation: badge-spin 20s linear infinite;
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(201,169,110,0.45);
}
@keyframes badge-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; min-height: auto; }
  .hero--split .hero__content { padding: calc(var(--header-height) + 3rem) 1.5rem 2.5rem; }
  .hero--split .hero__media { height: 65vw; min-height: 300px; }
  .hero__badge { animation: none; width: 72px; height: 72px; font-size: 0.65rem; }
  .hero__stats { gap: 1.75rem; }
  .hero--full { min-height: 72vh; }
}

/* ── Featured collection ── */
.featured-collection.section {}
.featured-collection__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.featured-collection__heading { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.featured-collection__sub { color: var(--color-muted); font-size: 0.95rem; margin-top: 0.4rem; }
.featured-collection__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--color-muted);
}

/* ── Product grid ── */
.product-grid { display: grid; gap: var(--grid-gap); }
.product-grid--2-col { grid-template-columns: repeat(2, 1fr); }
.product-grid--3-col { grid-template-columns: repeat(3, 1fr); }
.product-grid--4-col { grid-template-columns: repeat(4, 1fr); }
.product-grid--5-col { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 900px) {
  .product-grid--4-col, .product-grid--5-col { grid-template-columns: repeat(2, 1fr); }
  .product-grid--3-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .product-grid--2-col, .product-grid--3-col,
  .product-grid--4-col, .product-grid--5-col { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── Product card ── */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform var(--transition);
}
.product-card--elevated { background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); overflow: hidden; }
.product-card--bordered { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.product-card:hover { transform: translateY(-4px); }

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-secondary);
}
.product-card--elevated .product-card__media,
.product-card--bordered .product-card__media { border-radius: 0; }
.product-card__media--portrait { aspect-ratio: 3/4; }
.product-card__media--square   { aspect-ratio: 1/1; }
.product-card__media--natural  { aspect-ratio: auto; }

.product-card__media-link {
  display: block;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.product-card__media--natural .product-card__media-link { position: relative; }

.product-card__img--primary {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.5s;
}
.product-card__img--secondary {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card:hover .product-card__img--primary  { transform: scale(1.06); }
.product-card:hover .product-card__img--secondary { opacity: 1; transform: scale(1.03); }
.product-card__placeholder {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  background: var(--color-secondary);
}

.product-card__badges {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex; flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}

/* Wishlist */
.wishlist-btn {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: scale(1); }
.wishlist-btn:hover { background: #fff; }
.wishlist-btn__icon--filled { display: none; color: #e53e3e; }
.wishlist-btn[aria-pressed="true"] .wishlist-btn__icon--empty { display: none; }
.wishlist-btn[aria-pressed="true"] .wishlist-btn__icon--filled { display: block; }
.wishlist-btn[aria-pressed="true"] { background: #fff; opacity: 1; transform: scale(1); }

/* Quick add */
.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 3;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.btn--quick-add {
  width: 100%;
  background: rgba(26,26,46,0.92);
  color: #fff;
  border: none;
  padding: 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition), color var(--transition);
}
.btn--quick-add:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

/* Card info */
.product-card__info {
  padding: 1.1rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.product-card--elevated .product-card__info,
.product-card--bordered .product-card__info { padding: 1.1rem 1rem 1rem; }

.product-card__vendor {
  font-size: 0.62rem;
  margin-bottom: 0.1rem;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}
.product-card__title a { color: inherit; transition: color var(--transition); }
.product-card__title a:hover { color: var(--color-accent); }

/* Swatches */
.product-card__swatches {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.swatch-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--color-border);
  cursor: pointer;
  transition: transform var(--transition);
}
.swatch-dot:hover { transform: scale(1.2); }

/* Price */
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem; }
.price__regular { font-weight: 600; font-size: 0.92rem; }
.price__sale    { font-weight: 600; font-size: 0.92rem; color: #9b1c1c; }
.price--compare { color: var(--color-muted); text-decoration: line-through; font-size: 0.82rem; }

/* ── Collection list ── */
.collection-list.section {}
.collection-cards {
  display: grid;
  gap: 1.5rem;
}
.collection-cards--2-col { grid-template-columns: repeat(2, 1fr); }
.collection-cards--3-col { grid-template-columns: repeat(3, 1fr); }
.collection-cards--4-col { grid-template-columns: repeat(4, 1fr); }

.collection-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--color-secondary);
}
.collection-card__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.collection-card__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,30,0.8) 0%, rgba(15,10,30,0.1) 50%, transparent 100%);
}
.collection-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  color: #fff;
}
.collection-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.collection-card__desc { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.85rem; }
.collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.1rem;
  transition: opacity var(--transition), border-color var(--transition);
}
.collection-card__cta::after { content: '→'; }
.collection-card:hover .collection-card__cta { opacity: 1; border-color: rgba(255,255,255,0.8); }

@media (max-width: 749px) {
  .collection-cards--3-col,
  .collection-cards--4-col { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}

/* ── Image with text ── */
.image-with-text-section.section {}
.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}
.image-with-text--image-right .image-with-text__image { order: 2; }
.image-with-text--image-right .image-with-text__content { order: 1; }
.image-with-text__image { border-radius: var(--radius-lg); overflow: hidden; }
.image-with-text__image img,
.image-with-text__image .placeholder-svg {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.image-with-text__content { display: flex; flex-direction: column; gap: 1.5rem; }
.image-with-text__eyebrow {}
.image-with-text__heading { font-size: clamp(1.6rem, 2.5vw, 2.6rem); line-height: 1.15; }
.image-with-text__text { color: var(--color-muted); line-height: 1.9; font-size: 1.02rem; font-weight: 300; }

@media (max-width: 749px) {
  .image-with-text { grid-template-columns: 1fr; }
  .image-with-text--image-right .image-with-text__image { order: 0; }
  .image-with-text--image-right .image-with-text__content { order: 0; }
}

/* ── Feature badges ── */
.feature-badges.section {}
.feature-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-badge__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.feature-badge__icon svg { width: 22px; height: 22px; stroke: var(--color-accent); }
.feature-badge__title { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.3rem; }
.feature-badge__text  { color: var(--color-muted); font-size: 0.8rem; line-height: 1.55; margin: 0; }

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

/* ── Testimonials ── */
.testimonials.section {}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem; left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.15;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--color-accent); font-size: 0.85rem; letter-spacing: 3px; }
.testimonial-text { font-size: 0.96rem; line-height: 1.85; font-style: italic; color: var(--color-bg-text); flex: 1; margin: 0; }
.testimonial-author { font-weight: 700; font-size: 0.85rem; margin: 0; }
.testimonial-location { color: var(--color-muted); font-size: 0.75rem; margin: 0.15rem 0 0; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ── Lookbook ── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  background: var(--color-secondary);
}
.lookbook-item__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lookbook-item:hover .lookbook-item__img { transform: scale(1.05); }
.lookbook-item__overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,0);
  transition: background var(--transition);
}
.lookbook-item:hover .lookbook-item__overlay { background: rgba(26,26,46,0.12); }

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

/* ── Newsletter ── */
.newsletter-section {
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: var(--section-spacing) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: var(--gold-line);
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: var(--gold-line);
}
.newsletter-section .section-title { color: var(--color-primary-text); }
.newsletter-section .section-sub    { color: rgba(255,255,255,0.6); }
.newsletter-section .overline       { color: var(--color-accent); }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  background: var(--color-accent);
  color: var(--color-accent-text);
  border: none;
  padding: 0.9rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover { background: #b89050; }

/* ── Video banner ── */
.video-banner {
  position: relative; overflow: hidden;
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
}
.video-banner__media { position: absolute; inset: 0; }
.video-banner__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,var(--overlay-opacity, 0.45));
}
.video-banner__content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 4rem var(--container-pad);
  max-width: 780px;
}
.video-banner__eyebrow  { display: block; margin-bottom: 1rem; }
.video-banner__heading  { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1.25rem; color: #fff; }
.video-banner__sub      { font-size: 1.05rem; opacity: 0.8; max-width: 520px; margin: 0 auto 2.25rem; }

/* ── Countdown timer ── */
.countdown-timer.section {}
.countdown-grid { display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 2rem; }
.countdown-unit { text-align: center; }
.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
}
.countdown-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.5rem;
}
.countdown-sep {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-border);
  align-self: center;
  margin-top: -0.5rem;
}

/* ── Collection page ── */
.collection-section.section {}
.collection-header { margin-bottom: 3rem; }
.collection-header__media { height: 340px; overflow: hidden; border-radius: var(--radius-lg); position: relative; }
.collection-header__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-header__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,10,30,0.3) 0%, rgba(15,10,30,0.6) 100%);
}
.collection-header__content { padding: 2rem 0 0; }
.collection-header__content--overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem var(--container-pad);
  color: #fff;
}
.collection-title { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.5rem; }
.collection-title--light { color: #fff; }
.collection-description { color: var(--color-muted); font-size: 1rem; max-width: 640px; }
.collection-description--light { color: rgba(255,255,255,0.8); }

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.collection-toolbar__left { display: flex; align-items: center; gap: 1.25rem; }
.collection-count { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; }
.filter-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.sort-select {
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  background: transparent;
  cursor: pointer;
  color: var(--color-bg-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.collection-body { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.collection-body--no-filters { grid-template-columns: 1fr; }

.filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-height) - 3rem);
}
.filter-sidebar.is-open {}
.filter-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.filter-sidebar__title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.filter-clear { font-size: 0.72rem; color: var(--color-muted); text-decoration: underline; }

.filter-group { margin-bottom: 1.25rem; }
.filter-group__title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 0; cursor: pointer;
  list-style: none;
}
.filter-group__title::-webkit-details-marker { display: none; }
.filter-group__caret { flex-shrink: 0; transition: transform var(--transition); }
details[open] .filter-group__caret { transform: rotate(180deg); }
.filter-group__options { padding: 0.75rem 0 0.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.filter-option { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.82rem; }
.filter-option--disabled { opacity: 0.4; cursor: not-allowed; }
.filter-option input[type="checkbox"] { accent-color: var(--color-primary); width: 15px; height: 15px; flex-shrink: 0; }
.filter-option__label { flex: 1; }
.filter-option__count { color: var(--color-muted); font-size: 0.72rem; }
.price-range-filter { display: flex; align-items: center; gap: 0.5rem; }
.price-range-sep { color: var(--color-muted); }
.price-range-input {
  flex: 1; min-width: 0;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  background: transparent;
}

.collection-grid-wrapper {}
.collection-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--color-muted);
}
.collection-empty svg { opacity: 0.2; margin: 0 auto 1.5rem; }

/* Grid skeleton */
.grid-skeleton { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.skeleton-card { border-radius: var(--radius-md); overflow: hidden; }
.skeleton-img { aspect-ratio: 3/4; background: var(--color-secondary); animation: skeleton-pulse 1.5s ease-in-out infinite; }
.skeleton-text { height: 14px; border-radius: 4px; margin-top: 0.75rem; background: var(--color-secondary); animation: skeleton-pulse 1.5s ease-in-out infinite 0.15s; }
.skeleton-text--short { width: 55%; animation-delay: 0.3s; }
@keyframes skeleton-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

@media (max-width: 900px) {
  .collection-body { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: -100%; bottom: 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    z-index: 300; max-width: 310px; width: 90%;
    transition: left var(--transition-slow);
    max-height: 100vh;
  }
  .filter-sidebar.is-open { left: 0; }
  .filter-sidebar__close { display: flex; }
}
.filter-sidebar__close { align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; }

/* ── Product page ── */
.product-page.section {}
/* ── Product page layout ── */
.product-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;   /* gallery gets ~63% of width */
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.product-layout--large   { grid-template-columns: 1.9fr 1fr; }   /* ~65% */
.product-layout--small   { grid-template-columns: 1.2fr 1fr; }   /* ~55% */
.product-layout--medium  { grid-template-columns: 1.7fr 1fr; }
.product-layout--stacked { grid-template-columns: 1fr; }

.product-gallery {}
.product-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-secondary);
  min-height: 560px;
}
.product-gallery__slide { display: none; }
.product-gallery__slide.is-active { display: block; }
.product-gallery__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.product-gallery__image:hover { transform: scale(1.025); }
.product-gallery__placeholder { width: 100%; aspect-ratio: 3/4; background: var(--color-secondary); }
.product-gallery__video-wrap { aspect-ratio: 4/3; }
.product-gallery__video-iframe { width: 100%; height: 100%; border: none; }
.product-gallery__video-native { width: 100%; aspect-ratio: 4/3; background: #000; }

.product-gallery__thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
  flex-shrink: 0;
  width: 88px; height: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  padding: 0;
  background: var(--color-secondary);
  opacity: 0.55;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb.is-active { border-color: var(--color-accent); opacity: 1; }
.product-gallery__thumb:hover { opacity: 0.85; }

/* Thumbnails-left layout */
.product-layout--thumbnails-left .product-gallery {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.85rem;
  align-items: start;
}
/* main comes first in DOM — place it in column 2; thumbs go to column 1 */
.product-layout--thumbnails-left .product-gallery__main {
  grid-column: 2;
  grid-row: 1;
}
.product-layout--thumbnails-left .product-gallery__thumbs {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  margin-top: 0;
  overflow-y: auto; overflow-x: hidden;
  max-height: calc(5 * 110px + 4 * 0.6rem);
  scrollbar-width: none;
}
.product-layout--thumbnails-left .product-gallery__thumb { width: 100%; }

.product-info {
  display: flex; flex-direction: column; gap: 1.75rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
.product-vendor { margin-bottom: -1rem; }
.product-title { font-size: clamp(1.6rem, 2.5vw, 2.4rem); line-height: 1.12; }
.product-tax-note { font-size: 0.78rem; color: var(--color-muted); margin-top: 0.35rem; }

/* Variant picker */
.product-variants { display: flex; flex-direction: column; gap: 1.5rem; }
.product-option { border: none; padding: 0; margin: 0; }
.product-option__label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.product-option__value {
  font-style: normal; color: var(--color-muted);
  font-weight: 400; text-transform: none; letter-spacing: 0;
  font-size: 0.72rem;
}
.product-option__swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.swatch-label {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px var(--color-border);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.swatch-label:hover    { box-shadow: 0 0 0 2px var(--color-primary); transform: scale(1.05); }
.swatch-label.is-selected { box-shadow: 0 0 0 2px var(--color-primary); }
.swatch-label.is-unavailable { opacity: 0.35; cursor: not-allowed; }
.swatch-label__color { width: 100%; height: 100%; border-radius: 50%; display: block; }
.swatch-label__img   { width: 100%; height: 100%; object-fit: cover; }

.product-option__buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.option-btn {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.option-btn:hover    { border-color: var(--color-primary); color: var(--color-primary); }
.option-btn.is-selected { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-text); }
.option-btn.is-sold-out { opacity: 0.38; text-decoration: line-through; cursor: not-allowed; }

/* Qty */
.quantity-selector { display: flex; align-items: stretch; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-btn {
  width: 44px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--color-secondary); }
.qty-input {
  width: 54px; height: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-input--sm { width: 42px; height: 38px; font-size: 0.82rem; }
.qty-btn.qty-btn--sm { width: 36px; height: 38px; }
.quantity-selector--sm .qty-btn { width: 34px; height: 36px; }

/* ATC button */
.product-form { display: flex; flex-direction: column; gap: 0.75rem; }
.product-form__buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.product-form__submit { font-size: 0.72rem; letter-spacing: 0.22em; min-height: 54px; }
.btn-text {}
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.product-form__submit.is-loading .btn-text { display: none; }
.product-form__submit.is-loading .btn-spinner { display: block; }

/* Trust badges */
.product-trust-badges {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: 1.5rem;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.trust-badge { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; }
.trust-badge svg { flex-shrink: 0; color: var(--color-accent); }

/* Stock indicator */
.product-stock {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500;
}
.product-stock__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2d6a4f;
  animation: stock-pulse 2s ease-in-out infinite;
}
.product-stock--low .product-stock__dot { background: #d97706; }
.product-stock--out .product-stock__dot { background: #9b1c1c; animation: none; }
@keyframes stock-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Product description accordion */
.product-description.rte { border-top: 1px solid var(--color-border); padding-top: 1.5rem; }

/* Sticky ATC */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(26,26,46,0.1);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc[aria-hidden="false"] { transform: translateY(0); }
.sticky-atc__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0.85rem var(--container-pad);
}
.sticky-atc__product { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.sticky-atc__img { width: 44px; height: 56px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.sticky-atc__title { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc__price { font-size: 0.9rem; white-space: nowrap; }
.sticky-atc__btn { white-space: nowrap; }

@media (max-width: 749px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-layout--thumbnails-left { grid-template-columns: 1fr; }
  .product-layout--thumbnails-left .product-gallery { grid-template-columns: 1fr; }
  .product-layout--thumbnails-left .product-gallery__thumbs { flex-direction: row; overflow-x: auto; max-height: none; }
  .product-info { position: static; }
  .sticky-atc__product { display: none; }
  .sticky-atc__inner { grid-template-columns: 1fr auto; }
}

/* Product recommendations */
.recommendations-section.section {}
.recommendations-section .section-title { margin-bottom: 2rem; }
.recommendations-grid {}

/* ── Cart drawer ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,46,0.4);
  z-index: 399;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(2px);
}
.cart-overlay.is-visible { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-surface);
  z-index: 400;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-xl);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.cart-drawer__count { color: var(--color-muted); font-weight: 400; }
.cart-drawer__body { flex: 1; overflow-y: auto; }
.cart-drawer__items { padding: 0 1.5rem; }
.cart-drawer__empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem; color: var(--color-muted);
  gap: 1.25rem; min-height: 60vh;
}
.cart-drawer__empty svg { opacity: 0.25; }
.cart-drawer__empty p { font-size: 0.92rem; }

/* Free shipping bar */
.cart-drawer__shipping-bar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__shipping-text { font-size: 0.78rem; text-align: center; margin-bottom: 0.5rem; color: var(--color-muted); }
.cart-drawer__shipping-text strong { color: var(--color-accent); }
.shipping-bar-track {
  height: 3px;
  background: var(--color-secondary);
  border-radius: 999px;
  overflow: hidden;
}
.shipping-bar-fill {
  height: 100%;
  background: var(--gold-shimmer);
  border-radius: 999px;
  transition: width 0.6s ease;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 80px; height: 104px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.cart-item__img-placeholder {
  width: 80px; height: 104px;
  background: var(--color-secondary);
  border-radius: var(--radius);
}
.cart-item__body { display: flex; flex-direction: column; justify-content: space-between; gap: 0.6rem; }
.cart-item__title { font-size: 0.88rem; font-weight: 600; line-height: 1.35; }
.cart-item__title a { color: inherit; text-decoration: none; }
.cart-item__title a:hover { color: var(--color-accent); }
.cart-item__variant { font-size: 0.75rem; color: var(--color-muted); margin: 0; }
.cart-item__plan    { font-size: 0.72rem; color: var(--color-accent); margin: 0; }
.cart-item__discount { font-size: 0.72rem; color: #2d6a4f; margin: 0; }
.cart-item__actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-item__price { font-size: 0.88rem; font-weight: 600; margin-left: auto; }
.cart-item__remove { color: var(--color-muted); }
.cart-item__remove:hover { color: #9b1c1c; }

.cart-drawer__footer {
  flex-shrink: 0;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.cart-drawer__discounts { margin-bottom: 0.75rem; }
.cart-drawer__discount-line {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: #2d6a4f; margin-bottom: 0.3rem;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.cart-drawer__subtotal-amount { font-size: 1.2rem; font-weight: 700; }
.cart-drawer__tax-note { font-size: 0.72rem; color: var(--color-muted); margin-bottom: 1rem; }
.cart-drawer__actions { display: flex; flex-direction: column; gap: 0.65rem; }

/* ── Cart page ── */
.cart-section.section {}
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem; align-items: start; }
.cart-summary {
  position: sticky; top: calc(var(--header-height) + 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-summary__head {
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: 1.25rem 1.75rem;
}
.cart-summary__title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: inherit; }
.cart-summary__body { padding: 1.5rem 1.75rem; }
.cart-summary__line { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.75rem; }
.cart-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1.1rem; font-weight: 700;
  padding-top: 1rem; margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.cart-summary__actions { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.cart-tax-note  { font-size: 0.75rem; color: var(--color-muted); margin-top: 0.4rem; }
.cart-continue  { display: block; text-align: center; font-size: 0.78rem; color: var(--color-muted); margin-top: 1.25rem; text-decoration: underline; text-underline-offset: 2px; }
.cart-item__img { width: 90px; height: 118px; }
.cart-empty {
  text-align: center; padding: 6rem 1rem;
  color: var(--color-muted);
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.cart-empty svg { opacity: 0.25; }
.cart-empty h2 { color: var(--color-bg-text); }
.cart-note__input { width: 100%; min-height: 80px; resize: vertical; }
.cart-gift-wrap { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; margin: 0.75rem 0; }
.cart-gift-wrap input { accent-color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }

@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label  { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-surface-text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-success { background: #d1fae5; color: #065f46; padding: 1rem 1.25rem; border-radius: var(--radius-md); font-size: 0.88rem; margin-bottom: 1rem; }
.form-errors  { background: #fee2e2; color: #991b1b; padding: 1rem 1.25rem; border-radius: var(--radius-md); font-size: 0.88rem; margin-bottom: 1rem; }

/* ── Search modal ── */
.search-modal {
  position: fixed; inset: 0;
  z-index: 600;
  display: flex; flex-direction: column;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(8px);
}
.search-modal[hidden] { display: none; }
.search-modal__inner {
  background: var(--color-surface);
  padding: 2rem var(--container-pad);
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
}
.search-modal__bar { display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; }
.search-modal__input {
  flex: 1;
  font-size: 1.35rem;
  font-family: var(--font-heading);
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-bg-text);
}
.search-modal__overlay { flex: 1; cursor: pointer; }
#predictive-results { padding: 1.5rem 0; }
.predictive-result {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0.85rem; align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  text-decoration: none; color: inherit;
}
.predictive-result:hover { background: var(--color-secondary); }
.predictive-result img { width: 56px; height: 72px; object-fit: cover; border-radius: var(--radius); }
.predictive-result__img-placeholder { width: 56px; height: 72px; background: var(--color-secondary); border-radius: var(--radius); }
.predictive-result__title { font-size: 0.88rem; font-weight: 600; line-height: 1.3; }
.predictive-result__price { font-size: 0.8rem; color: var(--color-muted); margin-top: 0.25rem; }
.predictive-result--page { grid-template-columns: 24px 1fr; }
.predictive-result__see-all {
  display: block; text-align: center; padding: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--color-accent); text-transform: uppercase;
  border-top: 1px solid var(--color-border); margin-top: 0.5rem;
}
.predictive-result__empty { text-align: center; color: var(--color-muted); padding: 1.5rem 0; font-size: 0.9rem; }

/* ── Breadcrumb ── */
.breadcrumb { margin-bottom: 2.5rem; }
.breadcrumb__list {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.35rem; list-style: none; padding: 0; margin: 0;
  font-size: 0.75rem; color: var(--color-muted);
}
.breadcrumb__link { color: var(--color-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--color-accent); }
.breadcrumb__sep { opacity: 0.4; }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 0.4rem; margin-top: 3.5rem; }
.pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.82rem; color: var(--color-bg-text);
  text-decoration: none;
  transition: all var(--transition);
}
.pagination__link:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-text); }
.pagination__link--current { background: var(--color-primary); color: var(--color-primary-text); border-color: var(--color-primary); }
.pagination__ellipsis { padding: 0 0.35rem; color: var(--color-muted); }

/* ── Error / 404 ── */
.error-section {
  min-height: 65vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.error-section .container { max-width: 560px; }
.error-code {
  font-size: 8rem; font-family: var(--font-heading); font-weight: 300;
  line-height: 1; color: var(--color-accent); margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.error-text { color: var(--color-muted); margin: 1rem 0 2.5rem; font-size: 1.05rem; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── Page template ── */
.page-section { max-width: 860px; margin: 0 auto; padding: 4rem 0; }
.page-header   { margin-bottom: 2.5rem; }
.page-title    { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.page-content.rte { font-size: 1.05rem; line-height: 1.9; }

/* ── Contact ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info__title { font-size: 1.6rem; margin-bottom: 1.1rem; }
.contact-info__text  { color: var(--color-muted); line-height: 1.85; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.5rem; }
.contact-detail svg { flex-shrink: 0; color: var(--color-accent); margin-top: 1px; }
.contact-detail__label { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-detail__value { color: var(--color-muted); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

@media (max-width: 749px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── Search page ── */
.search-section { padding-top: calc(var(--header-height) + 3rem); }
.search-header { margin-bottom: 3rem; }
.search-form__inner { display: flex; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.search-form__input { flex: 1; border: none; padding: 1rem 1.25rem; font-size: 1rem; background: var(--color-surface); outline: none; }
.search-form__btn { border-radius: 0; padding: 1rem 1.5rem; }
.search-empty { color: var(--color-muted); padding: 3rem 0; text-align: center; }
.search-results-count { color: var(--color-muted); font-size: 0.85rem; margin-bottom: 2rem; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.article-card { display: flex; flex-direction: column; }
.article-card__media {
  aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius-md); margin-bottom: 1.5rem;
  background: var(--color-secondary);
}
.article-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.article-card:hover .article-card__img { transform: scale(1.05); }
.article-card__meta  { font-size: 0.72rem; color: var(--color-muted); margin-bottom: 0.6rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.article-card__title { font-size: 1.15rem; font-weight: 400; margin-bottom: 0.7rem; line-height: 1.4; }
.article-card__title a { color: inherit; text-decoration: none; }
.article-card__title a:hover { color: var(--color-accent); }
.article-card__excerpt { font-size: 0.88rem; color: var(--color-muted); line-height: 1.75; }

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

/* ── Article ── */
.article-hero { margin-bottom: 3.5rem; }
.article-hero__meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--color-muted); font-size: 0.78rem; margin-bottom: 1rem; }
.article-hero__title { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 2rem; }
.article-hero__image { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body.rte { font-size: 1.06rem; line-height: 1.9; }
.article-tags { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.article-tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: var(--radius-full);
  color: var(--color-muted); text-decoration: none;
  transition: all var(--transition);
}
.article-tag:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ── Account ── */
.account-section { padding: 4rem 0; }
.account-header { margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.account-orders-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.account-orders-table th {
  text-align: left; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-muted); padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--color-border);
}
.account-orders-table td { padding: 1rem; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.account-orders-table tr:last-child td { border-bottom: none; }
.order-status-badge {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.order-status-badge--fulfilled   { background: #d1fae5; color: #065f46; }
.order-status-badge--unfulfilled { background: #fef3c7; color: #92400e; }
.order-status-badge--cancelled   { background: #fee2e2; color: #991b1b; }

/* ── Password page ── */
.password-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: var(--color-primary); color: var(--color-primary-text); padding: 2rem;
}
.password-page__logo { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 3rem; color: #fff; letter-spacing: 0.2em; }
.password-page__title { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.password-page__sub { opacity: 0.6; max-width: 420px; margin: 0 auto 2.5rem; }
.password-form { display: flex; max-width: 380px; width: 100%; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); overflow: hidden; }
.password-input { flex: 1; border: none; background: rgba(255,255,255,0.08); color: #fff; padding: 0.95rem 1.25rem; font-size: 0.92rem; outline: none; }
.password-input::placeholder { color: rgba(255,255,255,0.4); }
.password-submit { background: var(--color-accent); color: var(--color-accent-text); border: none; padding: 0.9rem 1.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); }
.password-submit:hover { background: #b89050; }

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg, var(--color-primary));
  color: var(--footer-text, var(--color-primary-text));
}
.footer-top { padding: 5rem 0 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-logo { display: inline-flex; margin-bottom: 1.25rem; }
.footer-logo__text { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-logo img { height: 36px; width: auto; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.75rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-social__link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social__link:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(201,169,110,0.08); }
.footer-col__title {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col__list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col__link {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col__link:hover { color: var(--color-accent); }
.footer-newsletter__text { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.65; }
.footer-newsletter-form { display: flex; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); overflow: hidden; }
.footer-newsletter-input { flex: 1; background: rgba(255,255,255,0.06); border: none; padding: 0.75rem 1rem; color: #fff; font-size: 0.82rem; outline: none; min-width: 0; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-btn { background: var(--color-accent); border: none; padding: 0.75rem 1.1rem; color: var(--color-accent-text); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background var(--transition); }
.footer-newsletter-btn:hover { background: #b89050; }
.footer-newsletter__success { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Collection list page ── */
.list-collections-section.section {}
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
@media (max-width: 749px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .collections-grid { grid-template-columns: 1fr; } }

/* ── RTE ── */
.rte h1,.rte h2,.rte h3,.rte h4,.rte h5,.rte h6 { margin: 1.5em 0 0.5em; }
.rte p  { margin-bottom: 1em; }
.rte ul { list-style: disc; margin: 1em 0 1em 1.5em; }
.rte ol { list-style: decimal; margin: 1em 0 1em 1.5em; }
.rte li { margin-bottom: 0.35em; }
.rte blockquote { border-left: 3px solid var(--color-accent); padding-left: 1.5rem; margin: 1.75em 0; font-style: italic; color: var(--color-muted); }
.rte a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.rte img { max-width: 100%; border-radius: var(--radius-md); }
.rte table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.rte th, .rte td { padding: 0.75rem 1rem; border: 1px solid var(--color-border); text-align: left; }
.rte th { font-weight: 600; background: var(--color-secondary); }
.rte hr { border: none; border-top: 1px solid var(--color-border); margin: 2.5em 0; }

/* ── Size guide modal ── */
.size-guide-modal {
  position: fixed; inset: 0; z-index: 700;
  display: flex; align-items: center; justify-content: center;
}
.size-guide-modal[hidden] { display: none; }
.size-guide-modal__backdrop { position: absolute; inset: 0; background: rgba(26,26,46,0.55); backdrop-filter: blur(4px); cursor: pointer; }
.size-guide-modal__panel {
  position: relative; z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 600px; width: 90%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.size-guide-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; background: var(--color-surface);
}
.size-guide-modal__title { font-size: 1rem; font-weight: 600; }
.size-guide-modal__body { padding: 2rem; }

/* ── Hotspot ── */
.hotspot-container { position: relative; }
.hotspot-container img { width: 100%; border-radius: var(--radius-lg); }
.hotspot-pin { position: absolute; }
.hotspot-pin__dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 6px rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: hotspot-pulse 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.hotspot-pin__dot:hover { transform: scale(1.15); }
@keyframes hotspot-pulse { 0%,100% { box-shadow: 0 0 0 6px rgba(201,169,110,0.2); } 50% { box-shadow: 0 0 0 10px rgba(201,169,110,0.05); } }
.hotspot-popup {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.hotspot-popup[hidden] { display: none; }
.hotspot-popup__title { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.hotspot-popup__price { font-size: 0.82rem; color: var(--color-muted); }

/* ── Brand story ── */
.brand-story.section {}
.brand-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: center;
}
.brand-story-inner.reverse .brand-story__media { order: 2; }
.brand-story__media { border-radius: var(--radius-lg); overflow: hidden; }
.brand-story__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.brand-story__content { display: flex; flex-direction: column; gap: 1.5rem; }
.brand-story__heading { font-size: clamp(1.6rem, 2.5vw, 2.6rem); }
.brand-story__text { color: var(--color-muted); line-height: 1.9; font-weight: 300; }
@media (max-width: 749px) { .brand-story-inner { grid-template-columns: 1fr; } }

/* ── Before / After slider ── */
.before-after__container {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  user-select: none; touch-action: none;
  cursor: ew-resize;
}
.before-after__before { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.before-after__before img,
.before-after__after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.before-after__after img { width: 100%; }

/* Handle — wide interactive zone so mouse/touch can grab it reliably */
.before-after__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 48px;
  transform: translateX(-50%);
  cursor: ew-resize;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  z-index: 10;
  touch-action: none; /* crucial: prevents scroll hijack on mobile */
}

/* Thin vertical white line */
.before-after__handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Circle drag button with arrow icons */
.before-after__handle-btn {
  position: relative; z-index: 2;
  width: 44px; height: 44px;
  background: #fff; border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  pointer-events: none;
  color: var(--color-primary);
}
.before-after__handle-btn svg { flex-shrink: 0; }

/* Labels */
.before-after__label {
  position: absolute; top: 1rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255,255,255,0.92); padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full); color: var(--color-primary);
  pointer-events: none;
}
.before-after__label--before { left: 1rem; }
.before-after__label--after  { right: 1rem; }

/* ── Wishlist count ── */
.header-wishlist-count {
  position: absolute; top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 50%; font-size: 0.58rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.header-wishlist-count.has-items { display: flex; }

/* ── Responsive global ── */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-menu-btn { display: flex; }
}
@media (min-width: 1025px) {
  .header-menu-btn { display: none; }
  .mobile-drawer { display: none; }
}

/* ── Gift card ── */
.template-giftcard body { background: var(--color-primary); color: var(--color-primary-text); }

/* ================================================================
   LUMIÈRE v3.1 — Footer · Header · Collection · Share upgrades
   ================================================================ */

/* ── Footer accent top line ── */
.footer-accent-line {
  height: 1px;
  background: var(--gold-line);
}

/* ── Footer body ── */
.footer-body {
  background: var(--footer-bg, var(--color-primary));
  padding: 5rem 0 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.4fr;
  gap: 3.5rem 2.5rem;
  align-items: start;
}
.footer-brand {}
.footer-brand__logo {
  display: inline-flex;
  margin-bottom: 1.25rem;
}
.footer-brand__wordmark {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--footer-text, #fff);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-brand__logo img { height: auto; }
.footer-brand__tagline {
  font-size: 0.82rem;
  color: var(--footer-muted, rgba(255,255,255,0.45));
  line-height: 1.65;
  margin-bottom: 0.85rem;
  font-style: italic;
}
.footer-brand__about {
  font-size: 0.82rem;
  color: var(--footer-muted, rgba(255,255,255,0.45));
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.footer-social__link {
  width: 40px; height: 40px;
  border: 1px solid var(--footer-border, rgba(255,255,255,0.15));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--footer-link, rgba(255,255,255,0.55));
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.footer-social__link:hover {
  border-color: var(--footer-accent, var(--color-accent));
  color: var(--footer-accent, var(--color-accent));
  background: rgba(201,169,110,0.08);
  transform: translateY(-3px);
}
.footer-social__link--whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37,211,102,0.08);
}

/* Nav columns */
.footer-col {}
.footer-col__title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--footer-muted, rgba(255,255,255,0.4));
  margin-bottom: 0.65rem;
}
.footer-col__line {
  display: block;
  width: 24px; height: 1px;
  background: var(--footer-accent, var(--color-accent));
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col__link {
  font-size: 0.85rem;
  color: var(--footer-link, rgba(255,255,255,0.6));
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col__link:hover {
  color: var(--footer-accent, var(--color-accent));
  padding-left: 6px;
}

/* Newsletter */
.footer-nl__text {
  font-size: 0.82rem;
  color: var(--footer-muted, rgba(255,255,255,0.45));
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.footer-nl__form {
  display: flex;
  border: 1px solid var(--footer-border, rgba(255,255,255,0.18));
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--footer-input-bg, rgba(255,255,255,0.05));
  transition: border-color var(--transition);
}
.footer-nl__form:focus-within {
  border-color: var(--footer-accent, var(--color-accent));
}
.footer-nl__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1rem;
  color: var(--footer-text, #fff);
  font-size: 0.82rem;
  outline: none;
  min-width: 0;
}
.footer-nl__input::placeholder { color: var(--footer-muted, rgba(255,255,255,0.3)); }
.footer-nl__btn {
  background: var(--footer-accent, var(--color-accent));
  border: none;
  padding: 0.8rem 1.1rem;
  color: var(--color-accent-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--transition);
  display: flex; align-items: center;
}
.footer-nl__btn:hover { opacity: 0.85; }
.footer-nl__success {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--footer-muted, rgba(255,255,255,0.6));
  font-style: italic;
}

/* Contact */
.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact__item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--footer-muted, rgba(255,255,255,0.45));
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact__item:hover { color: var(--footer-accent, var(--color-accent)); }
.footer-contact__item--wa:hover { color: #25d366; }
.footer-contact__item svg { flex-shrink: 0; opacity: 0.7; }

/* ── Footer bottom ── */
.footer-bottom {
  background: var(--footer-bottom-bg, rgba(0,0,0,0.25));
  border-top: 1px solid var(--footer-border, rgba(255,255,255,0.06));
  padding: 1.5rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom__copy {
  font-size: 0.73rem;
  color: var(--footer-muted, rgba(255,255,255,0.3));
  margin: 0;
}
.footer-bottom__powered {
  font-size: 0.73rem;
  color: var(--footer-muted, rgba(255,255,255,0.3));
  margin: 0;
  display: flex; align-items: center; gap: 0.35rem;
}
.footer-bottom__cse {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--footer-accent, var(--color-accent));
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: opacity var(--transition);
  text-decoration: none;
}
.footer-bottom__cse:hover { opacity: 0.75; }
.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-payment {
  display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center;
}
.footer-payment__icon {
  height: 22px; width: auto;
  border-radius: 3px;
  opacity: 0.65;
}

/* ── Footer language selector ── */
.footer-lang {
  display: flex; align-items: center; gap: 6px;
}
.footer-lang__option {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--footer-link, rgba(240,228,208,0.6));
  text-decoration: none;
  padding: 2px 4px;
  transition: color var(--transition);
  cursor: pointer;
}
.footer-lang__option.is-active {
  color: var(--footer-text, #f0e4d0);
}
.footer-lang__option:hover:not(.is-active) {
  color: var(--footer-accent, #c9a96e);
}
.footer-lang__sep {
  color: var(--footer-muted, rgba(240,228,208,0.3));
  font-size: 0.7rem;
  font-weight: 300;
  user-select: none;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nl   { grid-column: 1 / -1; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Header — dual logo & colour override ── */
.header-logo__img--transparent { display: block; }
.header-logo__img--solid       { display: none;  }

.site-header--transparent:not(.scrolled) .header-logo__text,
.site-header--transparent:not(.scrolled) .header-nav__link,
.site-header--transparent:not(.scrolled) .header-icon {
  color: var(--over-hero-color, #fff);
}
.site-header--transparent:not(.scrolled) .header-inner {
  border-bottom-color: rgba(255,255,255,0.1);
}

/* When scrolled, swap to solid logo */
.site-header.scrolled .header-logo__img--transparent { display: none; }
.site-header.scrolled .header-logo__img--solid       { display: block; }
.site-header--solid   .header-logo__img--transparent { display: none; }
.site-header--solid   .header-logo__img--solid       { display: block; }

/* When only one logo is uploaded, always show it */
.header-logo__img--solid:not(~ .header-logo__img--transparent) { display: block; }

/* ── Collection page improvements ── */
.collection-hero {
  position: relative;
  overflow: hidden;
}
.collection-hero__media {
  height: clamp(220px, 35vw, 400px);
  position: relative;
}
.collection-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.collection-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,10,30,0.25) 0%, rgba(15,10,30,0.65) 100%);
}
.collection-hero__content {
  padding: 2.5rem 0;
}
.collection-hero__content--over {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem var(--container-pad);
  color: #fff;
}
.collection-hero__content--over .overline { color: rgba(255,255,255,0.6); }
.collection-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 0.5rem;
}
.collection-hero__desc { color: var(--color-muted); max-width: 640px; font-size: 0.98rem; }
.collection-hero__content--over .collection-hero__desc { color: rgba(255,255,255,0.75); }

/* Toolbar */
.collection-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
  gap: 1rem; flex-wrap: wrap;
}
.collection-count { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; }
.filter-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.filter-toggle__count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 50%; font-size: 0.6rem; font-weight: 700;
}

/* Active filter pills */
.active-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem; align-items: center;
}
.active-filter-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-primary);
  color: var(--color-primary-text);
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 500;
  text-decoration: none;
  transition: background var(--transition);
}
.active-filter-pill:hover { background: #9b1c1c; }
.active-filter-pill svg { opacity: 0.7; }
.active-filter-clear {
  font-size: 0.72rem; color: var(--color-muted);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color var(--transition);
}
.active-filter-clear:hover { color: var(--color-primary); }

/* Filter checkboxes — custom styled */
.filter-option { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.82rem; padding: 0.25rem 0; }
.filter-option input[type="checkbox"] { display: none; }
.filter-option__check {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  background: transparent;
}
.filter-option input[type="checkbox"]:checked + .filter-option__check {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.filter-option input[type="checkbox"]:checked + .filter-option__check::after {
  content: '';
  display: block;
  width: 9px; height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.filter-option__label { flex: 1; }
.filter-option__count { color: var(--color-muted); font-size: 0.72rem; }
.filter-option--disabled { opacity: 0.4; cursor: not-allowed; }

/* Price range currency symbol */
.price-range-field {
  display: flex; align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.price-range-field__currency {
  padding: 0 0.5rem 0 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.price-range-input {
  border: none; background: transparent;
  padding: 0.5rem 0.65rem 0.5rem 0;
  font-size: 0.82rem; width: 80px;
  outline: none;
}
.price-range-filter__inputs { display: flex; align-items: center; gap: 0.5rem; }
.price-range-sep { color: var(--color-muted); font-size: 0.8rem; }

/* Filter sidebar close btn in head */
.filter-sidebar__head-actions {
  display: flex; align-items: center; gap: 0.75rem;
}
.filter-group__active-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 50%; font-size: 0.6rem; font-weight: 700;
  margin-left: 0.3rem;
}

/* ── Share section ── */
.product-share {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.product-share__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.85rem;
}
.product-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-share__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-bg-text);
  transition: all var(--transition);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.product-share__link:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-primary-text);
  transform: translateY(-2px);
}
.product-share__link--whatsapp:hover {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}
.product-share__copy.copied {
  border-color: var(--color-success);
  background: rgba(45,106,79,0.1);
  color: var(--color-success);
}

/* WhatsApp floating button removed — WhatsApp appears in footer only */

@media (max-width: 899px) {
  .header-inner-mobile--left { grid-template-columns: auto 1fr auto; }
  .header-inner-mobile--left .header-logo { justify-content: flex-start; }
  .header-inner-mobile--center .header-logo { justify-content: center; }
  .header-inner-mobile--center { grid-template-columns: 1fr auto 1fr; }
}

/* ================================================================
   Settings-driven dynamic rules
   ================================================================ */

/* Heading case from theme setting */
h1, h2, h3, h4, h5, h6,
.hero__title, .collection-hero__title, .product-title,
.footer-brand__wordmark, .header-logo__text {
  text-transform: var(--heading-case, none);
}

/* Border radius — override all hardcoded values with CSS vars */
.btn                     { border-radius: var(--radius); }
.btn--icon               { border-radius: 50%; }
.product-card__media,
.collection-card,
.testimonial-card,
.feature-badge,
.cart-summary,
.filter-sidebar,
.collection-hero__media  { border-radius: var(--radius-lg); }
.form-input,
.sort-select,
.price-range-field,
.product-gallery__thumb,
.option-btn,
.article-card__media     { border-radius: var(--radius); }
.product-gallery__main,
.size-guide-modal__panel,
.cart-drawer             { border-radius: 0; }
.image-with-text__image,
.lookbook-item,
.brand-story__media      { border-radius: var(--radius-lg); }
.active-filter-pill,
.swatch-label,
.badge,
.filter-toggle__count,
.header-cart__count      { border-radius: var(--radius-full, 999px); }

/* Footer social icon label (visible name below icon on larger cards) */
.footer-social--large .footer-social__link {
  flex-direction: column;
  gap: 0.4rem;
  width: auto;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  height: auto;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================================================
   COLOR SCHEME SYSTEM — section-level overrides
   ================================================================ */

/* Every section with a scheme gets proper vertical padding */
[class*="color-scheme-"] {
  background-color: var(--scheme-bg);
  color: var(--scheme-text);
}
[class*="color-scheme-"].section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

/* Headings & text inside schemes */
[class*="color-scheme-"] h1,
[class*="color-scheme-"] h2,
[class*="color-scheme-"] h3,
[class*="color-scheme-"] h4,
[class*="color-scheme-"] h5,
[class*="color-scheme-"] h6 { color: var(--scheme-heading); }

[class*="color-scheme-"] .overline        { color: var(--scheme-accent); }
[class*="color-scheme-"] .section-head__sub,
[class*="color-scheme-"] .hero__sub,
[class*="color-scheme-"] p.sub            { color: var(--scheme-text); opacity: 0.72; }
[class*="color-scheme-"] .gold-divider    { background: var(--scheme-accent); }

/* Buttons inside schemes */
[class*="color-scheme-"] .btn--primary {
  background: var(--scheme-heading);
  color: var(--scheme-bg);
  border-color: var(--scheme-heading);
}
[class*="color-scheme-"] .btn--primary:hover {
  background: var(--scheme-accent);
  color: var(--scheme-bg);
  border-color: var(--scheme-accent);
}
[class*="color-scheme-"] .btn--outline {
  color: var(--scheme-heading);
  border-color: var(--scheme-heading);
}
[class*="color-scheme-"] .btn--outline:hover {
  background: var(--scheme-heading);
  color: var(--scheme-bg);
}
[class*="color-scheme-"] .btn--ghost { color: var(--scheme-heading); }
[class*="color-scheme-"] .btn--ghost:hover { color: var(--scheme-accent); }

/* Product cards inside schemes */
[class*="color-scheme-"] .product-card__title a { color: var(--scheme-heading); }
[class*="color-scheme-"] .product-card__title a:hover { color: var(--scheme-accent); }
[class*="color-scheme-"] .price__regular,
[class*="color-scheme-"] .price__sale     { color: var(--scheme-text); }
[class*="color-scheme-"] .product-card--elevated,
[class*="color-scheme-"] .product-card--bordered {
  background: var(--scheme-bg);
  border-color: var(--scheme-border);
}

/* Testimonial cards inside schemes */
[class*="color-scheme-"] .testimonial-card {
  background: var(--scheme-bg);
  border-color: var(--scheme-border);
  color: var(--scheme-text);
}
[class*="color-scheme-"] .testimonial-stars { color: var(--scheme-accent); }
[class*="color-scheme-"] .testimonial-text  { color: var(--scheme-text); }
[class*="color-scheme-"] .testimonial-author{ color: var(--scheme-heading); }

/* Feature badges inside schemes */
[class*="color-scheme-"] .feature-badge {
  background: var(--scheme-bg);
  border-color: var(--scheme-border);
}
[class*="color-scheme-"] .feature-badge__icon { background: var(--scheme-bg); filter: brightness(0.93); }
[class*="color-scheme-"] .feature-badge__icon svg { stroke: var(--scheme-accent); }
[class*="color-scheme-"] .feature-badge__title { color: var(--scheme-heading); }
[class*="color-scheme-"] .feature-badge__text  { color: var(--scheme-text); opacity: 0.75; }

/* Dividers and borders inside schemes */
[class*="color-scheme-"] hr,
[class*="color-scheme-"] .footer-accent-line { background: var(--scheme-border); }

/* Newsletter inside dark scheme */
[class*="color-scheme-"] .footer-nl__input,
[class*="color-scheme-"] .newsletter-input { color: var(--scheme-text); }

/* ================================================================
   COLLECTION PAGE
   ================================================================ */
.collection-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.collection-hero__media {
  height: clamp(200px, 32vw, 400px);
  position: relative;
}
.collection-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.collection-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,10,30,.25) 0%, rgba(15,10,30,.65) 100%);
}
.collection-hero__content { padding: 2rem 0 0; }
.collection-hero__content--over {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem var(--container-pad);
  color: #fff;
}
.collection-hero__content--over .overline { color: rgba(255,255,255,.65); }
.collection-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: .5rem;
}
.collection-hero__content--over .collection-hero__title { color: #fff; }
.collection-hero__desc { color: var(--color-muted); font-size: .98rem; max-width: 640px; }
.collection-hero__content--over .collection-hero__desc { color: rgba(255,255,255,.75); }

.collection-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap;
}
.collection-toolbar__left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.collection-count { font-size: .8rem; color: var(--color-muted); font-weight: 500; }
.filter-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.filter-toggle__count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; background: var(--color-accent);
  color: var(--color-accent-text); border-radius: 50%;
  font-size: .6rem; font-weight: 700;
}
.sort-select {
  padding: .55rem 2.25rem .55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 4px);
  font-size: .78rem; background: var(--color-surface);
  color: var(--color-bg-text); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
}

/* Active filter pills */
.active-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; align-items: center; }
.active-filter-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .85rem; background: var(--color-primary);
  color: var(--color-primary-text); border-radius: 999px;
  font-size: .72rem; font-weight: 500; text-decoration: none;
  transition: background .25s;
}
.active-filter-pill:hover { background: #9b1c1c; }
.active-filter-clear {
  font-size: .72rem; color: var(--color-muted);
  text-decoration: underline; text-underline-offset: 2px; transition: color .25s;
}
.active-filter-clear:hover { color: var(--color-primary); }

/* Collection body layout */
.collection-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem; align-items: start;
}
.collection-body--no-filters { grid-template-columns: 1fr; }

/* Filter sidebar */
.filter-sidebar {
  position: sticky; top: calc(var(--header-height, 72px) + 1.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 8px);
  padding: 1.5rem;
  max-height: calc(100vh - var(--header-height, 72px) - 3rem);
  overflow-y: auto; scrollbar-width: thin;
}
.filter-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.filter-sidebar__title { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.filter-sidebar__head-actions { display: flex; align-items: center; gap: .75rem; }
.filter-clear { font-size: .72rem; color: var(--color-muted); text-decoration: underline; }
.filter-group { margin-bottom: 1rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; }
.filter-group:last-of-type { border-bottom: none; }
.filter-group__title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .4rem 0; cursor: pointer; list-style: none;
}
.filter-group__title::-webkit-details-marker { display: none; }
.filter-group__caret { transition: transform .25s; flex-shrink: 0; }
details[open] .filter-group__caret { transform: rotate(180deg); }
.filter-group__active-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; background: var(--color-accent);
  color: var(--color-accent-text); border-radius: 50%;
  font-size: .6rem; font-weight: 700; margin-left: .35rem;
}
.filter-group__options { padding: .6rem 0 .2rem; display: flex; flex-direction: column; gap: .4rem; }

/* Custom checkbox */
.filter-option { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .82rem; padding: .15rem 0; }
.filter-option input[type="checkbox"] { display: none; }
.filter-option__check {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid var(--color-border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.filter-option input[type="checkbox"]:checked + .filter-option__check {
  background: var(--color-primary); border-color: var(--color-primary);
}
.filter-option input[type="checkbox"]:checked + .filter-option__check::after {
  content: ''; display: block; width: 9px; height: 5px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(1px,-1px);
}
.filter-option__label { flex: 1; }
.filter-option__count { color: var(--color-muted); font-size: .72rem; }
.filter-option--disabled { opacity: .4; cursor: not-allowed; }

/* Price range */
.price-range-filter__inputs { display: flex; align-items: center; gap: .5rem; }
.price-range-field {
  display: flex; align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 4px); overflow: hidden; background: var(--color-surface);
}
.price-range-field__currency { padding: 0 .4rem 0 .7rem; font-size: .8rem; color: var(--color-muted); }
.price-range-input { border: none; background: transparent; padding: .5rem .5rem .5rem 0; font-size: .82rem; width: 72px; outline: none; -moz-appearance: textfield; }
.price-range-input::-webkit-outer-spin-button,
.price-range-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.price-range-sep { color: var(--color-muted); font-size: .8rem; }

/* Empty state */
.collection-empty {
  text-align: center; padding: 5rem 1rem; color: var(--color-muted);
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.collection-empty svg { opacity: .2; }
.collection-empty h2 { color: var(--color-bg-text); }

/* Mobile sidebar */
@media (max-width: 900px) {
  .collection-body { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed; top: 0; left: -100%; bottom: 0; z-index: 400;
    border-radius: 0 var(--radius-lg, 14px) var(--radius-lg, 14px) 0;
    max-width: 300px; width: 88%; max-height: 100vh;
    transition: left .35s cubic-bezier(.25,.46,.45,.94);
  }
  .filter-sidebar.is-open { left: 0; }
}

/* Mobile grid columns (2-col by default) */
@media (max-width: 749px) {
  .product-grid--3-col,
  .product-grid--4-col,
  .product-grid--5-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid--2-col { grid-template-columns: repeat(2, 1fr); }
}

/* Collections grid (list-collections page) */
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 749px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .collections-grid { grid-template-columns: 1fr; } }

/* Collection card */
.collection-card {
  display: block; position: relative;
  border-radius: var(--radius-lg, 14px); overflow: hidden;
  aspect-ratio: 3/4; text-decoration: none; color: inherit;
  background: var(--color-secondary);
}
.collection-card__media { position: absolute; inset: 0; overflow: hidden; }
.collection-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.collection-card:hover .collection-card__img { transform: scale(1.06); }
.collection-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,10,30,.82) 0%, rgba(15,10,30,.12) 60%, transparent 100%); }
.collection-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem; color: #fff; }
.collection-card__title { font-family: var(--font-heading); font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 400; margin-bottom: .3rem; color: #fff; }
.collection-card__desc { font-size: .8rem; opacity: .7; margin-bottom: .75rem; }
.collection-card__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: .1rem; opacity: .8;
  transition: opacity .25s, border-color .25s;
}
.collection-card__cta::after { content: '→'; }
.collection-card:hover .collection-card__cta { opacity: 1; border-color: rgba(255,255,255,.9); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .5rem;
  border: 1px solid var(--color-border); border-radius: var(--radius, 4px);
  font-size: .82rem; color: var(--color-bg-text); text-decoration: none; transition: all .25s;
}
.pagination__link:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-text); }
.pagination__link--current { background: var(--color-primary); color: var(--color-primary-text); border-color: var(--color-primary); font-weight: 700; }
.pagination__ellipsis { padding: 0 .35rem; color: var(--color-muted); }


/* ═══════════════════════════════════════════════
   LUMIERE v7 ENHANCEMENTS
   ═══════════════════════════════════════════════ */

/* ── Footer legal nav row ── */
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--footer-border, rgba(255,255,255,0.08));
  margin-bottom: 0.25rem;
}
.footer-legal-nav__link {
  font-size: 0.75rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
  text-decoration: none;
  color: inherit;
}
.footer-legal-nav__link:hover { opacity: 1; }
.footer-legal-nav__sep { opacity: 0.3; font-size: 0.7rem; }

/* ── Footer layout variants ── */
/* Centered layout */
.footer-layout--centered .footer-grid {
  justify-items: center;
  text-align: center;
}
.footer-layout--centered .footer-brand {
  grid-column: 1 / -1;
  align-items: center;
  text-align: center;
}
.footer-layout--centered .footer-brand__logo { justify-content: center; }
.footer-layout--centered .footer-social { justify-content: center; }
.footer-layout--centered .footer-col { text-align: center; }
.footer-layout--centered .footer-col__line { margin-left: auto; margin-right: auto; }

/* Minimal layout — single horizontal row */
.footer-layout--minimal .footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.footer-layout--minimal .footer-brand { flex: 1 1 220px; }
.footer-layout--minimal .footer-col { flex: 0 1 auto; }
.footer-layout--minimal .footer-nl { flex: 1 1 260px; }

/* ── contact address item ── */
.footer-contact__item--address { cursor: default; }

/* ── Product page: ensure info panel scrolls independently ── */
@media (min-width: 900px) {
  .product-info {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    max-height: calc(100vh - var(--header-height) - 3rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
  }
  .product-info::-webkit-scrollbar { width: 4px; }
  .product-info::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }
}

/* ── Product gallery zoom cursor ── */
.product-gallery__main[data-zoom] { cursor: zoom-in; }

/* ── SEO / favicon tip in theme editor ── */

/* ================================================================
   LUMIÈRE v8 — Cart page redesign
   ================================================================ */

.cart-page.section { padding-top: 3rem; padding-bottom: 5rem; }
.cart-page__form {}
.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}
.cart-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
}

/* ── Items ── */
.cart-page__item-list { display: flex; flex-direction: column; }
.cart-page__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-page__item:last-child { border-bottom: none; }
.cart-page__item-image-link { display: block; flex-shrink: 0; }
.cart-page__item-img {
  width: 110px; height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.cart-page__item-img--blank {
  width: 110px; height: 140px;
  background: var(--color-secondary);
  border-radius: var(--radius);
}
.cart-page__item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
.cart-page__item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.cart-page__item-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.35rem;
}
.cart-page__item-title a { color: inherit; text-decoration: none; }
.cart-page__item-title a:hover { color: var(--color-accent); }
.cart-page__item-variant { font-size: 0.78rem; color: var(--color-muted); margin: 0.15rem 0 0; }
.cart-page__item-discount { font-size: 0.75rem; color: #2d6a4f; margin: 0.2rem 0 0; }
.cart-page__item-price { font-size: 0.9rem; font-weight: 600; white-space: nowrap; text-align: right; }
.cart-page__item-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-page__remove {
  background: none; border: none; cursor: pointer;
  padding: 0.35rem;
  color: var(--color-muted);
  transition: color var(--transition);
  display: flex; align-items: center;
}
.cart-page__remove:hover { color: #9b1c1c; }

/* ── Summary panel ── */
.cart-page__summary {
  position: sticky;
  top: calc(var(--header-height, 72px) + 2rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cart-page__summary-head {
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: 1.1rem 1.75rem;
}
.cart-page__summary-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}
.cart-page__summary-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}
.cart-page__tax-note {
  font-size: 0.73rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}
.cart-page__note-section {
  margin: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.cart-page__note-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.6rem;
}
.cart-page__note-input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--color-surface-text);
  background: var(--color-surface);
  resize: vertical;
  min-height: 90px;
  transition: border-color var(--transition);
}
.cart-page__note-input:focus { outline: none; border-color: var(--color-accent); }
.cart-page__note-input::placeholder { color: var(--color-muted); opacity: 0.7; }
.cart-page__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-page__checkout-btn {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}
.cart-page__continue {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 1.25rem;
  transition: color var(--transition);
  text-decoration: none;
}
.cart-page__continue:hover { color: var(--color-accent); }

/* ── Mobile cart ── */
@media (max-width: 900px) {
  .cart-page__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cart-page__summary { position: static; }
  .cart-page__item { grid-template-columns: 90px 1fr; gap: 1rem; }
  .cart-page__item-img, .cart-page__item-img--blank { width: 90px; height: 115px; }
}

/* ================================================================
   LUMIÈRE v8 — Product page enhancements
   ================================================================ */

/* ── Dropdown variant picker ── */
.product-option__select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.product-option__select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-surface-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-option__select:focus { outline: none; border-color: var(--color-accent); }
.product-option__select-icon {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-muted);
}

/* ── Image swatches ── */
.product-option__image-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.img-swatch-label {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-secondary);
  opacity: 0.7;
}
.img-swatch-label img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-swatch-label.is-selected { border-color: var(--color-accent); opacity: 1; }
.img-swatch-label.is-unavailable { opacity: 0.35; }
.img-swatch-label__fallback { font-size: 0.7rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; }

/* ── Collapsible tab block ── */
.product-tab {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: -1px;
}
.product-tab__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
  gap: 0.75rem;
}
.product-tab__trigger::-webkit-details-marker { display: none; }
.product-tab__icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] .product-tab__icon { transform: rotate(180deg); }
.product-tab__body {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-muted);
}

/* ── Description collapsible ── */
.product-desc-collapse { border: none; }
.product-desc-collapse__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  list-style: none;
  gap: 0.75rem;
}
.product-desc-collapse__trigger::-webkit-details-marker { display: none; }
.product-desc-collapse__icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] .product-desc-collapse__icon { transform: rotate(180deg); }
.product-desc-collapse__body { padding-bottom: 0.5rem; }

/* ── Text block ── */
.product-text-block { line-height: 1.7; }
.product-text-block p:last-child { margin-bottom: 0; }

/* ── Image block ── */
.product-image-block img { display: block; border-radius: var(--radius); }

/* ── Divider ── */
.product-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-left: 0; margin-right: 0;
}

/* ── Custom liquid block ── */
.product-custom-liquid {}

/* ── Enhanced swatch label name tooltip ── */
.swatch-label { position: relative; }
.swatch-label:hover .swatch-label__name { display: block; }
.swatch-label__name {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-primary-text);
  font-size: 0.68rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

/* ── Share block improvements ── */
.product-share { display: flex; align-items: center; gap: 1rem; }
.product-share__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); }
.product-share__links { display: flex; gap: 0.5rem; }
.product-share__link {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: color var(--transition), border-color var(--transition);
}
.product-share__link:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ── Product info sticky on desktop ── */
@media (min-width: 900px) {
  .product-info {
    position: sticky;
    top: calc(var(--header-height, 72px) + 2rem);
    max-height: calc(100vh - var(--header-height, 72px) - 4rem);
    overflow-y: auto;
    scrollbar-width: none;
    padding-right: 4px;
  }
  .product-info::-webkit-scrollbar { display: none; }
}

/* ── Mobile product page ── */
@media (max-width: 899px) {
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-layout--thumbnails-left { grid-template-columns: 1fr; }
  .product-layout--thumbnails-left .product-gallery { grid-template-columns: 1fr; }
  .product-layout--thumbnails-left .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
  }
  .product-gallery__main { min-height: 0; }
  .product-gallery__image { aspect-ratio: 1/1; }
  .product-info { position: static; max-height: none; overflow-y: visible; }
}

/* ================================================================
   COLLECTION PAGE — main-collection.liquid
   ================================================================ */

/* ── Collection hero ── */
.collection-hero { margin-bottom: 3rem; }
.collection-hero__media {
  position: relative; height: 340px; overflow: hidden;
  border-radius: var(--radius-lg); margin-bottom: 2rem;
}
.collection-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-hero__content {}
.collection-hero__content--over-image {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.collection-hero__content--over-image .collection-hero__title { color: #fff; }
.collection-hero__content--over-image .collection-hero__desc { color: rgba(255,255,255,0.8); }
.collection-hero__title { font-size: clamp(1.8rem,3vw,2.8rem); font-family: var(--font-heading); font-weight: var(--font-heading-weight); text-transform: var(--heading-case); margin-bottom: 0.75rem; }
.collection-hero__desc { color: var(--color-muted); font-size: 1rem; max-width: 640px; line-height: 1.7; }

/* ── Toolbar ── */
.collection-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  padding: 0.85rem 0; margin-bottom: 1rem;
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
}
.filter-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--color-accent); color: var(--color-accent-text);
  border-radius: 50%; font-size: 0.65rem; font-weight: 700; margin-left: 0.4rem;
}
.collection-count { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; }
.collection-sort { position: relative; display: flex; align-items: center; }
.sort-select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 0.45rem 2.25rem 0.45rem 0.85rem;
  font-size: 0.82rem; font-family: var(--font-body); color: var(--color-bg-text);
  cursor: pointer; transition: border-color var(--transition);
}
.sort-select:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; border-color: var(--color-accent); }
.sort-select__icon { position: absolute; right: 0.65rem; pointer-events: none; color: var(--color-muted); }

/* ── Active filter pills ── */
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.active-filter-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; font-size: 0.75rem; font-weight: 500;
  background: var(--color-secondary); border: 1px solid var(--color-border);
  border-radius: 999px; color: var(--color-bg-text);
  text-decoration: none; transition: background var(--transition), border-color var(--transition);
}
.active-filter-pill:hover { background: var(--color-border); }
.active-filter-pill--clear { background: var(--color-primary); color: var(--color-primary-text); border-color: var(--color-primary); }
.active-filter-pill--clear:hover { opacity: 0.85; }
.active-filter-pill svg { flex-shrink: 0; }

/* ── Collection layout (sidebar + grid) ── */
.collection-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) {
  .collection-layout--has-sidebar { grid-template-columns: 260px 1fr; }
}

/* ── Filter sidebar ── */
.filter-sidebar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.filter-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.filter-sidebar__title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.filter-sidebar__close { display: none; }
.filter-sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.35); z-index: 299;
  opacity: 0; transition: opacity 0.3s ease;
}
.filter-sidebar-overlay.is-visible { opacity: 1; }

/* Mobile filter drawer */
@media (max-width: 899px) {
  .filter-sidebar {
    position: fixed; top: 0; left: -100%; bottom: 0; width: 85vw; max-width: 340px;
    z-index: 300; overflow-y: auto; border-radius: 0;
    border: none; border-right: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transition: left 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .filter-sidebar.is-open { left: 0; }
  .filter-sidebar__close { display: flex; }
  .filter-sidebar-overlay { display: block; }
}

/* ── Filter groups ── */
.filter-group { margin-bottom: 0; border-bottom: 1px solid var(--color-border); }
.filter-group:last-child { border-bottom: none; }
.filter-details { padding: 0.85rem 0; }
.filter-details__summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
}
.filter-details__summary::-webkit-details-marker { display: none; }
.filter-details__icon { flex-shrink: 0; color: var(--color-muted); transition: transform var(--transition); }
details[open] .filter-details__icon { transform: rotate(180deg); }
.filter-details__body { padding-top: 0.75rem; }

.filter-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.filter-checkbox-label {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; font-size: 0.82rem; line-height: 1.4;
  padding: 0.2rem 0;
}
.filter-checkbox-label:has(input:disabled) { opacity: 0.4; cursor: not-allowed; }
.filter-checkbox__box {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid var(--color-border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface); transition: background var(--transition), border-color var(--transition);
}
.filter-checkbox-label.is-active .filter-checkbox__box,
.filter-checkbox-label input:checked ~ .filter-checkbox__box {
  background: var(--color-primary); border-color: var(--color-primary);
}
.filter-checkbox__check { display: none; color: var(--color-primary-text); }
.filter-checkbox-label.is-active .filter-checkbox__check,
.filter-checkbox-label input:checked ~ .filter-checkbox__box .filter-checkbox__check { display: block; }
.filter-checkbox__label { flex: 1; }
.filter-checkbox__count { font-size: 0.72rem; color: var(--color-muted); }

/* ── Price range filter ── */
.filter-price-range {}
.filter-price-inputs { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.filter-price-input-wrap {
  position: relative; display: flex; align-items: center;
  border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden;
  flex: 1;
}
.filter-price-input-prefix {
  padding: 0.35rem 0.5rem; font-size: 0.78rem; color: var(--color-muted);
  background: var(--color-secondary); border-right: 1px solid var(--color-border);
  flex-shrink: 0;
}
.filter-price-input {
  width: 100%; padding: 0.35rem 0.5rem; font-size: 0.82rem;
  background: transparent; border: none; outline: none; color: var(--color-bg-text);
}
.filter-price-input::-webkit-inner-spin-button,
.filter-price-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.filter-price-sep { font-size: 0.8rem; color: var(--color-muted); flex-shrink: 0; }
.filter-price-submit { width: 100%; }

/* ── Product grid (ul reset) ── */
.product-grid { list-style: none; padding: 0; margin: 0; }
.product-grid__item {}

/* ── Mobile column classes ── */
@media (max-width: 599px) {
  .product-grid--1-col-mobile { grid-template-columns: 1fr; }
  .product-grid--2-col-mobile { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── Pagination ── */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.pagination__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none;
}
.pagination__pages { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.pagination__page {
  min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; border-radius: var(--radius);
  text-decoration: none; color: var(--color-bg-text);
  border: 1px solid transparent; transition: border-color var(--transition), background var(--transition);
}
.pagination__page:hover { border-color: var(--color-border); }
.pagination__page--current {
  background: var(--color-primary); color: var(--color-primary-text);
  border-color: var(--color-primary); font-weight: 600; pointer-events: none;
}
.pagination__ellipsis { color: var(--color-muted); font-size: 0.82rem; padding: 0 0.25rem; }

/* ── Collection empty state ── */
.collection-empty {
  text-align: center; padding: 4rem 1rem;
  grid-column: 1 / -1;
}
.collection-empty__text { color: var(--color-muted); font-size: 1rem; margin-bottom: 1.5rem; }

/* ── Grid skeleton loading ── */
.grid-skeleton { display: grid; gap: var(--grid-gap); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 899px) { .grid-skeleton { grid-template-columns: repeat(2, 1fr); } }
.skeleton-card { border-radius: var(--radius-md); overflow: hidden; }
.skeleton-img {
  aspect-ratio: 3/4; background: linear-gradient(90deg, var(--color-secondary) 25%, var(--color-border) 50%, var(--color-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-text {
  height: 14px; margin: 0.75rem 0 0.4rem; border-radius: 4px;
  background: linear-gradient(90deg, var(--color-secondary) 25%, var(--color-border) 50%, var(--color-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-text--short { width: 55%; }

/* ================================================================
   EDITORIAL COLLECTION TEMPLATE
   Unique luxury layout — full-bleed hero + view toggle + mid-banner
   ================================================================ */

/* ── Hero ── */
.collection-editorial__hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: var(--section-spacing, 80px);
  background: var(--color-primary);
}
.collection-editorial__hero--has-image {
  min-height: 520px;
}
.collection-editorial__hero-media {
  position: absolute;
  inset: 0;
}
.collection-editorial__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.collection-editorial__hero:hover .collection-editorial__hero-img {
  transform: scale(1.03);
}
.collection-editorial__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.45) 45%,
    rgba(26, 26, 46, 0.15) 100%
  );
}
.collection-editorial__hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  width: 100%;
}
.collection-editorial__hero-content {
  max-width: 680px;
}
.collection-editorial__hero-content .overline {
  color: var(--color-accent);
  display: block;
  margin-bottom: 1rem;
}
.collection-editorial__divider {
  margin: 0.9rem 0 1.5rem;
  width: 56px;
}
.collection-editorial__title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.collection-editorial__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.collection-editorial__count {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* ── Toolbar ── */
.collection-editorial__toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}
.collection-editorial__toolbar-start {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  flex-wrap: wrap;
}
.collection-editorial__toolbar-end {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ── View toggle ── */
.view-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.view-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--color-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.view-toggle__btn:hover,
.view-toggle__btn.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

/* ── Filter panel (horizontal drop-down) ── */
.editorial-filter-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0;
}
.editorial-filter-panel.is-open {
  grid-template-rows: 1fr;
  margin-bottom: 2rem;
}
.editorial-filter-panel__groups {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.editorial-filter-group {
  flex: 1;
  min-width: 160px;
  border-right: 1px solid var(--color-border);
}
.editorial-filter-group:last-child {
  border-right: none;
}
.editorial-filter-details__body {
  padding: 0.75rem 1rem 1rem;
  background: var(--color-secondary);
}
.editorial-filter-panel__apply {
  margin-top: 1rem;
}

/* ── Product grid — editorial variant ── */
.product-grid--editorial {
  display: grid;
  gap: var(--grid-gap);
}
.product-grid--editorial.product-grid--3-col {
  grid-template-columns: repeat(3, 1fr);
}
.product-grid--editorial.product-grid--4-col {
  grid-template-columns: repeat(4, 1fr);
}
.product-grid--editorial.product-grid--2-col {
  grid-template-columns: repeat(2, 1fr);
}

/* Featured first-card in each double-row group spans 2 rows */
@media (min-width: 900px) {
  .product-grid--editorial .product-grid__item--featured {
    grid-row: span 2;
  }
  .product-grid--editorial .product-grid__item--featured .product-card__media {
    aspect-ratio: auto;
    height: 100%;
  }
  .product-grid--editorial .product-grid__item--featured .product-card__img--primary {
    height: 100%;
    object-fit: cover;
  }
}

/* Full-span mid-banner ── */
.product-grid__item--full {
  grid-column: 1 / -1;
}

/* ── List view ── */
.product-grid--list-view {
  grid-template-columns: 1fr !important;
}
.product-grid--list-view .product-grid__item--featured {
  grid-row: span 1;
}
.product-grid--list-view .product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.product-grid--list-view .product-card__media {
  aspect-ratio: 3 / 4;
}
.product-grid--list-view .product-card__info {
  padding-top: 0.5rem;
}
.product-grid--list-view .product-card__quick-add {
  position: static;
  opacity: 1;
  transform: none;
  margin-top: 1.25rem;
  display: block;
}
.product-grid--list-view .product-card__wishlist,
.product-grid--list-view .wishlist-btn {
  top: 0.5rem;
}

/* ── Mid-collection editorial banner ── */
.collection-editorial__mid-banner {
  list-style: none;
}
.collection-mid-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 3rem 2rem;
}
.collection-mid-banner__media {
  position: absolute;
  inset: 0;
}
.collection-mid-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-mid-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.62);
}
.collection-mid-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.collection-mid-banner__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.collection-mid-banner__text {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.collection-mid-banner__btn {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.collection-mid-banner__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.collection-mid-banner .overline {
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .collection-editorial__hero { min-height: 380px; }
}
@media (max-width: 899px) {
  .collection-editorial__hero { min-height: 320px; }
  .collection-editorial__hero-content { max-width: 100%; }
  .product-grid--editorial.product-grid--3-col,
  .product-grid--editorial.product-grid--4-col {
    grid-template-columns: repeat(var(--cols-mobile, 2), 1fr);
  }
  .product-grid--list-view .product-card {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
  }
  .editorial-filter-group { min-width: 120px; }
}
@media (max-width: 599px) {
  .collection-editorial__toolbar { gap: 0.5rem; }
  .product-grid--editorial.product-grid--2-col-mobile {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid--editorial.product-grid--1-col-mobile {
    grid-template-columns: 1fr;
  }
  .collection-mid-banner { min-height: 240px; padding: 2rem 1.25rem; }
  .product-grid--list-view .product-card {
    grid-template-columns: 100px 1fr;
    gap: 0.75rem;
  }
}
@keyframes shimmer { to { background-position: -200% 0; } }
