/* ====================================================================
   Merch interne — feuille de style de base + thèmes commutables
   Tonalité (data-tone) × accent (var --accent) × densité (data-density)
   ==================================================================== */

:root {
  /* accent par défaut : rouge de marque #C22032 (surchargé par le Tweak --accent) */
  --accent: #c22032;
  --accent-ink: #fff;
  --accent-soft: color-mix(in oklch, var(--accent) 14%, var(--surface));
  --accent-line: color-mix(in oklch, var(--accent) 32%, var(--surface));

  /* statuts */
  --ok: oklch(0.6 0.12 150);
  --ok-soft: color-mix(in oklch, var(--ok) 16%, var(--surface));
  --warn: oklch(0.72 0.13 70);
  --warn-soft: color-mix(in oklch, var(--warn) 18%, var(--surface));
  --bad: oklch(0.58 0.17 25);
  --bad-soft: color-mix(in oklch, var(--bad) 15%, var(--surface));
  --info: oklch(0.6 0.1 250);
  --info-soft: color-mix(in oklch, var(--info) 15%, var(--surface));

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.3 0.02 60 / 0.06), 0 1px 1px oklch(0.3 0.02 60 / 0.04);
  --shadow: 0 4px 16px oklch(0.3 0.02 60 / 0.08), 0 1px 3px oklch(0.3 0.02 60 / 0.05);
  --shadow-lg: 0 24px 60px oklch(0.25 0.02 60 / 0.18), 0 8px 24px oklch(0.25 0.02 60 / 0.1);

  --pad: 24px;
  --gap: 16px;
  --row-h: 56px;
  --fs: 15px;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

/* ── Tonalités neutres ─────────────────────────────────────────────────── */
[data-tone="warm"] {
  --bg: oklch(0.986 0.004 70);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.972 0.004 70);
  --ink: oklch(0.24 0.012 48);
  --ink-soft: oklch(0.44 0.012 48);
  --muted: oklch(0.58 0.01 50);
  --faint: oklch(0.72 0.008 55);
  --line: oklch(0.918 0.005 70);
  --line-strong: oklch(0.865 0.006 70);
}
[data-tone="cool"] {
  --bg: oklch(0.975 0.006 230);
  --surface: oklch(0.997 0.003 230);
  --surface-2: oklch(0.96 0.007 230);
  --ink: oklch(0.27 0.02 255);
  --ink-soft: oklch(0.45 0.02 255);
  --muted: oklch(0.6 0.018 250);
  --faint: oklch(0.72 0.014 250);
  --line: oklch(0.906 0.01 240);
  --line-strong: oklch(0.85 0.012 240);
}
[data-tone="neutral"] {
  --bg: oklch(0.973 0.002 250);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.957 0.002 250);
  --ink: oklch(0.26 0.004 270);
  --ink-soft: oklch(0.45 0.004 270);
  --muted: oklch(0.6 0.004 270);
  --faint: oklch(0.72 0.003 270);
  --line: oklch(0.905 0.003 270);
  --line-strong: oklch(0.85 0.004 270);
}

/* ── Densités ──────────────────────────────────────────────────────────── */
[data-density="compact"] { --pad: 16px; --gap: 11px; --row-h: 46px; --fs: 14px; }
[data-density="comfy"]   { --pad: 30px; --gap: 20px; --row-h: 64px; --fs: 15.5px; }

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--fs);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { min-height: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--accent-soft); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.mono { font-family: var(--font-mono); }

/* ── App shell ─────────────────────────────────────────────────────────── */
.app { display: flex; flex-direction: column; min-height: 100vh; }

/* ── Header full-width « À la une » ────────────────────────────────────── */
.hero { position: relative; width: 100%; height: clamp(220px, 27vw, 340px); overflow: hidden; background: var(--ink); border-bottom: 1px solid var(--line); }
.hero-imgs { position: absolute; inset: 0; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; transform: scale(1.03); }
.hero-img[data-on="1"] { opacity: 1; }
.hero-veil { position: absolute; inset: 0; pointer-events: none; background:
  linear-gradient(90deg, oklch(0.16 0.03 30 / 0.86) 0%, oklch(0.16 0.03 30 / 0.5) 40%, oklch(0.16 0.03 30 / 0.06) 72%, transparent 100%),
  linear-gradient(0deg, oklch(0.13 0.03 30 / 0.7) 0%, transparent 52%); }
