/* ============================================================================
   SOUS ENCRE — design system
   Papier et encre : fond crème, noir dense, contraste net. Les motifs étant
   des SVG monochromes, c'est le contraste qui porte tout le design.
   Typo : Instrument Serif (titres) + Archivo (corps). Préfixe : .se-
   ========================================================================== */

:root {
  --ink: #141414;
  --ink-soft: #4a453e;
  --ink-faint: #8a8279;
  --paper: #f4f1ec;
  --paper-2: #eae4da;
  --paper-3: #e0d8cb;
  --white: #ffffff;
  --line: #d9d1c4;

  /* Bleu-noir de l'encre jagua, réservé aux accents. */
  --jagua: #1e2d4d;
  --jagua-soft: #dfe3ec;
  /* Rouge terre, uniquement pour les promos. */
  --rouge: #a33b28;
  --rouge-soft: #f3ded8;

  --shadow: 0 14px 40px -22px rgba(20, 20, 20, .45);
  --shadow-lg: 0 28px 60px -28px rgba(20, 20, 20, .55);

  --r: 4px;
  --r-lg: 10px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wrap: 1220px;
  --header-h: 74px;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02;
  letter-spacing: -.01em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-family: var(--sans); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; margin: 0 0 1em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.se-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.se-section { padding: clamp(56px, 8vw, 112px) 0; position: relative; }
.se-center { text-align: center; }
.se-muted { color: var(--ink-soft); }
.se-sr { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; }

.se-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .24em; color: var(--ink-faint); margin: 0 0 1.2em; }
.se-lead { font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--ink-soft); max-width: 56ch; }
.se-center .se-lead, .se-lead.se-center { margin-inline: auto; }

/* ── Boutons ──────────────────────────────────────────────────────────── */
.se-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 1.1em 2em; background: var(--ink); color: var(--paper);
  border: 1.5px solid var(--ink); border-radius: var(--r);
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.se-btn:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.se-btn[disabled], .se-btn.is-busy { opacity: .45; pointer-events: none; }
.se-btn--ghost { background: transparent; color: var(--ink); }
.se-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.se-btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.se-btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.se-btn--sm { padding: .75em 1.3em; font-size: .72rem; }
.se-btn--block { display: flex; width: 100%; }

/* ── Puces ────────────────────────────────────────────────────────────── */
.se-chip { display: inline-flex; align-items: center; gap: .4em; font-size: .66rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: .45em .75em; border-radius: var(--r); background: var(--paper-2); color: var(--ink-soft); }
.se-chip--ink { background: var(--ink); color: var(--paper); }
.se-chip--rouge { background: var(--rouge); color: #fff; }
.se-chip--line { background: transparent; border: 1px solid var(--line); }

/* ── Bandeau + header ─────────────────────────────────────────────────── */
.se-announce { background: var(--ink); color: var(--paper); text-align: center;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .8em 16px; }
.se-announce b { font-weight: 700; }

.se-header { position: sticky; top: 0; z-index: 60; background: rgba(244, 241, 236, .92);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.se-header.is-stuck { border-color: var(--line); }
.se-header__in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  height: var(--header-h); display: flex; align-items: center; gap: 20px; }

.se-logo { font-family: var(--sans); font-weight: 700; font-size: .96rem;
  letter-spacing: .3em; text-transform: uppercase; white-space: nowrap; flex: none; }

.se-nav { display: flex; gap: 2px; margin-left: auto; }
.se-nav a { font-size: .76rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; padding: .6em .85em; color: var(--ink-soft); transition: color .2s; }
.se-nav a:hover, .se-nav a[aria-current="page"] { color: var(--ink); }

.se-tools { display: flex; align-items: center; gap: 4px; }
.se-icon-btn { width: 40px; height: 40px; display: grid; place-items: center;
  position: relative; border-radius: var(--r); transition: background .2s; }
.se-icon-btn:hover { background: var(--paper-2); }
.se-icon-btn svg { width: 19px; height: 19px; }
.se-count { position: absolute; top: 3px; right: 2px; min-width: 17px; height: 17px;
  padding: 0 4px; border-radius: 999px; background: var(--ink); color: var(--paper);
  font-size: .62rem; font-weight: 700; display: grid; place-items: center; }
.se-count[hidden] { display: none; }
.se-burger { display: none; }

.se-mobile { position: fixed; inset: 0; z-index: 90; background: var(--paper);
  padding: 24px; overflow-y: auto; transform: translateY(-100%);
  transition: transform .4s var(--ease); }
.se-mobile.is-open { transform: none; }
.se-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.se-mobile a { display: block; font-family: var(--serif); font-size: 2rem;
  padding: .35em 0; border-bottom: 1px solid var(--line); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.se-hero { padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 7vw, 96px); }
.se-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px); align-items: center; }
.se-hero h1 { margin-bottom: .22em; }
.se-hero h1 em { font-style: italic; }
.se-hero__sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 44ch; }
.se-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 2em 0 1.6em; }
.se-hero__proof { font-size: .8rem; color: var(--ink-faint); text-transform: uppercase;
  letter-spacing: .1em; line-height: 1.9; }
