@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — Filora · Fibre Arts (yarn / weaving / spinning)
   Engine hooks keep prefix rst-  |  New layout uses fl-
   Concept: "colour-story" nuancier — swatch scroller + structured product rows
   Palette: oatmeal · heather plum · sage · warm ink
   Type: Crimson Pro (serif) + Albert Sans (sans)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Albert+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --oat:        #efe7d8;   /* paper / background */
  --oat-deep:   #e4d9c4;   /* panels */
  --oat-card:   #f7f1e6;   /* card surface */
  --plum:       #6b4e6e;   /* primary — heather plum */
  --plum-deep:  #523c55;
  --plum-soft:  #8a6e8d;
  --sage:       #8aa07a;   /* secondary — sage */
  --sage-deep:  #6e8560;
  --ink:        #2a2622;   /* warm ink — text */
  --ink-soft:   #5c544b;
  --line:       #cbbda3;   /* hairlines */
  --white:      #fffdf9;

  --ff-display: 'Crimson Pro', Georgia, serif;
  --ff-body:    'Albert Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 18px rgba(42,38,34,0.07);
  --shadow-lift: 0 14px 38px rgba(42,38,34,0.16);

  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --anim: 0.24s ease;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 72px; }
body {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.05rem);
  line-height: 1.68;
  color: var(--ink);
  background: var(--oat);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.rst-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.rst-container, .fl-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rst-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rst-reveal.is-visible { opacity: 1; transform: none; }

.fl-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}
.fl-section-title { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--ink); }

/* ═══ HEADER ═══ */
.rst-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239,231,216,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--anim);
}
.rst-head--stuck { box-shadow: 0 4px 20px rgba(42,38,34,0.08); }
/* Archétype B — logo CENTRÉ : grille 3 zones [nav gauche | marque | droite] */
.rst-head-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
  height: 72px; padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.rst-brandslot {
  grid-column: 2; justify-self: center;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
  font-weight: 600; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap;
}
.rst-brandslot::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto;
  background:
    radial-gradient(circle at 50% 50%, var(--oat) 0 18%, transparent 19%),
    conic-gradient(var(--plum), var(--sage), var(--plum-soft), var(--plum));
  box-shadow: inset 0 0 0 2px var(--oat);
}
.rst-nav { display: flex; gap: clamp(1rem, 1.8vw, 1.8rem); align-items: center; }
.rst-nav--left { grid-column: 1; justify-content: flex-start; }
.rst-nav--right { justify-content: flex-end; }
.rst-head-right { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: clamp(1rem, 1.8vw, 1.8rem); }
.rst-nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft); position: relative; padding: 0.2rem 0; white-space: nowrap;
  transition: color var(--anim);
}
.rst-nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--plum); transition: width var(--anim);
}
.rst-nav-link:hover, .rst-nav-link.is-active { color: var(--plum); }
.rst-nav-link:hover::after, .rst-nav-link.is-active::after { width: 100%; }
.rst-head-actions { display: flex; align-items: center; gap: 0.4rem; }
.rst-head-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; color: var(--ink); position: relative; transition: background var(--anim);
}
.rst-head-btn:hover { background: var(--oat-deep); }
.rst-head-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--plum); color: var(--white); border-radius: var(--radius-pill);
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 700;
  display: grid; place-items: center;
}
.rst-hamburger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.rst-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--anim), opacity var(--anim); }
.rst-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rst-hamburger.is-open span:nth-child(2) { opacity: 0; }
.rst-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══ MOBILE NAV ═══ */
.rst-mobile-nav {
  position: fixed; inset: 64px 0 0 0; z-index: 99;
  background: var(--oat); padding: 1.5rem var(--gutter);
  display: flex; flex-direction: column; gap: 0.3rem;
  transform: translateX(100%); transition: transform 0.3s ease; visibility: hidden;
}
.rst-mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.rst-mobile-nav-link { font-family: var(--ff-display); font-size: 1.5rem; color: var(--ink); padding: 0.7rem 0; border-bottom: 1px solid var(--line); }