.hero-inner { position: relative; height: 100%; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: clamp(20px, 4vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-text { max-width: 660px; color: #fff; }
.hero-kicker { display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent);
  padding: 4px 11px; border-radius: 999px; box-shadow: 0 4px 14px oklch(0.16 0.03 30 / 0.4); }
.hero-title { font-size: clamp(28px, 4.2vw, 48px); color: #fff; margin-top: 13px; line-height: 1.02;
  text-transform: uppercase; letter-spacing: 0.008em; text-shadow: 0 2px 24px oklch(0.13 0.03 30 / 0.45); }
.hero-desc { color: rgba(255, 255, 255, 0.88); font-size: clamp(13px, 1.4vw, 16px); margin: 9px 0 0; max-width: 540px; line-height: 1.5; }
.hero-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 15px; }
.hero-chip { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: rgba(255, 255, 255, 0.22); backdrop-filter: blur(6px); white-space: nowrap; }
.hero-credit { position: absolute; right: clamp(20px, 4vw, 40px); bottom: clamp(16px, 3vw, 28px);
  display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.72);
  font-size: 11.5px; font-family: var(--font-mono); letter-spacing: 0.03em; }
.hero-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 14px; display: flex; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.45); padding: 0; transition: all 0.25s; }
.hero-dots button[data-on="1"] { background: #fff; width: 24px; border-radius: 999px; }
@media (max-width: 600px) { .hero-credit { display: none; } }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 18px;
  padding: 0 clamp(16px, 4vw, 40px); height: 64px;
  background: color-mix(in oklch, var(--surface) 82%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 18px; white-space: nowrap; }
.brand .glyph {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 15px; box-shadow: var(--shadow-sm);
}
.brand small { font-family: var(--font-ui); font-weight: 500; font-size: 11px; color: var(--muted); display: block; margin-top: -3px; letter-spacing: .02em; }

.nav-seg { display: flex; gap: 3px; padding: 3px; background: var(--surface-2); border-radius: 11px; border: 1px solid var(--line); }
.nav-seg button {
  border: 0; background: transparent; color: var(--ink-soft);
  font-weight: 600; font-size: 13.5px; padding: 7px 15px; border-radius: 8px;
  display: flex; align-items: center; gap: 7px; transition: all .15s;
}
.nav-seg button:hover { color: var(--ink); }
.nav-seg button[data-active="1"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

.spacer { flex: 1; }

.iconbtn {
  position: relative; width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
  display: grid; place-items: center; transition: all .15s;
}
.iconbtn:hover { color: var(--ink); border-color: var(--line-strong); background: var(--surface-2); }
.iconbtn .count {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--accent); color: var(--accent-ink);
  font-size: 11px; font-weight: 700; display: grid; place-items: center; border: 2px solid var(--surface);
}
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  border: 1px solid var(--accent-line);
}

.page { padding: clamp(20px, 4vw, 40px); max-width: 1280px; margin: 0 auto; width: 100%; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 { font-size: clamp(26px, 3.4vw, 34px); }
.page-head p { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; }
.eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }

/* ── Boutons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 10px; font-weight: 600; font-size: 14px;
  padding: 10px 16px; transition: all .15s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: var(--shadow); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--line-strong); }
.btn-quiet { background: transparent; color: var(--ink-soft); }
.btn-quiet:hover { background: var(--surface-2); color: var(--ink); }
.btn-danger { background: var(--bad-soft); color: var(--bad); }
.btn-danger:hover { background: color-mix(in oklch, var(--bad) 22%, var(--surface)); }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ── Cartes & surfaces ─────────────────────────────────────────────────── */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ── Badges / pills ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; line-height: 1.4; white-space: nowrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-ok   { background: var(--ok-soft); color: var(--ok); }
.badge-warn { background: var(--warn-soft); color: color-mix(in oklch, var(--warn) 75%, black); }
.badge-bad  { background: var(--bad-soft); color: var(--bad); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-neutral { background: var(--surface-2); color: var(--ink-soft); }
.badge-accent { background: var(--accent-soft); color: var(--accent); }

.chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px; background: var(--surface-2);
  color: var(--ink-soft); border: 1px solid var(--line);
}

