/** Shopify CDN: Minification failed

Line 883:0 Unexpected "}"

**/
/* ============================================================
   ROSEMONT SKIN RITUAL — Thème Shopify Custom
   Design : Cabinet de soin parisien · Luxe botanique · Nuit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:      20, 12%, 8%;
  --cream:    38, 28%, 88%;
  --ochre:    28, 45%, 62%;
  --terra:    340, 18%, 52%;
  --muted:    20, 8%, 14%;

  --bg:       hsl(var(--ink));
  --fg:       hsl(var(--cream));
  --accent:   hsl(var(--ochre));
  --accent2:  hsl(var(--terra));
  --card-bg:  hsl(20, 10%, 11%);
  --border:   hsla(38, 28%, 88%, 0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --gutter:   clamp(20px, 4.2vw, 64px);
  --max:      1440px;
  --radius:   12px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Typography ──────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

/* ── Liquid Glass ────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  position: relative;
}
.glass-strong {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.glass::before, .glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

/* ── Pill Badge ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.7);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.badge--accent { color: var(--accent); border-color: hsla(var(--ochre), 0.4); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: hsl(var(--ink));
}
.btn--primary:hover { background: hsla(var(--ochre), 0.85); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid hsla(var(--cream), 0.3);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 10vw, 140px); }
.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header .badge { margin-bottom: 20px; }

/* ── Gradient fades ──────────────────────────────────────── */
.fade-top    { background: linear-gradient(to top,    transparent, var(--bg)); }
.fade-bottom { background: linear-gradient(to bottom, transparent, var(--bg)); }

/* ── Noise overlay ───────────────────────────────────────── */
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes marquee     { from { transform: translateX(0) }    to { transform: translateX(-50%) } }
@keyframes marquee-rev { from { transform: translateX(-50%) } to { transform: translateX(0) } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-dot { 0%,100% { opacity: 1 } 50% { opacity: 0.4 } }

.anim-fade-up { animation: fadeUp 0.8s var(--ease-out) both; }
.anim-fade-up-1 { animation: fadeUp 0.8s 0.1s var(--ease-out) both; }
.anim-fade-up-2 { animation: fadeUp 0.8s 0.25s var(--ease-out) both; }
.anim-fade-up-3 { animation: fadeUp 0.8s 0.4s var(--ease-out) both; }
.anim-fade-up-4 { animation: fadeUp 0.8s 0.55s var(--ease-out) both; }

/* Intersection observer reveal */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(4px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1200px, calc(100vw - 32px));
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: rgba(20,14,10,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  transition: padding 0.3s, top 0.3s;
}
.navbar.scrolled { top: 8px; }
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.navbar__brand img { height: 28px; width: auto; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__nav a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: hsla(var(--cream), 0.7);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.navbar__nav a:hover, .navbar__nav a.active {
  color: var(--fg);
  background: rgba(255,255,255,0.06);
}
.navbar__actions { display: flex; align-items: center; gap: 8px; }
.navbar__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg);
  transition: background 0.2s;
}
.navbar__cart:hover { background: rgba(255,255,255,0.06); }
.navbar__cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--accent);
  color: hsl(var(--ink));
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.navbar__cart-count.visible { display: flex; }
.navbar__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--fg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: hsla(var(--ink), 0.97);
  backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 7vw, 56px);
  color: hsla(var(--cream), 0.7);
  transition: color 0.2s;
  padding: 8px 24px;
}
.mobile-nav a:hover { color: var(--fg); }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__actions .btn { display: none; }
  .navbar__mobile-toggle { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, transparent 30%, hsla(var(--ink), 0.7) 100%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero__placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 60% 80% at 60% 40%, hsla(var(--ochre), 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, hsla(var(--terra), 0.1) 0%, transparent 50%),
    hsl(var(--ink));
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: var(--gutter);
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 4px 4px 4px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  color: hsla(var(--cream), 0.75);
}
.hero__eyebrow-tag {
  background: var(--accent);
  color: hsl(var(--ink));
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(52px, 9vw, 130px);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: hsla(var(--cream), 0.65);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.hero__trust-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: var(--gutter);
}
.hero__trust-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: hsla(var(--cream), 0.5);
  white-space: nowrap;
}