.se-hero__proof b { color: var(--ink); }

/* Grand motif décoratif à droite du hero. */
.se-hero__art { position: relative; display: grid; place-items: center;
  aspect-ratio: 1 / 1.05; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.se-hero__art svg { width: 62%; height: auto; color: var(--ink); }
.se-hero__art::before { content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--line); border-radius: var(--r); pointer-events: none; }
.se-hero__tag { position: absolute; left: 24px; bottom: 22px; font-size: .66rem;
  text-transform: uppercase; letter-spacing: .18em; color: var(--ink-faint); }

/* ── Ticker ───────────────────────────────────────────────────────────── */
.se-ticker { background: var(--ink); color: var(--paper); overflow: hidden;
  padding: .95em 0; font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; }
.se-ticker__track { display: flex; width: max-content; animation: se-scroll 38s linear infinite; }
.se-ticker__track span { padding: 0 30px; white-space: nowrap; }
.se-ticker__track span::after { content: "◆"; margin-left: 30px; opacity: .4; font-size: .8em; }
@keyframes se-scroll { to { transform: translateX(-50%); } }

/* ── Univers ──────────────────────────────────────────────────────────── */
.se-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.se-cat { background: var(--paper); padding: 34px 28px 28px; display: flex;
  flex-direction: column; gap: 14px; transition: background .3s; min-height: 240px; }
.se-cat:hover { background: var(--white); }
.se-cat__art { height: 92px; display: grid; place-items: center; }
.se-cat__art svg { height: 100%; width: auto; color: var(--ink); transition: transform .45s var(--ease); }
.se-cat:hover .se-cat__art svg { transform: scale(1.09) rotate(-2deg); }
.se-cat h3 { margin: 0; display: flex; align-items: baseline; gap: .4em; }
.se-cat p { font-size: .84rem; color: var(--ink-soft); margin: 0; }
.se-cat__n { font-family: var(--sans); font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; color: var(--ink-faint); }

/* ── Carte produit ────────────────────────────────────────────────────── */
.se-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(224px, 1fr)); gap: 24px; }

.se-card { display: flex; flex-direction: column; height: 100%; }
.se-card__media { position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); aspect-ratio: 1 / 1.16; display: grid; place-items: center;
  overflow: hidden; transition: border-color .25s, transform .35s var(--ease), box-shadow .3s; }
.se-card:hover .se-card__media { border-color: var(--ink); transform: translateY(-4px);
  box-shadow: var(--shadow); }
.se-card__media svg { width: 58%; height: auto; color: var(--ink); transition: transform .45s var(--ease); }
.se-card:hover .se-card__media svg { transform: scale(1.07); }
.se-card__badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.se-card__size { position: absolute; right: 10px; bottom: 10px; font-size: .64rem;
  letter-spacing: .1em; color: var(--ink-faint); }
.se-card__quick { position: absolute; left: 10px; right: 10px; bottom: 10px;
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .3s var(--ease); }
.se-card:hover .se-card__quick, .se-card:focus-within .se-card__quick { opacity: 1; transform: none; }
.se-card:hover .se-card__size { opacity: 0; }
@media (hover: none) { .se-card__quick { opacity: 1; transform: none; } .se-card__size { display: none; } }

.se-card__body { padding: 14px 2px 0; display: flex; flex-direction: column; flex: 1; }
.se-card__meta { font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--ink-faint); margin-bottom: .5em; }
.se-card__name { font-family: var(--serif); font-size: 1.28rem; line-height: 1.1; margin: 0 0 .3em; }
.se-card__short { font-size: .82rem; color: var(--ink-soft); margin: 0 0 .9em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.se-card__price { margin-top: auto; display: flex; align-items: baseline; gap: .5em; flex-wrap: wrap;
  font-size: .95rem; }
.se-card__price b { font-weight: 700; }
.se-card__was { color: var(--ink-faint); text-decoration: line-through; font-size: .84rem; }
.se-card__from { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); }