/* ═══ BUTTONS ═══ */
.rst-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--ff-body); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.8rem 1.7rem; border-radius: var(--radius-pill);
  transition: transform var(--anim), background var(--anim), color var(--anim), box-shadow var(--anim);
}
.rst-btn-primary { background: var(--plum); color: var(--white); }
.rst-btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.rst-btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.rst-btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--plum); color: var(--plum); }
.rst-btn-accent { background: var(--sage); color: var(--white); }
.rst-btn-accent:hover { background: var(--sage-deep); transform: translateY(-2px); }
.rst-btn-white { background: var(--white); color: var(--plum); }
.rst-btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.rst-btn-sm { padding: 0.55rem 1.15rem; font-size: 0.78rem; }
.rst-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ═══ HERO — éditorial gauche + scroller nuancier inline (archétype 5) ═══ */
.fl-hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
/* titre éditorial géant aligné à gauche + colonne lede/CTA à droite du titre */
.fl-hero-editorial {
  display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.fl-hero-lead { min-width: 0; }
.fl-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--plum); background: var(--white); border: 1px solid var(--line);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); margin-bottom: 1.4rem;
}
.fl-hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.fl-hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 500; color: var(--ink);
  line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance;
}
.fl-hero-title em { font-style: italic; color: var(--plum); }
.fl-hero-aside { position: relative; min-width: 0; padding-bottom: 0.4rem; }
.fl-hero-lede { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--ink-soft); margin: 0 0 1.6rem; max-width: 42ch; }
.fl-hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.fl-hero-seal {
  width: clamp(76px, 7vw, 104px); height: clamp(76px, 7vw, 104px); margin-top: 1.8rem;
  filter: drop-shadow(0 6px 14px rgba(42,38,34,0.18));
}
/* 3 stats en ligne, pleine largeur sous le titre */
.fl-hero-stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  max-width: var(--max-w); margin: clamp(2rem, 4vw, 3rem) auto 0; padding: clamp(1.4rem, 2.5vw, 1.8rem) var(--gutter) 0;
  border-top: 1px solid var(--line);
}
.fl-hero-stat-num { font-family: var(--ff-display); font-size: clamp(1.7rem, 2.4vw, 2.2rem); font-weight: 600; color: var(--plum); }
.fl-hero-stat-lbl { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.04em; }

