/* ==========================================================================
   Whiskfox — Design system (archétype D : DEPARTMENT-CATALOG)
   Palette : rouge tomate / crème / charbon. Display Bricolage Grotesque + body Mukta.
   Préfixe de classes : wf-
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Mukta:wght@300;400;500;600;700&display=swap');

:root {
  --tomato: #d94026;
  --tomato-dk: #b32f19;
  --tomato-soft: #fce4dd;
  --cream: #faf4e9;
  --cream-2: #f4ead7;
  --paper: #fffdf8;
  --charcoal: #2b2724;
  --ink: #2b2724;
  --muted: #7a7066;
  --line: #e7ddc9;
  --green: #2e7d52;
  --gold: #e0a93b;
  --shadow: 0 2px 10px rgba(43,39,36,.07);
  --shadow-lg: 0 16px 44px rgba(43,39,36,.16);
  --r: 12px;
  --r-sm: 8px;
  --wrap: 1300px;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Mukta', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--body); color: var(--ink); background: var(--cream);
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; margin: 0 0 .4em; letter-spacing: -.01em; }
.wf-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wf-section { padding: 56px 0; }
.wf-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.wf-sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0; }
.wf-sec-head p { margin: 4px 0 0; color: var(--muted); }
.wf-kicker { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--tomato); }
.wf-link-all { font-weight: 600; color: var(--tomato); white-space: nowrap; }
.wf-link-all:hover { text-decoration: underline; }

/* Buttons */
.wf-btn { font-family: var(--display); font-weight: 600; font-size: .98rem; border: 0; border-radius: 999px;
  padding: 13px 26px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: transform .12s, background .15s, box-shadow .15s; }
.wf-btn:active { transform: translateY(1px); }
.wf-btn-primary { background: var(--tomato); color: #fff; }
.wf-btn-primary:hover { background: var(--tomato-dk); box-shadow: 0 8px 20px rgba(217,64,38,.32); }
.wf-btn-dark { background: var(--charcoal); color: var(--cream); }
.wf-btn-dark:hover { background: #1c1916; }
.wf-btn-ghost { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.wf-btn-ghost:hover { background: var(--charcoal); color: var(--cream); }
.wf-btn-block { width: 100%; justify-content: center; }
.wf-btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* Reveal */
.wf-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.wf-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .wf-reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ── Announcement bar ───────────────────────────────────────────────────── */
.wf-ann { background: var(--charcoal); color: var(--cream); font-size: .82rem; }
.wf-ann-track { display: flex; gap: 38px; justify-content: center; padding: 8px 20px; flex-wrap: wrap; }
.wf-ann-track span { display: inline-flex; align-items: center; gap: 7px; letter-spacing: .02em; }
.wf-ann-track span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--tomato); }

/* ── Header (variante « logo centré » : 3 rangs) ────────────────────────── */
.wf-head { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.wf-head-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 14px 20px; }
.wf-head-left { display: flex; align-items: center; gap: 12px; justify-self: start; }
.wf-head-right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.wf-burger { display: none; background: none; border: 0; cursor: pointer; color: var(--charcoal); padding: 4px; }
.wf-logo { justify-self: center; }
.wf-logo img { height: 40px; width: auto; transition: height .2s; }
.wf-scrolled .wf-logo img { height: 32px; }
.wf-head-ship { display: flex; align-items: center; gap: 8px; color: var(--charcoal); font-size: .82rem; font-weight: 600; max-width: 150px; line-height: 1.15; }
.wf-head-ship svg { color: var(--tomato); flex-shrink: 0; }
.wf-cart-btn { position: relative; background: none; border: 0; cursor: pointer; color: var(--charcoal); padding: 4px; }
.wf-cart-count { position: absolute; top: -4px; right: -6px; background: var(--tomato); color: #fff; font-family: var(--display);
  font-size: .7rem; font-weight: 700; min-width: 19px; height: 19px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Recherche pleine largeur centrée */
.wf-head-search { display: flex; justify-content: center; padding: 0 20px 14px; }
.wf-search { width: 100%; max-width: 720px; position: relative; display: flex; }
.wf-search input { flex: 1; border: 2px solid var(--charcoal); border-radius: 999px; padding: 12px 50px 12px 20px;
  font-family: var(--body); font-size: .95rem; background: #fff; outline: none; }
.wf-search input:focus { border-color: var(--tomato); }
.wf-search button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: var(--tomato);
  color: #fff; border: 0; border-radius: 50%; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer; }
.wf-search button:hover { background: var(--tomato-dk); }

/* suggest */
.wf-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 70; }
.wf-suggest.open { display: block; }
.wf-suggest a { display: flex; align-items: center; gap: 12px; padding: 9px 14px; border-bottom: 1px solid var(--line); }
.wf-suggest a:last-child { border-bottom: 0; }
.wf-suggest a:hover { background: var(--cream); }
.wf-suggest img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.wf-suggest span { flex: 1; font-size: .9rem; }
.wf-suggest strong { color: var(--tomato); font-family: var(--display); }

/* Sous-nav catégories centrée (bandeau clair, pas de barre rouge pleine) */
.wf-subnav { background: var(--cream-2); border-top: 1px solid var(--line); }
.wf-subnav-row { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 0 20px; min-height: 46px; }
.wf-subnav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; }
.wf-subnav-links a { display: flex; align-items: center; padding: 0 14px; height: 46px; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--charcoal); border-bottom: 3px solid transparent; }
.wf-subnav-links a:hover { color: var(--tomato); border-bottom-color: var(--tomato); }
.wf-nav-deal { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; padding: 7px 16px; border-radius: 999px; font-family: var(--display); font-weight: 700; font-size: .86rem; color: var(--charcoal); background: var(--gold); }
.wf-nav-deal:hover { filter: brightness(.95); }