.se-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(224px, 250px);
  gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 24px 28px;
  max-width: calc(var(--wrap) + 48px); margin: 40px auto 0; scrollbar-width: thin; }
.se-rail > * { scroll-snap-align: start; }
.se-rail::-webkit-scrollbar { height: 6px; }
.se-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

/* ── Bandes sombres ───────────────────────────────────────────────────── */
.se-dark { background: var(--ink); color: var(--paper); }
.se-dark h2, .se-dark h3 { color: var(--paper); }
.se-dark .se-eyebrow { color: rgba(244, 241, 236, .55); }
.se-dark .se-lead, .se-dark p { color: rgba(244, 241, 236, .8); }

/* ── Édito ────────────────────────────────────────────────────────────── */
.se-edito { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 72px);
  align-items: center; }
.se-edito__art { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  aspect-ratio: 1 / 1.1; display: grid; place-items: center; padding: 8%; }
.se-dark .se-edito__art { background: rgba(244, 241, 236, .05); border-color: rgba(244, 241, 236, .18); }
.se-edito__art svg { width: 100%; height: auto; color: var(--ink); }
.se-dark .se-edito__art svg { color: var(--paper); }
.se-edito--flip .se-edito__art { order: 2; }

/* ── Stats ────────────────────────────────────────────────────────────── */
.se-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(244,241,236,.18);
  border: 1px solid rgba(244, 241, 236, .18); }
.se-stat { background: var(--ink); padding: 34px 22px; text-align: center; }
.se-stat__n { font-family: var(--serif); font-size: clamp(2.2rem, 4.6vw, 3.4rem); display: block; line-height: 1; }
.se-stat__l { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em;
  opacity: .7; display: block; margin-top: .9em; }

/* ── Étapes ───────────────────────────────────────────────────────────── */
.se-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.se-step { background: var(--paper); padding: 34px 28px; }
.se-step__n { font-family: var(--serif); font-size: 2.6rem; line-height: 1; display: block;
  margin-bottom: .3em; color: var(--ink-faint); }
.se-step h3 { font-size: 1.24rem; margin-bottom: .35em; }
.se-step p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ── Zones du corps ───────────────────────────────────────────────────── */
.se-zones { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.se-zone { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  padding: .7em 1.2em; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); transition: all .2s; }
.se-zone:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* ── Boutique ─────────────────────────────────────────────────────────── */
.se-pagehead { border-bottom: 1px solid var(--line); padding: clamp(40px, 6vw, 76px) 0 clamp(32px, 4vw, 52px); }
.se-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.se-filter { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  padding: .65em 1.1em; border: 1px solid var(--line); border-radius: var(--r);
  background: transparent; color: var(--ink-soft); transition: all .2s; }
.se-filter:hover { border-color: var(--ink); color: var(--ink); }
.se-filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.se-shopbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 24px 0 26px; }
.se-shopbar__right { margin-left: auto; display: flex; gap: 8px; }
.se-search, .se-select { border: 1px solid var(--line); background: var(--white);
  border-radius: var(--r); padding: .7em 1em; font-size: .82rem; }
.se-search { min-width: 200px; }
.se-search:focus, .se-select:focus { outline: none; border-color: var(--ink); }
.se-select { appearance: none; padding-right: 2.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a453e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8em center; background-size: 14px; }
.se-count-line { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-faint); margin: 0; }
.se-empty { text-align: center; padding: 80px 20px; color: var(--ink-soft); }

/* ── Fiche produit ────────────────────────────────────────────────────── */
.se-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: start; padding-top: 36px; }
/* `sticky` sert aussi de référentiel aux enfants en position absolue (le liseré
   ::before et l'étiquette de taille). Ne jamais redéclarer `position` plus bas
   dans ce bloc, ni la passer à `static` en responsive : les absolus se
   rattacheraient alors à la page entière. */
.se-pdp__art { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); aspect-ratio: 1 / 1.1;
  display: grid; place-items: center; }
.se-pdp__art svg { width: 56%; height: auto; color: var(--ink); }
.se-pdp__art::before { content: ""; position: absolute; inset: 18px; border: 1px solid var(--line); }
.se-pdp__scale { position: absolute; left: 26px; bottom: 24px; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.se-crumbs { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-faint); margin-bottom: 1.6em; }
.se-crumbs a:hover { color: var(--ink); }
.se-pdp h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: .2em; }
.se-pdp__hook { font-size: 1.06rem; color: var(--ink-soft); }
.se-pdp__price { display: flex; align-items: baseline; gap: .6em; flex-wrap: wrap; margin: 1.3em 0 .3em; }
.se-pdp__price b { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.se-pdp__tax { font-size: .74rem; color: var(--ink-faint); margin-bottom: 1.8em; }

.se-opt { margin-bottom: 1.6em; }
.se-opt__label { display: block; font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--ink-faint); margin-bottom: .8em; }
.se-opt__list { display: flex; flex-wrap: wrap; gap: 8px; }
.se-opt__btn { border: 1px solid var(--line); background: var(--white); border-radius: var(--r);
  padding: .75em 1.1em; font-size: .84rem; font-weight: 600; text-align: left; transition: all .2s; }