/* swatch scroller — the "colour story" nuancier (rangée de spécimens du hero) */
.fl-swatches { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); padding-bottom: 0.4rem; }
.fl-swatches-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  max-width: var(--max-w); margin: 0 auto 1.1rem; padding: 0 var(--gutter); flex-wrap: wrap;
}
.fl-swatches-title { font-size: 1.2rem; color: var(--ink); }
.fl-swatches-hint { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.03em; }
.fl-swatch-track {
  display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.4rem var(--gutter) 1.2rem; scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.fl-swatch-track::-webkit-scrollbar { height: 6px; }
.fl-swatch-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.fl-swatch {
  scroll-snap-align: start; flex: 0 0 auto; width: 132px;
  background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; transition: transform var(--anim), box-shadow var(--anim);
}
.fl-swatch:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fl-swatch-chip { height: 86px; position: relative; }
.fl-swatch-chip::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.14) 0 2px, transparent 2px 6px);
}
.fl-swatch-body { padding: 0.6rem 0.75rem 0.8rem; }
.fl-swatch-name { font-family: var(--ff-display); font-size: 0.96rem; color: var(--ink); line-height: 1.15; }
.fl-swatch-meta { font-size: 0.7rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* ═══ CATEGORY NAV STRIP ═══ */
.fl-catnav { background: var(--plum-deep); padding: clamp(2rem, 4vw, 3rem) 0; }
.fl-catnav-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.8rem;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.fl-cat-card {
  display: flex; flex-direction: column; gap: 0.5rem; padding: 1.1rem 1rem;
  background: rgba(255,253,249,0.06); border: 1px solid rgba(255,253,249,0.16);
  border-radius: var(--radius-md); color: var(--oat); transition: background var(--anim), transform var(--anim);
}
.fl-cat-card:hover { background: rgba(255,253,249,0.14); transform: translateY(-3px); }
.fl-cat-icon { width: 30px; height: 30px; stroke: var(--sage); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fl-cat-name { font-family: var(--ff-display); font-size: 1.12rem; font-weight: 500; }
.fl-cat-count { font-size: 0.72rem; color: rgba(239,231,216,0.6); letter-spacing: 0.05em; }

/* ═══ SECTION SHELLS ═══ */
.fl-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.fl-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.fl-section-head p.fl-section-sub { color: var(--ink-soft); max-width: 52ch; margin-top: 0.5rem; }

/* ═══ STRUCTURED PRODUCT LIST (the "lignes" with fibre / weight / yardage) ═══ */
.fl-list { display: flex; flex-direction: column; gap: 0.6rem; }
.fl-row {
  display: grid;
  grid-template-columns: 86px 1.6fr 1fr 1fr 1fr auto;
  align-items: center; gap: 1.2rem;
  background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem; transition: box-shadow var(--anim), transform var(--anim), border-color var(--anim);
}
.fl-row:hover { box-shadow: var(--shadow-card); border-color: var(--plum-soft); transform: translateX(2px); }
.fl-row-swatchimg { position: relative; }
.fl-row-swatchimg img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; background: var(--oat-deep); }
.fl-row-dot { position: absolute; right: 6px; bottom: 6px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.fl-row-main { min-width: 0; }
.fl-row-name { font-family: var(--ff-display); font-size: 1.12rem; font-weight: 500; color: var(--ink); line-height: 1.18; }
.fl-row-name a:hover { color: var(--plum); }
.fl-row-type { font-size: 0.74rem; color: var(--plum); font-weight: 600; letter-spacing: 0.04em; margin-top: 0.15rem; }
.fl-row-spec { min-width: 0; }
.fl-row-spec-k { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.fl-row-spec-v { font-size: 0.86rem; color: var(--ink); font-weight: 500; }
.fl-row-end { display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; }
.fl-row-price { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.fl-row-price small { font-family: var(--ff-body); font-size: 0.66rem; color: var(--ink-soft); font-weight: 400; display: block; text-align: right; }

/* ═══ SKEIN CARDS (grid with skein swatch) ═══ */
.fl-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(266px, 1fr)); gap: 1.4rem; }
.rst-card, .fl-card {
  background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-card:hover, .fl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--plum-soft); }
.rst-card-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--oat-deep); }
.rst-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rst-card:hover .rst-card-img-wrap img { transform: scale(1.05); }
.fl-card-swatchbar { height: 8px; display: flex; }
.fl-card-swatchbar span { flex: 1; }
.rst-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.rst-card-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum); }
.rst-card-name { font-family: var(--ff-display); font-size: 1.22rem; font-weight: 500; line-height: 1.2; color: var(--ink); }
.rst-card-name a:hover { color: var(--plum); }
.fl-card-specs { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fl-card-specline { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.78rem; }
.fl-card-specline span:first-child { color: var(--ink-soft); }
.fl-card-specline span:last-child { color: var(--ink); font-weight: 500; text-align: right; }
.rst-card-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rst-chip {
  font-size: 0.68rem; font-weight: 500; padding: 0.22rem 0.6rem; border-radius: var(--radius-pill);
  background: var(--oat-deep); color: var(--ink-soft);
}
.rst-chip-accent { background: rgba(138,160,122,0.2); color: var(--sage-deep); }
.rst-card-short { font-size: 0.86rem; color: var(--ink-soft); flex: 1; }
.rst-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: auto; padding-top: 0.4rem; }
.rst-price { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 600; color: var(--ink); }
.rst-price-sub { font-size: 0.7rem; color: var(--ink-soft); }