/* Déclencheur « Tous les rayons » + méga-menu (ancré à gauche dans le rang du haut) */
.wf-nav-all { position: relative; }
.wf-nav-alltrig { display: inline-flex; align-items: center; gap: 8px; background: var(--charcoal); color: var(--cream); border: 0;
  font-family: var(--display); font-weight: 600; padding: 9px 16px; height: 40px; border-radius: 999px; cursor: pointer; font-size: .9rem; }
.wf-nav-alltrig:hover { background: #1c1916; }
.wf-mega { position: absolute; top: calc(100% + 10px); left: 0; min-width: 760px; background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 30px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s; z-index: 80; }
.wf-nav-all:hover .wf-mega { opacity: 1; visibility: visible; transform: none; }
.wf-mega-col { display: flex; flex-direction: column; gap: 5px; padding: 6px 0; }
.wf-mega-head { font-family: var(--display); font-weight: 700; color: var(--tomato); font-size: 1rem; margin-bottom: 4px; }
.wf-mega-col a:not(.wf-mega-head) { color: var(--muted); font-size: .88rem; }
.wf-mega-col a:not(.wf-mega-head):hover { color: var(--tomato); }

/* mobile nav */
.wf-mobnav { position: fixed; top: 0; left: 0; bottom: 0; width: 84%; max-width: 340px; background: var(--paper);
  z-index: 120; transform: translateX(-100%); transition: transform .25s; display: flex; flex-direction: column; }
.wf-mobnav.open { transform: none; }
.wf-mobnav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.wf-mobnav-head button { background: none; border: 0; cursor: pointer; }
.wf-mobnav-body { display: flex; flex-direction: column; padding: 8px 0; overflow: auto; }
.wf-mobnav-body a { padding: 13px 20px; border-bottom: 1px solid var(--line); font-weight: 500; }
.wf-overlay { position: fixed; inset: 0; background: rgba(43,39,36,.5); z-index: 110; opacity: 0; visibility: hidden; transition: .2s; }
.wf-overlay.on { opacity: 1; visibility: visible; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.wf-hero { position: relative; background: var(--cream-2); overflow: hidden; }
.wf-hero-in { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; align-items: center; padding: 46px 20px; }
.wf-hero-copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.wf-hero-copy p { font-size: 1.12rem; color: #5d544b; max-width: 50ch; margin: 0 0 22px; }
.wf-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.wf-hero-trust { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.wf-hero-trust div { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 600; color: var(--charcoal); }
.wf-hero-trust svg { color: var(--tomato); }
.wf-hero-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.wf-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.wf-hero-tag { position: absolute; left: 16px; bottom: 16px; background: var(--paper); border-radius: 999px; padding: 8px 16px;
  font-family: var(--display); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow); }
.wf-hero-tag b { color: var(--tomato); }

/* ── Category mosaic (categories first) ─────────────────────────────────── */
.wf-cats { background: var(--paper); }
.wf-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 14px; }
.wf-tile { position: relative; border-radius: var(--r); overflow: hidden; display: block; box-shadow: var(--shadow); }
.wf-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wf-tile:hover img { transform: scale(1.05); }
.wf-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,39,36,0) 35%, rgba(43,39,36,.72)); }
.wf-tile-label { position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 2; color: #fff; }
.wf-tile-label b { font-family: var(--display); font-size: 1.1rem; display: block; }
.wf-tile-label span { font-size: .78rem; opacity: .9; }
.wf-tile.big { grid-column: span 3; grid-row: span 2; }
.wf-tile.med { grid-column: span 3; }
.wf-tile.sm { grid-column: span 2; }

/* ── Filter rail (hero of catalogue) ────────────────────────────────────── */
.wf-quickfilters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.wf-chip { font-family: var(--display); font-weight: 600; font-size: .9rem; border: 2px solid var(--line); background: #fff;
  border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: .15s; color: var(--charcoal); }
.wf-chip:hover { border-color: var(--charcoal); }
.wf-chip.active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ── Product grid (dense) ───────────────────────────────────────────────── */
.wf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.wf-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.wf-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s; }
.wf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.wf-card-media { position: relative; aspect-ratio: 1; background: var(--cream); display: block; }
.wf-card-media img { width: 100%; height: 100%; object-fit: cover; }
.wf-card-badges { position: absolute; top: 9px; left: 9px; display: flex; flex-direction: column; gap: 5px; }
.wf-badge { font-family: var(--display); font-weight: 700; font-size: .68rem; padding: 3px 8px; border-radius: 5px; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.wf-badge-sale { background: var(--tomato); }
.wf-badge-best { background: var(--charcoal); }
.wf-badge-new { background: var(--green); }
.wf-badge-prem { background: var(--gold); color: var(--charcoal); }
.wf-card-body { padding: 11px 12px 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.wf-card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 600; }
.wf-card-name { font-family: var(--display); font-weight: 600; font-size: .96rem; line-height: 1.2; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.3em; }
.wf-card-name:hover { color: var(--tomato); }
.wf-card-rate { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--muted); }
.wf-stars { display: inline-flex; gap: 1px; }
.wf-stars .on { color: var(--gold); }
.wf-stars .off { color: #d9cfbb; }
.wf-card-foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.wf-price { font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--charcoal); }
.wf-price s { font-weight: 400; font-size: .82rem; color: var(--muted); margin-left: 3px; }
.wf-card-add { font-family: var(--display); font-weight: 700; font-size: .78rem; background: var(--tomato-soft); color: var(--tomato-dk);
  border: 0; border-radius: 999px; padding: 7px 12px; cursor: pointer; white-space: nowrap; transition: .15s; }