/* ── FEATURES BENTO ──────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.bento__card:hover { transform: translateY(-4px); border-color: hsla(var(--ochre), 0.3); }
.bento__card--tall { grid-row: span 2; }
.bento__card--wide { grid-column: span 2; }
.bento__icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.bento__icon svg { width: 20px; height: 20px; }
.bento__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.bento__body {
  font-size: 13px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  line-height: 1.65;
  max-width: 38ch;
}
.bento__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 20px; height: 20px;
  color: hsla(var(--cream), 0.2);
  transition: color 0.2s;
}
.bento__card:hover .bento__arrow { color: hsla(var(--cream), 0.6); }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--tall, .bento__card--wide { grid-row: span 1; grid-column: span 1; }
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.why-card__icon svg { width: 20px; height: 20px; }
.why-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}
.why-card__body {
  font-size: 13px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  line-height: 1.65;
}
.why-card__line {
  margin-top: auto;
  height: 1px;
  width: 40px;
  background: linear-gradient(to right, var(--accent), transparent);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.process-step { padding: clamp(24px, 4vw, 48px); }
.process-step + .process-step {
  border-left: 1px solid var(--border);
}
.process-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 300;
  color: hsla(var(--ochre), 0.2);
  line-height: 1;
  margin-bottom: -12px;
}
.process-step__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
}
.process-step__body {
  font-size: 14px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  line-height: 1.65;
  max-width: 30ch;
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step + .process-step { border-left: none; border-top: 1px solid var(--border); }
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, hsla(var(--ochre), 0.06) 0%, transparent 70%),
    hsl(var(--ink));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.stat-item {
  background: var(--card-bg);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-item:first-child { border-radius: 24px 0 0 24px; }
.stat-item:last-child  { border-radius: 0 24px 24px 0; }
.stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.45);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:first-child, .stat-item:last-child { border-radius: 0; }
  .stat-item:nth-child(1) { border-radius: 24px 0 0 0; }
  .stat-item:nth-child(2) { border-radius: 0 24px 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 0 0 24px; }
  .stat-item:nth-child(4) { border-radius: 0 0 24px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-radius: 0 !important; }
  .stat-item:first-child { border-radius: 24px 24px 0 0 !important; }
  .stat-item:last-child  { border-radius: 0 0 24px 24px !important; }
}

/* ── PRODUCT BLOCK ───────────────────────────────────────── */
.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.product-visual {
  position: relative;
}
.product-visual__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, hsla(var(--ochre), 0.08) 0%, transparent 70%),
    var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.product-visual__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: hsla(var(--cream), 0.3);
}
.product-visual__placeholder svg { width: 64px; height: 64px; }
.product-visual__placeholder span { font-family: var(--font-display); font-style: italic; font-size: 16px; }
.product-visual__badge {
  position: absolute;
  top: -12px; right: -12px;
  padding: 10px 16px;
  border-radius: 16px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.product-visual__badge-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--fg);
  display: block;
}
.product-visual__badge-sub {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.45);
}
.product-info__title {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}
.product-info__desc {
  font-size: 15px;
  font-weight: 300;
  color: hsla(var(--cream), 0.6);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 28px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.product-price__current {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
}
.product-price__compare {
  font-size: 20px;
  color: hsla(var(--cream), 0.35);
  text-decoration: line-through;
}
.product-price__save {
  padding: 4px 12px;
  border-radius: 999px;
  background: hsla(var(--ochre), 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}
.product-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.product-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: hsla(var(--cream), 0.6);
}
.product-guarantee svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 900px) { .product-block { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.marquee-track--fwd { animation: marquee 32s linear infinite; }
.marquee-track--rev { animation: marquee-rev 36s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.testimonial-card {
  width: clamp(300px, 35vw, 400px);
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  color: hsla(var(--cream), 0.8);
  line-height: 1.55;
  flex: 1;
}
.testimonial-card__stars {
  display: flex; gap: 3px;
  color: var(--accent);
}
.testimonial-card__stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, hsla(var(--ochre), 0.4), hsla(var(--terra), 0.4));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--fg);
}
.testimonial-card__name {
  font-weight: 500;
  font-size: 13px;
}
.testimonial-card__role {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.4);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left p {
  font-size: 15px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  line-height: 1.7;
  margin-block: 20px 28px;
  max-width: 38ch;
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  color: hsla(var(--cream), 0.8);
  transition: color 0.2s;
}
.faq-item__trigger:hover { color: var(--fg); }
.faq-item__trigger.open   { color: var(--accent); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-item__trigger.open .faq-item__icon {
  background: hsla(var(--ochre), 0.15);
  transform: rotate(45deg);
}
.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
  font-size: 14px;
  font-weight: 300;
  color: hsla(var(--cream), 0.6);
  line-height: 1.75;
}
.faq-item__body.open {
  max-height: 400px;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
}
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 64px);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.35);
}
.footer__col h4 {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.4);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--fg); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer__copy {
  font-size: 12px;
  color: hsla(var(--cream), 0.3);
}
.footer__legal {
  display: flex; gap: 20px;
}
.footer__legal a {
  font-size: 12px;
  color: hsla(var(--cream), 0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: hsla(var(--cream), 0.6); }

/* ── COLLECTION PAGE ─────────────────────────────────────── */
.collection-header {
  padding-top: 140px;
  padding-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}
.collection-header h1 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 16px; }
.collection-header p {
  font-size: 15px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  max-width: 44ch;
  margin-inline: auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: clamp(64px, 10vw, 120px);
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); border-color: hsla(var(--ochre), 0.3); }
.product-card__img {
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, hsla(var(--ochre), 0.07) 0%, transparent 70%),
    hsl(20, 10%, 12%);
  display: flex; align-items: center; justify-content: center;
  color: hsla(var(--cream), 0.2);
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__img svg { width: 48px; height: 48px; }
.product-card__info { padding: 20px 24px 24px; }
.product-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.product-card__sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.4);
  margin-bottom: 16px;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card__price-current {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
}
.product-card__price-compare {
  font-size: 14px;
  color: hsla(var(--cream), 0.35);
  text-decoration: line-through;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

/* ── PRODUCT PAGE ────────────────────────────────────────── */
.product-page {
  padding-top: 120px;
  padding-bottom: clamp(64px, 10vw, 120px);
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.product-page__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.product-page__main-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: hsla(var(--cream), 0.2);
}
.product-page__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-page__main-img svg { width: 80px; height: 80px; }
.product-page__thumbs {
  display: flex; gap: 10px;
}
.product-page__thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-page__thumb.active { border-color: var(--accent); }
.product-page__info { display: flex; flex-direction: column; gap: 20px; }
.product-page__title { font-size: clamp(32px, 4vw, 52px); }
.product-page__rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: hsla(var(--cream), 0.5);
}
.product-page__rating-stars {
  display: flex; gap: 2px; color: var(--accent);
}
.product-page__rating-stars svg { width: 14px; height: 14px; fill: currentColor; }
.product-page__desc {
  font-size: 14px;
  font-weight: 300;
  color: hsla(var(--cream), 0.6);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.product-page__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.product-page__feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 300; color: hsla(var(--cream), 0.65);
}
.product-page__feature svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.product-page__atc {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 768px) {
  .product-page__grid { grid-template-columns: 1fr; }
  .product-page__gallery { position: static; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-hero {
  padding-top: 140px;
  padding-bottom: clamp(64px, 10vw, 100px);
}
.about-hero h1 { font-size: clamp(48px, 8vw, 110px); max-width: 14ch; margin-bottom: 28px; }
.about-hero p {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: hsla(var(--cream), 0.6);
  max-width: 52ch;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(48px, 8vw, 80px);
}
.about-value {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.about-value__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: hsla(var(--ochre), 0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.about-value__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 10px;
}
.about-value__body {
  font-size: 13px;
  font-weight: 300;
  color: hsla(var(--cream), 0.5);
  line-height: 1.65;
}
@media (max-width: 768px) { .about-values { grid-template-columns: 1fr; } }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page {
  padding-top: 140px;
  padding-bottom: clamp(64px, 10vw, 120px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.45);
}
.form-input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: hsla(var(--ochre), 0.5); }
.form-input::placeholder { color: hsla(var(--cream), 0.25); }
textarea.form-input { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.contact-info p {
  font-size: 14px;
  font-weight: 300;
  color: hsla(var(--cream), 0.55);
  line-height: 1.75;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.4);
  margin-bottom: 4px;
}
.contact-detail__val {
  font-size: 14px;
  color: hsla(var(--cream), 0.75);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── CART & NOTICES ──────────────────────────────────────── */
.cart-page {
  padding-top: 130px;
  padding-bottom: clamp(64px, 10vw, 120px);
}
.cart-page h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 40px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsla(var(--cream), 0.35);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.cart-table td {
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 300;
  color: hsla(var(--cream), 0.7);
  vertical-align: middle;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
}

/* ── NOTIFICATION TOAST ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: var(--accent); }

/* ── UTILITIES ───────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { height: 1px; background: var(--border); }
.text-accent { color: var(--accent); }
.text-muted  { color: hsla(var(--cream), 0.45); }
.mt-auto { margin-top: auto; }