/* ═══ FEATURE / STORY BAND ═══ */
.fl-band { background: var(--plum); color: var(--oat); }
.fl-band-inner {
  max-width: var(--max-w); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.fl-band-inner .fl-eyebrow { color: var(--sage); }
.fl-band h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); color: var(--white); margin: 0.6rem 0 1rem; }
.fl-band p { color: rgba(239,231,216,0.84); margin-bottom: 1.6rem; }
.fl-band-details { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.fl-band-detail { font-size: 0.78rem; font-weight: 500; padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); background: rgba(255,253,249,0.1); border: 1px solid rgba(255,253,249,0.2); }
.fl-band-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-lift); }
.fl-band-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ GUIDES / JOURNAL ═══ */
.fl-guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fl-guide {
  background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: transform var(--anim), box-shadow var(--anim);
}
.fl-guide:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.fl-guide-img { aspect-ratio: 16/10; overflow: hidden; background: var(--oat-deep); }
.fl-guide-img img { width: 100%; height: 100%; object-fit: cover; }
.fl-guide-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.fl-guide-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); }
.fl-guide-title { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.fl-guide-excerpt { font-size: 0.86rem; color: var(--ink-soft); flex: 1; }
.fl-guide-link { font-size: 0.82rem; font-weight: 600; color: var(--plum); }
.fl-guide-link::after { content: ' →'; }

/* ═══ NEWSLETTER ═══ */
.fl-news { padding: clamp(3rem, 6vw, 5rem) 0; }
.fl-news-inner {
  max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(2.2rem, 5vw, 3.5rem) var(--gutter);
  background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.fl-news-title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--ink); }
.fl-news-desc { color: var(--ink-soft); margin: 0.8rem auto 1.6rem; max-width: 48ch; }
.fl-news-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.fl-news-input { flex: 1; min-width: 180px; padding: 0.85rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); color: var(--ink); }
.fl-news-input:focus { outline: none; border-color: var(--plum); }
.fl-news-privacy { font-size: 0.74rem; color: var(--ink-soft); margin-top: 1rem; }

/* ═══ FOOTER ═══ */
.rst-foot { background: var(--ink); color: var(--oat); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.rst-foot-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.rst-foot-brand { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.rst-foot-tagline { font-size: 0.86rem; color: rgba(239,231,216,0.7); margin-bottom: 1rem; max-width: 30ch; }
.rst-foot-address { font-size: 0.82rem; color: rgba(239,231,216,0.6); line-height: 1.7; margin-bottom: 0.8rem; }
.rst-foot-hours { font-size: 0.8rem; color: rgba(239,231,216,0.55); line-height: 1.7; }
.rst-foot-col h4 { font-family: var(--ff-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.9rem; }
.rst-foot-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.rst-foot-col a { font-size: 0.86rem; color: rgba(239,231,216,0.72); transition: color var(--anim); }
.rst-foot-col a:hover { color: var(--white); }
.rst-foot-lang {
  display: flex; gap: 0.4rem; align-items: center; justify-content: center; flex-wrap: wrap;
  max-width: var(--max-w); margin: 2.5rem auto 0; padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(239,231,216,0.14);
}
.rst-lang-btn {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-pill); color: rgba(239,231,216,0.6);
  border: 1px solid rgba(239,231,216,0.2); transition: all var(--anim);
}
.rst-lang-btn:hover { color: var(--oat); border-color: var(--sage); }
.rst-lang-btn.is-active { background: var(--sage); color: var(--white); border-color: var(--sage); }
.rst-foot-fine {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: var(--max-w); margin: 1.5rem auto 0; padding: 0 var(--gutter);
  font-size: 0.76rem; color: rgba(239,231,216,0.5);
}
.rst-foot-fine-links { display: flex; gap: 1.2rem; }
.rst-foot-fine-links a:hover { color: var(--oat); }

/* ═══ SHOP PAGE ═══ */
.fl-shop-hero { background: var(--oat-deep); padding: clamp(2rem, 4vw, 3.2rem) 0 clamp(1.5rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line); }
.rst-breadcrumb { font-size: 0.76rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.rst-breadcrumb a:hover { color: var(--plum); }
.rst-breadcrumb-sep { color: var(--line); }
.fl-shop-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.fl-shop-sub { color: var(--ink-soft); margin-top: 0.5rem; max-width: 54ch; }
.fl-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.fl-filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fl-filter-chip {
  font-size: 0.78rem; font-weight: 500; padding: 0.5rem 1.05rem; border-radius: var(--radius-pill);
  background: var(--oat-card); color: var(--ink-soft); border: 1px solid var(--line); transition: all var(--anim);
}
.fl-filter-chip:hover { border-color: var(--plum-soft); color: var(--plum); }
.fl-filter-chip.is-active { background: var(--plum); color: var(--white); border-color: var(--plum); }
.fl-sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); }
.fl-sort-select { padding: 0.5rem 0.9rem; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--oat-card); color: var(--ink); }
.fl-shop-toggle { display: flex; gap: 0.2rem; background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.2rem; }
.fl-shop-toggle button { width: 34px; height: 30px; border-radius: var(--radius-pill); display: grid; place-items: center; color: var(--ink-soft); }
.fl-shop-toggle button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.fl-shop-toggle button.is-active { background: var(--plum); color: var(--white); }
.fl-shop-body { padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem); }