.wf-card-add:hover { background: var(--tomato); color: #fff; }

/* ── Comparison banner ──────────────────────────────────────────────────── */
.wf-compare { background: var(--charcoal); color: var(--cream); border-radius: 18px; overflow: hidden; }
.wf-compare-in { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; }
.wf-compare-txt { padding: 38px; }
.wf-compare-txt h2 { color: var(--cream); font-size: 2rem; }
.wf-compare-txt p { color: #cdbfa9; }
.wf-ctable { width: 100%; border-collapse: collapse; background: var(--paper); color: var(--ink); }
.wf-ctable th, .wf-ctable td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .88rem; }
.wf-ctable th { font-family: var(--display); background: var(--cream-2); }
.wf-ctable td.c { text-align: center; }
.wf-ctable .yes { color: var(--green); font-weight: 700; }
.wf-ctable .no { color: #c0392b; font-weight: 700; }
.wf-ctable tr:last-child td { border-bottom: 0; }
.wf-ctable .pr { font-family: var(--display); font-weight: 700; color: var(--tomato); }

/* ── Benefits strip ─────────────────────────────────────────────────────── */
.wf-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wf-benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; text-align: center; }
.wf-benefit svg { color: var(--tomato); margin-bottom: 8px; }
.wf-benefit h4 { margin: 0 0 4px; font-size: 1.02rem; }
.wf-benefit p { margin: 0; color: var(--muted); font-size: .86rem; }

/* ── How it works (3 étapes) ────────────────────────────────────────────── */
.wf-howsec { background: var(--paper); }
.wf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wf-step { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px 24px; text-align: center; }
.wf-step-num { position: absolute; top: 16px; left: 18px; font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--line); }
.wf-step-ic { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--tomato-soft); color: var(--tomato-dk); margin-bottom: 14px; }
.wf-step-ic svg { width: 24px; height: 24px; }
.wf-step h4 { margin: 0 0 6px; font-size: 1.12rem; }
.wf-step p { margin: 0; color: var(--muted); font-size: .9rem; max-width: 32ch; margin-inline: auto; }