.se-opt__btn small { display: block; font-weight: 400; color: var(--ink-faint); font-size: .78rem; }
.se-opt__btn:hover { border-color: var(--ink); }
.se-opt__btn[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.se-opt__btn[aria-pressed="true"] small { color: rgba(244, 241, 236, .7); }

.se-qty { display: inline-flex; align-items: center; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--white); }
.se-qty button { width: 42px; height: 48px; font-size: 1.1rem; color: var(--ink-soft); }
.se-qty button:hover { background: var(--paper-2); color: var(--ink); }
.se-qty span { min-width: 34px; text-align: center; font-weight: 700; }
.se-buy { display: flex; gap: 10px; margin-bottom: 1.8em; }
.se-buy .se-btn { flex: 1; }

.se-reassure { display: grid; gap: 11px; padding: 22px; background: var(--paper-2);
  border-radius: var(--r); margin-bottom: 1.8em; font-size: .86rem; }
.se-reassure div { display: flex; gap: 11px; align-items: flex-start; }
.se-reassure svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.se-warn { font-size: .8rem; color: var(--ink-soft); background: var(--rouge-soft);
  border-left: 3px solid var(--rouge); padding: 14px 16px; border-radius: var(--r); margin-bottom: 1.8em; }

.se-acc { border-top: 1px solid var(--line); }
.se-acc__item { border-bottom: 1px solid var(--line); }
.se-acc__head { width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 1.2em 0; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; text-align: left; }
.se-acc__head svg { width: 16px; height: 16px; flex: none; transition: transform .3s var(--ease); }
.se-acc__head[aria-expanded="true"] svg { transform: rotate(45deg); }
.se-acc__body { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.se-acc__body > div { padding: 0 0 1.5em; font-size: .92rem; color: var(--ink-soft); }
.se-acc__body ul, .se-acc__body ol { padding-left: 1.2em; margin: 0; }
.se-acc__body li { margin-bottom: .45em; }
.se-specs div { display: flex; justify-content: space-between; gap: 20px; padding: .6em 0;
  border-bottom: 1px dashed var(--line); font-size: .88rem; }
.se-specs div:last-child { border: none; }
.se-specs dt { color: var(--ink-faint); }
.se-specs dd { margin: 0; text-align: right; }

/* ── Panier ───────────────────────────────────────────────────────────── */
.se-cart { display: grid; grid-template-columns: 1.55fr .85fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
.se-line { display: grid; grid-template-columns: 86px 1fr auto; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--line); align-items: center; }
.se-line__art { width: 86px; height: 96px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); display: grid; place-items: center; }
.se-line__art svg { width: 62%; height: auto; color: var(--ink); }
.se-line__name { font-family: var(--serif); font-size: 1.2rem; margin: 0 0 .1em; }
.se-line__var { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-faint); margin: 0 0 .7em; }
.se-line__rm { font-size: .74rem; text-decoration: underline; color: var(--ink-faint); }
.se-line__rm:hover { color: var(--rouge); }
.se-line__price { text-align: right; font-weight: 700; white-space: nowrap; }

.se-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.se-summary__row { display: flex; justify-content: space-between; gap: 16px; padding: .5em 0; font-size: .9rem; }
.se-summary__row--total { border-top: 1px solid var(--line); margin-top: .7em; padding-top: 1em;
  font-size: 1.15rem; font-weight: 700; }

/* ── Tiroir ───────────────────────────────────────────────────────────── */
.se-drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.se-drawer__veil { position: absolute; inset: 0; background: rgba(20, 20, 20, .45); opacity: 0; transition: opacity .3s; }
.se-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--paper); display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .4s var(--ease); }
.se-drawer.is-open { pointer-events: auto; }
.se-drawer.is-open .se-drawer__veil { opacity: 1; }
.se-drawer.is-open .se-drawer__panel { transform: none; }
.se-drawer__head { display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line); }
.se-drawer__head h3 { margin: 0; }
.se-drawer__body { flex: 1; overflow-y: auto; padding: 0 24px; }
.se-drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--white); }
.se-drawer .se-line { grid-template-columns: 64px 1fr auto; padding: 16px 0; gap: 14px; }
.se-drawer .se-line__art { width: 64px; height: 72px; }