/* ═══ PDP ═══ */
.fl-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); max-width: var(--max-w); margin: 0 auto; padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter); }
.fl-pdp-gallery { position: sticky; top: 90px; align-self: start; }
.fl-pdp-main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--oat-deep); box-shadow: var(--shadow-card); }
.fl-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.fl-pdp-swatchstrip { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.fl-pdp-swatchstrip .sw { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--white); box-shadow: var(--shadow-card); }
.rst-pdp-cat { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum); margin-bottom: 0.4rem; }
.fl-pdp-name { font-size: clamp(1.8rem, 3.4vw, 2.7rem); color: var(--ink); margin-bottom: 1rem; }
.fl-pdp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; margin: 1.3rem 0; padding: 1.2rem; background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); }
.fl-pdp-spec-k { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.fl-pdp-spec-v { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.rst-pdp-notes-title, .rst-selector-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; }
.rst-pdp-notes-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.rst-selector-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rst-selector-opt {
  font-size: 0.82rem; font-weight: 500; padding: 0.55rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--oat-card); color: var(--ink); border: 1.5px solid var(--line); transition: all var(--anim);
}
.rst-selector-opt:hover { border-color: var(--plum-soft); }
.rst-selector-opt.is-active { background: var(--plum); color: var(--white); border-color: var(--plum); }
.rst-pdp-price-row { display: flex; align-items: baseline; gap: 0.7rem; margin: 1.5rem 0 1.2rem; }
.rst-pdp-price { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 600; color: var(--ink); }
.rst-pdp-price-unit { font-size: 0.84rem; color: var(--ink-soft); }
.rst-pdp-qty-row { margin-bottom: 1.2rem; }
.rst-pdp-qty-ctrl { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.25rem; }
.rst-pdp-qty-btn { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; color: var(--ink); transition: background var(--anim); }
.rst-pdp-qty-btn:hover { background: var(--oat-deep); }
.rst-pdp-qty-val { min-width: 40px; text-align: center; font-weight: 600; }
.rst-pdp-atc { width: 100%; padding: 1rem; font-size: 0.95rem; }
.fl-pdp-long { margin-top: 2.4rem; }
.fl-pdp-long h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.7rem; }
.fl-pdp-long p { color: var(--ink-soft); }
.fl-pdp-care { margin-top: 1.4rem; padding: 1rem 1.2rem; background: rgba(138,160,122,0.13); border-left: 3px solid var(--sage); border-radius: var(--radius-sm); }
.fl-pdp-care-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 0.3rem; }
.fl-pdp-care p { font-size: 0.86rem; color: var(--ink-soft); }
.rst-related { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--oat-deep); border-top: 1px solid var(--line); }
.rst-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 1.8rem; }