/* ── Par besoin ─────────────────────────────────────────────────────────── */
.wf-needs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wf-need { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow); display: block; }
.wf-need img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wf-need:hover img { transform: scale(1.05); }
.wf-need::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,39,36,0) 40%, rgba(43,39,36,.78)); }
.wf-need-cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; }
.wf-need-cap b { font-family: var(--display); font-size: 1.18rem; display: block; }
.wf-need-cap span { font-size: .78rem; opacity: .9; }

/* ── Journal / editorial ────────────────────────────────────────────────── */
.wf-journal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wf-jcard { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); }
.wf-jcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.wf-jcard:hover img { transform: scale(1.04); }
.wf-jcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(43,39,36,.78)); }
.wf-jcard-cap { position: absolute; left: 22px; bottom: 20px; right: 22px; color: #fff; z-index: 2; }
.wf-jcard-cap span { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--cream-2); }
.wf-jcard-cap h3 { color: #fff; font-size: 1.4rem; margin: 4px 0 0; }

/* ── Reviews / proof ────────────────────────────────────────────────────── */
.wf-proof { background: var(--cream-2); }
.wf-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wf-rcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.wf-rcard .wf-stars { font-size: 16px; }
.wf-rcard p { margin: 10px 0 14px; font-size: .96rem; }
.wf-rcard .who { display: flex; align-items: center; gap: 10px; }
.wf-rcard .av { width: 36px; height: 36px; border-radius: 50%; background: var(--tomato); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.wf-rcard .who b { display: block; font-size: .9rem; }
.wf-rcard .who span { font-size: .78rem; color: var(--muted); }
.wf-proof-stats { display: flex; gap: 40px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.wf-proof-stat { text-align: center; }
.wf-proof-stat b { font-family: var(--display); font-size: 2.2rem; color: var(--tomato); display: block; }
.wf-proof-stat span { font-size: .85rem; color: var(--muted); }

/* ── Newsletter form (réutilisé dans le footer empilé) ──────────────────── */
.wf-news-form { display: flex; gap: 10px; width: 100%; max-width: 440px; }
.wf-news-form input { flex: 1; border: 0; border-radius: 999px; padding: 13px 18px; font-family: var(--body); font-size: .95rem; background: #fff; color: var(--ink); }
.wf-news-form .wf-btn-primary { background: var(--tomato); }
.wf-news-form .wf-btn-primary:hover { background: var(--tomato-dk); }
.wf-news-ok { font-family: var(--display); font-weight: 600; color: var(--cream); }

/* ── Footer — variante CENTRÉ EMPILÉ ────────────────────────────────────── */
.wf-foot { background: var(--charcoal); color: #cdbfa9; }
.wf-foot-stacked { padding: 56px 0 34px; }
.wf-foot-stack { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.wf-foot-logo img { height: 46px; width: auto; }
.wf-foot-stack .wf-wordmark { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--cream); letter-spacing: .04em; margin: 0; }
.wf-foot-tag { margin: 0; font-size: .95rem; color: #cdbfa9; max-width: 52ch; }
.wf-foot-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; max-width: 760px; padding: 6px 0; border-top: 1px solid #423b35; border-bottom: 1px solid #423b35; }
.wf-foot-nav a { color: #e6dcc8; font-family: var(--display); font-weight: 600; font-size: .9rem; padding: 6px 2px; }
.wf-foot-nav a:hover { color: var(--tomato); }
.wf-foot-news { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 480px; }
.wf-foot-news h2 { color: var(--cream); font-size: 1.5rem; margin: 0; }
.wf-foot-news p { margin: 0; font-size: .9rem; color: #cdbfa9; }
.wf-foot-news .wf-news-form { margin-top: 6px; }
.wf-foot-trust { display: flex; justify-content: center; gap: 16px; color: var(--cream-2); }
.wf-pay { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.wf-foot-copy { font-size: .8rem; color: #9c9082; max-width: 70ch; padding-top: 6px; border-top: 1px solid #423b35; width: 100%; }

/* ── Drawer ─────────────────────────────────────────────────────────────── */
.wf-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.wf-drawer.open { visibility: visible; }
.wf-drawer-back { position: absolute; inset: 0; background: rgba(43,39,36,.5); opacity: 0; transition: .25s; }
.wf-drawer.open .wf-drawer-back { opacity: 1; }
.wf-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 92%; max-width: 420px; background: var(--paper);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s; box-shadow: var(--shadow-lg); }
.wf-drawer.open .wf-drawer-panel { transform: none; }
.wf-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.wf-drawer-head h3 { margin: 0; font-size: 1.25rem; }
.wf-drawer-head button { background: none; border: 0; cursor: pointer; color: var(--charcoal); }
.wf-drawer-body { flex: 1; overflow: auto; padding: 12px 20px; }
.wf-drawer-empty { color: var(--muted); text-align: center; padding: 40px 0; }
.wf-drawer-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.wf-drawer-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.wf-drawer-item-name { font-family: var(--display); font-weight: 600; font-size: .92rem; display: block; }
.wf-drawer-item-price { color: var(--tomato); font-weight: 700; font-family: var(--display); margin: 2px 0 6px; }
.wf-qtybox { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.wf-qty-btn { background: var(--cream); border: 0; width: 28px; height: 28px; cursor: pointer; font-size: 1rem; color: var(--charcoal); }
.wf-qty-btn:hover { background: var(--cream-2); }
.wf-qty-val { min-width: 30px; text-align: center; font-weight: 600; font-size: .9rem; }
.wf-drawer-rm { background: none; border: 0; color: var(--muted); cursor: pointer; align-self: start; }
.wf-drawer-rm:hover { color: var(--tomato); }
.wf-drawer-foot { padding: 16px 20px; border-top: 1px solid var(--line); background: var(--cream); }
.wf-ship-bar { margin-bottom: 12px; }
.wf-ship-msg { font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.wf-ship-track { height: 7px; background: var(--cream-2); border-radius: 999px; overflow: hidden; }
.wf-ship-fill { height: 100%; background: var(--tomato); transition: width .3s; }
.wf-drawer-sub { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 1.05rem; }
.wf-drawer-sub strong { font-family: var(--display); font-size: 1.3rem; }
.wf-drawer-link { display: block; text-align: center; margin-top: 10px; font-weight: 600; color: var(--charcoal); font-size: .9rem; }

/* toast */
.wf-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--charcoal);
  color: var(--cream); padding: 12px 22px; border-radius: 999px; font-family: var(--display); font-weight: 600; z-index: 300;
  opacity: 0; visibility: hidden; transition: .25s; box-shadow: var(--shadow-lg); }
.wf-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ── Page heads ─────────────────────────────────────────────────────────── */
.wf-pagehead { background: var(--cream-2); padding: 40px 0; }
.wf-pagehead h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0; }
.wf-pagehead p { color: var(--muted); margin: 6px 0 0; }
.wf-breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.wf-breadcrumb a:hover { color: var(--tomato); }

/* ── Shop layout ────────────────────────────────────────────────────────── */
.wf-shop { display: grid; grid-template-columns: 240px 1fr; gap: 30px; align-items: start; }
.wf-filters { position: sticky; top: 130px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.wf-filters h4 { font-size: .95rem; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .05em; }
.wf-fgroup { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.wf-fgroup:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.wf-fopt { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; font-size: .9rem; }
.wf-fopt input { accent-color: var(--tomato); width: 16px; height: 16px; }
.wf-shop-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.wf-shop-count { color: var(--muted); font-size: .9rem; }
.wf-shop-top select { font-family: var(--body); border: 2px solid var(--line); border-radius: 999px; padding: 9px 14px; background: #fff; cursor: pointer; }
.wf-filter-toggle { display: none; }

/* ── Product page (PDP) ─────────────────────────────────────────────────── */
.wf-pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; padding-top: 30px; }
.wf-gallery { position: sticky; top: 130px; }
.wf-gallery-main { border-radius: var(--r); overflow: hidden; background: var(--cream); aspect-ratio: 1; border: 1px solid var(--line); }
.wf-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.wf-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.wf-gallery-thumbs button { border: 2px solid var(--line); border-radius: 8px; overflow: hidden; cursor: pointer; padding: 0; background: none; width: 76px; height: 76px; }
.wf-gallery-thumbs button.active { border-color: var(--tomato); }
.wf-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.wf-pdp-cat { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--tomato); font-weight: 700; }
.wf-pdp h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 6px 0 10px; }
.wf-pdp-rate { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .9rem; color: var(--muted); }
.wf-pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.wf-pdp-price .now { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--charcoal); }
.wf-pdp-price .was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.wf-pdp-price .save { background: var(--tomato); color: #fff; font-family: var(--display); font-weight: 700; font-size: .8rem; padding: 3px 10px; border-radius: 6px; }
.wf-stock { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; font-weight: 600; margin-bottom: 18px; }
.wf-stock.ok { color: var(--green); }
.wf-stock.low { color: var(--tomato); }
.wf-stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.wf-pdp-benefits { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.wf-pdp-benefits li { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; }
.wf-pdp-benefits li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--tomato-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b32f19'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; }
.wf-buybox { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.wf-buyrow { display: flex; gap: 12px; align-items: stretch; margin-bottom: 12px; }
.wf-qtysel { display: flex; align-items: center; border: 2px solid var(--charcoal); border-radius: 999px; overflow: hidden; }
.wf-qtysel button { background: none; border: 0; width: 40px; cursor: pointer; font-size: 1.2rem; color: var(--charcoal); }
.wf-qtysel span { min-width: 36px; text-align: center; font-weight: 600; }
.wf-reassure-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.wf-reassure-row div { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.wf-reassure-row svg { color: var(--tomato); width: 20px; height: 20px; flex-shrink: 0; }

/* PDP sections */
.wf-pdp-sections { margin-top: 50px; display: grid; gap: 40px; }
.wf-specs-table { width: 100%; border-collapse: collapse; }
.wf-specs-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.wf-specs-table td:first-child { font-weight: 600; width: 38%; background: var(--cream); font-family: var(--display); }
.wf-bought { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.wf-bought-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wf-bought-item { display: flex; align-items: center; gap: 10px; }
.wf-bought-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.wf-bought-item .nm { font-size: .85rem; font-weight: 600; max-width: 130px; }
.wf-bought-item .pr { color: var(--tomato); font-weight: 700; font-family: var(--display); font-size: .85rem; }
.wf-bought-plus { font-size: 1.6rem; color: var(--muted); }
.wf-bought-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.wf-bought-total b { font-family: var(--display); font-size: 1.4rem; color: var(--charcoal); }
.wf-revsum { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; background: var(--cream-2); border-radius: var(--r); padding: 24px; margin-bottom: 20px; }
.wf-revsum-big { text-align: center; }
.wf-revsum-big b { font-family: var(--display); font-size: 3rem; display: block; line-height: 1; }
.wf-revbars { display: grid; gap: 6px; }
.wf-revbar { display: flex; align-items: center; gap: 10px; font-size: .82rem; }
.wf-revbar .tk { flex: 1; height: 8px; background: #e3d8c2; border-radius: 999px; overflow: hidden; }
.wf-revbar .tk i { display: block; height: 100%; background: var(--gold); }
.wf-faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 10px; background: var(--paper); overflow: hidden; }
.wf-faq-item summary { padding: 15px 18px; cursor: pointer; font-family: var(--display); font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
.wf-faq-item summary::-webkit-details-marker { display: none; }
.wf-faq-item summary::after { content: "+"; color: var(--tomato); font-size: 1.4rem; line-height: 1; }
.wf-faq-item[open] summary::after { content: "–"; }
.wf-faq-item p { padding: 0 18px 16px; margin: 0; color: #5d544b; font-size: .92rem; }
.wf-ship-info { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.wf-ship-info svg { color: var(--tomato); flex-shrink: 0; }

/* sticky ATC mobile */
.wf-sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; background: var(--paper); border-top: 1px solid var(--line);
  padding: 10px 16px; display: none; align-items: center; justify-content: space-between; gap: 12px; z-index: 90; box-shadow: 0 -4px 18px rgba(43,39,36,.1); }
.wf-sticky-atc .p { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.wf-sticky-atc .p s { font-weight: 400; font-size: .85rem; color: var(--muted); }

/* cart page */
.wf-cartpage { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.wf-cartlist { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.wf-cartline { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 16px; border-bottom: 1px solid var(--line); align-items: center; }
.wf-cartline:last-child { border-bottom: 0; }
.wf-cartline img { width: 90px; height: 90px; object-fit: cover; border-radius: 8px; }
.wf-cartline .nm { font-family: var(--display); font-weight: 600; }
.wf-cartsummary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; position: sticky; top: 130px; }
.wf-cartsummary h3 { margin-top: 0; }
.wf-sumline { display: flex; justify-content: space-between; padding: 8px 0; font-size: .95rem; }
.wf-sumtotal { display: flex; justify-content: space-between; font-family: var(--display); font-size: 1.3rem; font-weight: 700; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }

/* prose */
.wf-prose { max-width: 760px; }
.wf-prose h2 { margin-top: 32px; font-size: 1.5rem; }
.wf-prose p { color: #4f4842; margin: 0 0 14px; }
.wf-empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wf-grid { grid-template-columns: repeat(4, 1fr); }
  .wf-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .wf-mega { min-width: 640px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wf-head-ship { display: none; }
  .wf-subnav { display: none; }
  .wf-nav-all { display: none; }
  .wf-head-top { grid-template-columns: auto 1fr auto; }
  .wf-burger { display: block; }
  .wf-hero-in { grid-template-columns: 1fr; }
  .wf-hero-media { order: -1; }
  .wf-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .wf-tile.big { grid-column: span 2; grid-row: span 2; }
  .wf-tile.med, .wf-tile.sm { grid-column: span 2; }
  .wf-compare-in { grid-template-columns: 1fr; }
  .wf-benefits { grid-template-columns: repeat(2, 1fr); }
  .wf-journal { grid-template-columns: 1fr; }
  .wf-reviews { grid-template-columns: 1fr; }
  .wf-pdp { grid-template-columns: 1fr; }
  .wf-gallery { position: static; }
  .wf-shop { grid-template-columns: 1fr; }
  .wf-filters { position: static; display: none; }
  .wf-filters.open { display: block; }
  .wf-filter-toggle { display: inline-flex; }
  .wf-cartpage { grid-template-columns: 1fr; }
  .wf-revsum { grid-template-columns: 1fr; }
  .wf-sticky-atc { display: flex; }
}
@media (max-width: 600px) {
  .wf-grid, .wf-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wf-mosaic { grid-template-columns: repeat(2, 1fr); }
  .wf-tile.big { grid-column: span 2; }
  .wf-benefits { grid-template-columns: 1fr 1fr; }
  .wf-needs { grid-template-columns: 1fr 1fr; }
  .wf-steps { grid-template-columns: 1fr; }
  .wf-news-form { flex-direction: column; }
  .wf-card-name { font-size: .88rem; }
}