/* ── Placeholder visuel produit ────────────────────────────────────────── */
.ph {
  position: relative; width: 100%; border-radius: var(--radius-sm); overflow: hidden;
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(135deg, transparent 0 9px, color-mix(in oklch, var(--ink) 5%, transparent) 9px 10px);
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em;
  color: var(--faint); text-transform: lowercase; background: color-mix(in oklch, var(--surface) 70%, transparent);
  padding: 2px 8px; border-radius: 6px;
}
.ph.thumb { width: 48px; height: 38px; flex: none; border-radius: 8px; }
.ph .swatch-tag {
  position: absolute; left: 8px; bottom: 8px; width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--surface); box-shadow: var(--shadow-sm);
}

/* ── Filtres ───────────────────────────────────────────────────────────── */
.filterbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.search {
  display: flex; align-items: center; gap: 9px; flex: 1; min-width: 220px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 0 13px; height: 42px;
}
.search input { border: 0; background: transparent; outline: none; flex: 1; font-size: 14.5px; color: var(--ink); }
.search input::placeholder { color: var(--faint); }
.pill-toggle {
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
  font-weight: 600; font-size: 13px; padding: 9px 14px; border-radius: 999px; transition: all .15s;
}
.pill-toggle:hover { border-color: var(--line-strong); color: var(--ink); }
.pill-toggle[data-active="1"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.seg-mini { display: flex; gap: 2px; padding: 3px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; }
.seg-mini button { border: 0; background: transparent; color: var(--muted); padding: 6px 9px; border-radius: 7px; display: grid; place-items: center; }
.seg-mini button[data-active="1"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ── Grille catalogue ──────────────────────────────────────────────────── */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: var(--gap); }
.prod-card { display: flex; flex-direction: column; overflow: hidden; transition: transform .15s, box-shadow .15s; text-align: left; padding: 0; cursor: pointer; }
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-card .ph { aspect-ratio: 4/3; border-radius: 0; }
.prod-card .pc-body { padding: 14px 15px 15px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pc-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.25; }
.pc-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.pc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }

/* ── Liste catalogue ───────────────────────────────────────────────────── */
.catalog-list { display: flex; flex-direction: column; gap: 9px; }
.list-row {
  display: grid; grid-template-columns: 64px 1.6fr 1fr 1fr auto; align-items: center; gap: 16px;
  padding: 11px 16px; cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.list-row:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.list-row .ph { width: 64px; height: 48px; }
@media (max-width: 720px) {
  .list-row { grid-template-columns: 56px 1fr auto; }
  .list-row .lr-hide { display: none; }
}

/* ── Stock meter ───────────────────────────────────────────────────────── */
.meter { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.meter > i { display: block; height: 100%; border-radius: 999px; }

/* ── Drawer (panier / fiche) ───────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; z-index: 60; background: oklch(0.2 0.02 60 / 0.4); backdrop-filter: blur(2px); animation: fade .2s ease; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61; width: min(440px, 100vw);
  background: var(--surface); border-left: 1px solid var(--line); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: slidein .25s cubic-bezier(.3,.7,.4,1);
}
.drawer-wide { width: min(560px, 100vw); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; gap: 10px; }

@keyframes fade { from { opacity: 0; } }
@keyframes slidein { from { transform: translateX(24px); opacity: .4; } }
@keyframes pop { from { transform: scale(.96); opacity: 0; } }

/* ── Modal centré ──────────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 24px; }
.modal-card { position: relative; z-index: 71; width: min(560px, 100%); max-height: 88vh; overflow-y: auto; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); animation: pop .2s cubic-bezier(.3,.7,.4,1); }

/* ── Size selector ─────────────────────────────────────────────────────── */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 52px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font-weight: 600; font-size: 13.5px; text-align: center; transition: all .12s;
}
.size-btn small { display: block; font-weight: 500; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.size-btn:hover:not(:disabled) { border-color: var(--accent); }
.size-btn[data-active="1"] { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.size-btn[data-active="1"] small { color: color-mix(in oklch, var(--accent) 80%, var(--ink)); }
.size-btn:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* ── Stepper qté ───────────────────────────────────────────────────────── */
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stepper button { width: 38px; height: 38px; border: 0; background: var(--surface); color: var(--ink); font-size: 18px; display: grid; place-items: center; }
.stepper button:hover:not(:disabled) { background: var(--surface-2); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper span { min-width: 40px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ── KPI cards ─────────────────────────────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--gap); margin-bottom: 26px; }
.kpi { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.kpi .k-label { font-size: 12.5px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 7px; }
.kpi .k-value { font-family: var(--font-display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.kpi .k-sub { font-size: 12px; color: var(--faint); }
.kpi .k-ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }

/* ── Tableau admin ─────────────────────────────────────────────────────── */
.tablewrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.data th {
  text-align: left; font-weight: 600; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); padding: 12px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; position: sticky; top: 0;
  background: var(--surface);
}
table.data td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tbody tr:hover { background: var(--surface-2); }
table.data tbody tr:last-child td { border-bottom: 0; }
.num { font-variant-numeric: tabular-nums; text-align: right; }
.cell-prod { display: flex; align-items: center; gap: 11px; }
.cell-prod .ph { width: 42px; height: 34px; flex: none; }
.linkish { color: var(--accent); font-weight: 600; text-decoration: none; }
.linkish:hover { text-decoration: underline; }

/* ── Tabs admin ────────────────────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 22px; overflow-x: auto; }
.tabs button {
  border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: 14px;
  padding: 11px 4px; margin-right: 18px; border-bottom: 2px solid transparent; white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.tabs button:hover { color: var(--ink); }
.tabs button[data-active="1"] { color: var(--ink); border-bottom-color: var(--accent); }
.tabs .tnum { font-size: 11px; background: var(--surface-2); color: var(--ink-soft); border-radius: 999px; padding: 1px 7px; font-weight: 700; }

/* ── Form fields ───────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.field .hint { font-size: 11.5px; color: var(--faint); font-weight: 500; }
.input, .select, .textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  color: var(--ink); padding: 10px 12px; font-size: 14px; outline: none; transition: border-color .15s;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); }
.textarea { resize: vertical; min-height: 70px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.divider { height: 1px; background: var(--line); margin: 18px 0; }

/* ── empty state ───────────────────────────────────────────────────────── */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--surface-2); display: grid; place-items: center; margin: 0 auto 14px; color: var(--faint); }

/* ── toast ─────────────────────────────────────────────────────────────── */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  display: flex; align-items: center; gap: 10px; background: var(--ink); color: var(--surface);
  padding: 11px 16px; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: 13.5px; font-weight: 600;
  animation: pop .2s cubic-bezier(.3,.7,.4,1);
}
.toast .tic { color: var(--ok); display: grid; place-items: center; }

/* ── misc ──────────────────────────────────────────────────────────────── */
.row { display: flex; align-items: center; gap: 10px; }
.col { display: flex; flex-direction: column; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.strong { font-weight: 700; }
.right { text-align: right; }
.nowrap { white-space: nowrap; }
.sec-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }

/* ====================================================================
   Marque — typographie en capitales
   Tout le chrome (titres, nav, boutons, badges, libellés) passe en
   majuscules ; on épargne le texte long (descriptions, notes, saisies)
   pour préserver la lisibilité.
   ==================================================================== */
h1, h2, h3, h4,
.brand, .brand small,
.eyebrow,
.nav-seg button,
.btn,
.badge, .chip,
.pill-toggle,
.seg-mini button,
.pc-title,
.k-label, .k-sub,
.sec-title,
.tabs button,
.field label,
.size-btn,
.stepper span,
.page-head p,
.empty .strong,
.toast,
th, td .strong {
  text-transform: uppercase;
}
h1, h2, h3, h4 { letter-spacing: 0.005em; }
.brand, .pc-title, .sec-title, .k-label { letter-spacing: 0.02em; }
.btn, .badge, .chip, .pill-toggle, .nav-seg button, .tabs button,
.eyebrow, .field label, .k-sub, .page-head p { letter-spacing: 0.045em; }
.search input::placeholder { text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; }
/* le rouge de marque comme accent typographique sur les surtitres */
.eyebrow { font-weight: 700; }