/* ═══ PAGE HERO (about/contact/legal) ═══ */
.rst-page-hero { background: var(--plum-deep); color: var(--oat); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rst-page-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
.rst-page-sub { color: rgba(239,231,216,0.78); margin-top: 0.6rem; max-width: 56ch; }

/* about */
.fl-about-lead { max-width: 820px; margin: clamp(2.5rem,5vw,4rem) auto; padding: 0 var(--gutter); font-family: var(--ff-display); font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.5; color: var(--ink); text-align: center; }
.fl-about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem,4vw,3rem); max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter) clamp(2rem,4vw,3rem); }
.fl-about-text h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.7rem; }
.fl-about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.fl-about-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); background: var(--oat-deep); }
.fl-about-img img { width: 100%; height: 100%; object-fit: cover; }
.fl-values { background: var(--oat-deep); padding: clamp(2.5rem,5vw,4rem) 0; }
.fl-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.fl-value-card { background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem; }
.fl-value-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 600; color: var(--sage); margin-bottom: 0.5rem; }
.fl-value-title { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.5rem; }
.fl-value-body { font-size: 0.88rem; color: var(--ink-soft); }
.fl-team { padding: clamp(2.5rem,5vw,4rem) 0; }
.fl-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.4rem; margin-top: 1.8rem; }
.fl-team-card { background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem; }
.fl-team-role { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum); margin-bottom: 0.4rem; }
.fl-team-name { font-family: var(--ff-display); font-size: 1.2rem; color: var(--ink); }
.fl-team-bio { font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* contact */
.fl-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); max-width: var(--max-w); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) var(--gutter); }
.fl-contact-title { font-size: 1.6rem; color: var(--ink); margin-bottom: 0.8rem; }
.fl-contact-intro { color: var(--ink-soft); margin-bottom: 1.6rem; }
.fl-contact-meta h3 { font-family: var(--ff-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum); margin: 1.2rem 0 0.3rem; }
.fl-contact-meta p { font-size: 0.9rem; color: var(--ink-soft); }
.fl-contact-meta a { color: var(--plum); }
.rst-form { background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.8rem; }
.rst-form-group { margin-bottom: 1.1rem; }
.rst-form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.rst-form-input, .rst-form-select, .rst-form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); }
.rst-form-input:focus, .rst-form-select:focus, .rst-form-textarea:focus { outline: none; border-color: var(--plum); }
.rst-form-textarea { min-height: 130px; resize: vertical; }
.rst-form-success { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; background: rgba(138,160,122,0.18); border-radius: var(--radius-sm); color: var(--sage-deep); font-size: 0.88rem; font-weight: 500; }
.rst-form-success.is-visible { display: block; }

/* legal */
.fl-legal-wrap { max-width: 820px; margin: 0 auto; padding: clamp(2rem,4vw,3.5rem) var(--gutter); }
.fl-legal-meta { font-size: 0.82rem; color: var(--ink-soft); padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); margin-bottom: 1.8rem; }
.fl-legal-section { margin-bottom: 1.8rem; }
.fl-legal-section h2 { font-size: 1.25rem; color: var(--ink); margin-bottom: 0.6rem; }
.fl-legal-section p { color: var(--ink-soft); margin-bottom: 0.7rem; }
.fl-legal-section ul { list-style: disc; padding-left: 1.4rem; color: var(--ink-soft); display: flex; flex-direction: column; gap: 0.4rem; }
.fl-legal-section a { color: var(--plum); }