/* ── Toast ────────────────────────────────────────────────────────────── */
.se-toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 140%);
  background: var(--ink); color: var(--paper); padding: 1em 1.6em; border-radius: var(--r);
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  z-index: 120; transition: transform .35s var(--ease); max-width: calc(100% - 40px); text-align: center; }
.se-toast.is-on { transform: translate(-50%, 0); }

/* ── Prose ────────────────────────────────────────────────────────────── */
.se-prose { max-width: 70ch; }
.se-prose h2 { margin-top: 1.6em; }
.se-prose h3 { margin-top: 1.4em; font-size: 1.2rem; }
.se-prose ul, .se-prose ol { padding-left: 1.3em; }
.se-prose li { margin-bottom: .45em; }
.se-prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Newsletter ───────────────────────────────────────────────────────── */
.se-news { text-align: center; padding: clamp(44px, 7vw, 84px) 24px; }
.se-news__form { display: flex; gap: 8px; max-width: 440px; margin: 2em auto 0; flex-wrap: wrap; }
.se-news__form input { flex: 1 1 220px; border: 1px solid rgba(244, 241, 236, .3);
  background: transparent; color: var(--paper); border-radius: var(--r); padding: 1em 1.2em; font-size: .9rem; }
.se-news__form input::placeholder { color: rgba(244, 241, 236, .45); }
.se-news__form input:focus { outline: none; border-color: var(--paper); }
.se-news__ok { display: block; margin-top: 1.2em; font-size: .82rem; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.se-footer { background: var(--ink); color: rgba(244, 241, 236, .7); padding: clamp(48px, 6vw, 80px) 0 28px; }
.se-footer a { color: rgba(244, 241, 236, .7); }
.se-footer a:hover { color: var(--paper); }
.se-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.se-footer h4 { color: var(--paper); }
.se-footer ul { list-style: none; margin: 0; padding: 0; }
.se-footer li { margin-bottom: .6em; font-size: .88rem; }
.se-footer .se-logo { color: var(--paper); display: block; margin-bottom: 1.2em; }
.se-footer__about { font-size: .88rem; max-width: 32ch; }
.se-footer__pay { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 1.5em; align-items: center; }
/* Logos monochromes : la couleur vient de currentColor, la pastille sert
   surtout à les détacher du fond sombre. */
.se-pay { display: grid; place-items: center; height: 30px; padding: 0 9px;
  border: 1px solid rgba(244, 241, 236, .2); border-radius: var(--r);
  color: rgba(244, 241, 236, .78); transition: color .2s, border-color .2s; }
.se-pay:hover { color: var(--paper); border-color: rgba(244, 241, 236, .45); }
.se-pay svg { height: 15px; width: auto; fill: currentColor; }
.se-footer__bottom { border-top: 1px solid rgba(244, 241, 236, .14); margin-top: 44px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .76rem; opacity: .65; }

/* ── Révélation ───────────────────────────────────────────────────────── */
.se-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease); }
.se-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .se-reveal { opacity: 1; transform: none; transition: none; }
  .se-ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .se-cats, .se-steps { grid-template-columns: repeat(2, 1fr); }
  .se-footer__grid { grid-template-columns: 1fr 1fr; }
  .se-cart { grid-template-columns: 1fr; }
  .se-summary { position: static; }
}
@media (max-width: 860px) {
  .se-nav { display: none; }
  .se-burger { display: grid; }
  .se-tools { margin-left: auto; }
  .se-hero__grid, .se-edito, .se-pdp { grid-template-columns: 1fr; }
  .se-edito--flip .se-edito__art { order: 0; }
  /* `relative` et non `static` : on annule le collage en haut de page tout en
     gardant le référentiel des enfants absolus. */
  .se-pdp__art { position: relative; top: auto; }
  .se-stats { grid-template-columns: repeat(2, 1fr); }
  .se-hero__art { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .se-cats, .se-steps { grid-template-columns: 1fr; }
  .se-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .se-card__short { display: none; }
  .se-card__name { font-size: 1.06rem; }
  .se-footer__grid { grid-template-columns: 1fr; }
  .se-shopbar__right { margin-left: 0; width: 100%; }
  .se-search { flex: 1; min-width: 0; }
  .se-line { grid-template-columns: 70px 1fr; }
  .se-line__price { grid-column: 2; text-align: left; }
}