/* ═══ CART DRAWER ═══ */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(42,38,34,0.45); opacity: 0; visibility: hidden; transition: opacity var(--anim); z-index: 200; }
.rst-cart-overlay.is-visible { opacity: 1; visibility: visible; }
.rst-drawer { position: fixed; top: 0; right: 0; width: min(420px, 90vw); height: 100%; background: var(--oat); z-index: 201; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lift); }
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--line); }
.rst-drawer-title { font-size: 1.3rem; color: var(--ink); }
.rst-drawer-close { font-size: 1.6rem; color: var(--ink-soft); width: 36px; height: 36px; border-radius: 50%; transition: background var(--anim); }
.rst-drawer-close:hover { background: var(--oat-deep); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.rst-drawer-empty { color: var(--ink-soft); text-align: center; padding: 2rem 0; }
.rst-drawer-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); position: relative; }
.rst-drawer-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; background: var(--oat-deep); }
.rst-drawer-item-name { font-family: var(--ff-display); font-size: 1rem; color: var(--ink); line-height: 1.2; padding-right: 1.2rem; }
.rst-drawer-item-meta { font-size: 0.74rem; color: var(--ink-soft); margin: 0.2rem 0 0.5rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.rst-qty-ctrl { display: inline-flex; align-items: center; gap: 0.3rem; background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.15rem; }
.rst-qty-btn { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); }
.rst-qty-btn:hover { background: var(--oat-deep); }
.rst-qty-val { min-width: 26px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.rst-drawer-item-price { font-family: var(--ff-display); font-weight: 600; color: var(--ink); }
.rst-drawer-remove { position: absolute; top: 0.9rem; right: 0; font-size: 1.2rem; color: var(--ink-soft); width: 24px; height: 24px; }
.rst-drawer-remove:hover { color: var(--plum); }
.rst-drawer-foot { padding: 1.3rem 1.5rem; border-top: 1px solid var(--line); }
.rst-drawer-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 0.95rem; }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }

/* cart page */
.fl-cartpage { max-width: var(--max-w); margin: 0 auto; padding: clamp(2rem,4vw,3.5rem) var(--gutter) clamp(3rem,6vw,5rem); }
.fl-cartpage h1 { font-size: clamp(2rem,4vw,2.8rem); color: var(--ink); margin-bottom: 1.8rem; }
.fl-cart-layout { display: grid; grid-template-columns: 1.6fr 0.8fr; gap: 2rem; align-items: start; }
.fl-cart-list { display: flex; flex-direction: column; gap: 0.8rem; }
.fl-cart-line { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 1.2rem; align-items: center; background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1rem 1.2rem; }
.fl-cart-line img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; background: var(--oat-deep); }
.fl-cart-line-name { font-family: var(--ff-display); font-size: 1.1rem; color: var(--ink); }
.fl-cart-line-meta { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.2rem; }
.fl-cart-summary { background: var(--oat-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem; position: sticky; top: 90px; }
.fl-cart-summary h2 { font-size: 1.3rem; color: var(--ink); margin-bottom: 1rem; }
.fl-cart-summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; color: var(--ink-soft); }
.fl-cart-summary-total { display: flex; justify-content: space-between; padding: 0.9rem 0 1.2rem; margin-top: 0.5rem; border-top: 1px solid var(--line); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.fl-cart-empty { text-align: center; padding: 3rem 0; color: var(--ink-soft); }

/* ═══ TOAST ═══ */
#rst-toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.rst-toast { background: var(--ink); color: var(--oat); padding: 0.8rem 1.4rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-lift); opacity: 0; transform: translateY(12px); transition: opacity var(--anim), transform var(--anim); }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ═══ SEARCH ═══ */
.rst-search-overlay { position: fixed; inset: 0; background: rgba(42,38,34,0.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity var(--anim); z-index: 200; padding-top: 12vh; }
.rst-search-overlay.is-open { opacity: 1; visibility: visible; }
.rst-search-box { max-width: 600px; margin: 0 auto; padding: 0 var(--gutter); }
.rst-search-input { width: 100%; padding: 1.1rem 1.4rem; border: none; border-radius: var(--radius-md); background: var(--oat); color: var(--ink); font-size: 1.05rem; box-shadow: var(--shadow-lift); }
.rst-search-input:focus { outline: 2px solid var(--plum); }
.rst-search-results { margin-top: 0.8rem; background: var(--oat); border-radius: var(--radius-md); overflow: hidden; max-height: 56vh; overflow-y: auto; }
.rst-search-result { display: flex; gap: 0.9rem; padding: 0.8rem 1rem; align-items: center; transition: background var(--anim); }
.rst-search-result:hover { background: var(--oat-deep); }
.rst-search-result img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; background: var(--oat-deep); }
.rst-search-result-name { font-family: var(--ff-display); font-size: 1rem; color: var(--ink); }
.rst-search-result-meta { font-size: 0.74rem; color: var(--ink-soft); }

/* ═══ RESPONSIVE ═══ */
/* Header logo-centré → repli propre : logo + hamburger (la nav passe dans le panneau mobile) */
@media (max-width: 900px) {
  html { scroll-padding-top: 64px; }
  .rst-head-inner { display: flex; align-items: center; gap: 1rem; height: 64px; }
  .rst-nav--left, .rst-nav--right { display: none; }
  .rst-brandslot { grid-column: auto; justify-self: auto; margin-right: auto; }
  .rst-head-right { grid-column: auto; gap: 0.4rem; }
  .rst-hamburger { display: flex; }
}
@media (max-width: 980px) {
  .fl-hero-editorial { grid-template-columns: 1fr; align-items: start; gap: clamp(1.2rem, 3vw, 2rem); }
  .fl-hero-aside { display: flex; flex-direction: column; align-items: flex-start; }
  .fl-hero-seal { position: absolute; top: 0; right: 0; margin-top: 0; }
  .fl-catnav-grid { grid-template-columns: repeat(3, 1fr); }
  .fl-band-inner { grid-template-columns: 1fr; }
  .fl-band-figure { order: -1; }
  .fl-guides { grid-template-columns: 1fr 1fr; }
  .fl-values-grid { grid-template-columns: 1fr; }
  .fl-about-grid, .fl-contact-wrap, .fl-pdp, .fl-cart-layout { grid-template-columns: 1fr; }
  .fl-pdp-gallery, .fl-cart-summary { position: static; }
  .rst-foot-grid { grid-template-columns: 1fr 1fr; }
  /* structured rows collapse to stacked layout */
  .fl-row { grid-template-columns: 64px 1fr auto; grid-template-areas: "img main end" "img specs end"; gap: 0.8rem 1rem; }
  .fl-row-swatchimg { grid-area: img; }
  .fl-row-main { grid-area: main; }
  .fl-row-end { grid-area: end; }
  .fl-row-spec { display: none; }
  .fl-row-spec.fl-row-spec-keep { display: block; grid-area: specs; }
}
@media (max-width: 768px) {
  .fl-guides { grid-template-columns: 1fr; }
  .fl-catnav-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-hero-seal { width: 76px; height: 76px; }
}
@media (max-width: 480px) {
  .fl-hero-title { font-size: clamp(2.3rem, 12vw, 3rem); }
  .fl-hero-stats { gap: 1.4rem 1.8rem; }
  .fl-hero-seal { width: 64px; height: 64px; }
  .fl-cards { grid-template-columns: 1fr; }
  .rst-foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .rst-foot-fine { flex-direction: column; align-items: flex-start; }
  .fl-row { grid-template-columns: 56px 1fr; grid-template-areas: "img main" "img end" "specs specs"; }
  .fl-cart-line { grid-template-columns: 64px 1fr; grid-template-areas: "img name" "img meta" "qty price"; gap: 0.5rem 0.9rem; }
}
/* mobile menu open: keep header solid */
.rst-head:has(.rst-hamburger.is-open) { background: var(--oat); }
