/* Charte produit-digital.com, variante « easyebooks » (celle appliquée par
   défaut sur le site), THÈME CLAIR uniquement.
   Accent or (#d7a44a → #b8862f), gris bleutés, fond #faf9f6 sous un voile
   doré et des particules, en-tête et pied blancs translucides, sections
   alternées blanches bordées, Inter partout, couverture de livre sombre
   bleu nuit à texte or, posée avec ombre portée et légère inclinaison. */

:root {
  --page: #faf9f6;
  --blanc: #ffffff;
  --gris-50: #f5f7fa;
  --gris-100: #eceff5;
  --gris-200: #dee3ec;
  --gris-300: #c4cbd9;
  --gris-400: #949eb2;
  --gris-500: #6c778c;
  --gris-600: #4f5a6e;
  --gris-700: #364051;
  --gris-800: #242b38;
  --gris-900: #161b25;
  --gris-950: #0d1016;
  --accent-50: #fcf7ed;
  --accent-100: #f9eed8;
  --accent-200: #f3e0b4;
  --accent-300: #ebce89;
  --accent-400: #e0b85f;
  --accent-500: #d7a44a;
  --accent-600: #b8862f;
  --accent-700: #946922;
  --vert: #059669;
  --vert-50: #ecfdf5;
  --rouge: #dc2626;
  --rouge-50: #fef2f2;
  --ambre: #d97706;
  --ambre-50: #fffbeb;
  --ombre-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --ombre-carte: 0 1px 2px rgb(0 0 0 / 0.04);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--page);
  color: var(--gris-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
[hidden] { display: none !important; }
main { flex: 1; position: relative; }

/* Fond du site : voile doré qui dérive lentement + particules qui montent. */
.fond { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fond::before {
  content: "";
  position: absolute;
  inset: -22%;
  background-image:
    radial-gradient(46% 40% at 16% 10%, rgb(224 184 95 / 0.34), transparent 72%),
    radial-gradient(38% 36% at 88% 24%, rgb(196 203 217 / 0.35), transparent 72%),
    radial-gradient(42% 36% at 58% 92%, rgb(235 206 137 / 0.30), transparent 72%),
    radial-gradient(26% 24% at 38% 46%, rgb(243 224 180 / 0.20), transparent 72%);
  animation: derive 55s ease-in-out infinite alternate;
}
.fond::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 420px 480px;
  background-image:
    radial-gradient(3px 3px at 40px 420px, rgb(224 184 95 / 0.55) 50%, transparent 51%),
    radial-gradient(2.5px 2.5px at 150px 240px, rgb(148 158 178 / 0.45) 50%, transparent 51%),
    radial-gradient(3.5px 3.5px at 260px 460px, rgb(235 206 137 / 0.50) 50%, transparent 51%),
    radial-gradient(2.5px 2.5px at 350px 120px, rgb(215 164 74 / 0.38) 50%, transparent 51%),
    radial-gradient(3px 3px at 90px 40px, rgb(196 203 217 / 0.48) 50%, transparent 51%),
    radial-gradient(2.5px 2.5px at 300px 320px, rgb(224 184 95 / 0.42) 50%, transparent 51%),
    radial-gradient(2px 2px at 200px 380px, rgb(215 164 74 / 0.35) 50%, transparent 51%),
    radial-gradient(2.5px 2.5px at 390px 260px, rgb(148 158 178 / 0.40) 50%, transparent 51%);
  animation: monter 75s linear infinite;
}
@keyframes derive {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.06); }
}
@keyframes monter { to { background-position: 0 -480px; } }
@media (prefers-reduced-motion: reduce) { .fond::before, .fond::after { animation: none; } }

.conteneur { width: 100%; max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }

/* ── En-tête ───────────────────────────────────────────────── */
.entete {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--gris-200);
  background: rgb(255 255 255 / 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.entete-int { height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.marque {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}
.marque-logo { display: flex; align-items: center; justify-content: center; padding: 0.375rem; border-radius: 0.75rem; background: #1c1913; flex: none; }
.marque-logo svg { display: block; }
.accent { color: var(--accent-600); }
.nav { display: none; align-items: center; gap: 0.25rem; font-size: 0.875rem; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav a { padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-weight: 500; color: var(--gris-600); text-decoration: none; white-space: nowrap; }
.nav a:hover { background: var(--gris-100); color: var(--gris-900); }
.entete-actions { display: flex; align-items: center; gap: 0.5rem; }
.entete-actions .btn-contour { display: none; }
@media (min-width: 640px) { .entete-actions .btn-contour { display: inline-flex; } }

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.6; cursor: wait; }
/* Bouton d'action (en-tête, cartes, formulaire) : or-600 → or-700, texte blanc. */
.btn-primaire { background: var(--accent-600); color: #fff; }
.btn-primaire:hover { background: var(--accent-700); }
.btn-contour { background: var(--blanc); color: var(--gris-900); border-color: var(--gris-300); font-weight: 600; }
.btn-contour:hover { background: var(--gris-100); }
/* Pilules du héros : or-500 → or-400, texte gris-950 ; contour gris-300 → or-500. */
.btn-pilule { border-radius: 9999px; padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 600; background: var(--accent-500); color: var(--gris-950); }
.btn-pilule:hover { background: var(--accent-400); }
.btn-pilule-contour { border-radius: 9999px; padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 600; background: transparent; color: var(--gris-700); border-color: var(--gris-300); }
.btn-pilule-contour:hover { border-color: var(--accent-500); }
.btn-sm { padding: 0.625rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
.btn-bloc { width: 100%; }

/* ── Surtitres et badges ───────────────────────────────────── */
.sur-titre {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.sur-titre svg { flex: none; }
.badge {
  display: inline-block;
  border-radius: 9999px;
  background: var(--accent-600);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}

/* ── Héros ─────────────────────────────────────────────────── */
.heros { position: relative; overflow: hidden; }
.heros-lueur {
  pointer-events: none;
  position: absolute;
  top: -10rem;
  right: 0;
  width: 760px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(215, 164, 74, 0.16), transparent 72%);
}
.heros-int {
  position: relative;
  display: grid;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) { .heros-int { grid-template-columns: 1.02fr 0.98fr; } }
.heros h1 {
  margin: 1.25rem 0 0;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gris-900);
}
.heros h1 em { font-style: italic; color: var(--accent-600); }
.heros-texte { margin: 1.5rem 0 0; max-width: 36rem; font-size: 1.125rem; color: var(--gris-600); }
.heros-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.heros-note { margin: 1.25rem 0 0; font-size: 0.875rem; color: var(--gris-500); }
.heros-visuel { display: flex; justify-content: center; }
@media (min-width: 1024px) { .heros-visuel { justify-content: flex-end; } }

/* Livre posé : tranche crème à gauche, ombre portée profonde, inclinaison. */
.livre { display: block; text-decoration: none; color: inherit; }
.livre-int {
  position: relative;
  transform: rotate(1.5deg);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s;
}
a.livre:hover .livre-int { transform: rotate(0deg) translateY(-4px); }
.tranche {
  position: absolute;
  left: -0.75rem;
  top: 0.375rem;
  bottom: 0.375rem;
  width: 0.875rem;
  border-radius: 0.25rem 0 0 0.25rem;
  background: linear-gradient(90deg, #cdbfa6, #efe7d6 60%, #d6c9b2);
}
.livre .couverture { width: 292px; max-width: 74vw; box-shadow: none; }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-entete { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section-entete h2 { margin: 1rem 0 0; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--gris-900); }
@media (min-width: 640px) { .section-entete h2 { font-size: 2.25rem; } }
.section-entete p { margin: 1rem 0 0; color: var(--gris-600); }
/* Bande pleine largeur, blanche et bordée, comme les sections alternées du site. */
.bande { border-top: 1px solid var(--gris-200); border-bottom: 1px solid var(--gris-200); background: var(--blanc); }

/* ── Grille produits & cartes ──────────────────────────────── */
.grille-produits { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); gap: 1.5rem; }
.carte {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 1px solid var(--gris-200);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--ombre-carte);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.carte:hover { border-color: var(--accent-300); transform: translateY(-2px); }
.carte-visuel { position: relative; display: grid; place-items: center; padding: 1.25rem 0 1.75rem; }
.carte-visuel .badge { position: absolute; top: 0; left: 0; }
.carte-corps { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.carte-titre { margin: 0; font-size: 1.0625rem; font-weight: 600; line-height: 1.25; color: var(--gris-900); }
.carte-resume { margin: 0; font-size: 0.875rem; color: var(--gris-500); }
.carte-pied { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.prix { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; white-space: nowrap; color: var(--gris-900); }
.prix-barre { margin-left: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--gris-400); text-decoration: line-through; }

/* ── Couverture : image, ou livre généré bleu nuit à texte or ── */
.couverture { width: min(62%, 11rem); aspect-ratio: 292 / 414; border-radius: 0.125rem; overflow: hidden; box-shadow: var(--ombre-2xl); background: #12161f; }
.couverture img { width: 100%; height: 100%; object-fit: cover; }
.couverture-generee {
  display: flex;
  flex-direction: column;
  padding: 10% 9%;
  color: #f3efe6;
  background:
    radial-gradient(110% 70% at 80% 0%, rgba(215, 164, 74, 0.24), transparent 62%),
    linear-gradient(155deg, #1e2634, #12161f 60%, #0b0e14);
  border: 1px solid rgb(215 164 74 / 0.25);
  container-type: inline-size;
}
.couv-genre { font-size: 4.4cqw; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-400); }
.couv-titre { margin-top: 5cqw; font-weight: 800; font-size: 9.6cqw; line-height: 1.1; letter-spacing: -0.01em; text-transform: uppercase; color: #fff; overflow-wrap: anywhere; }
.couv-ligne { display: block; width: 15cqw; height: 1px; background: var(--accent-400); margin: 6cqw 0; }
.couv-sous { font-style: italic; font-size: 5.2cqw; line-height: 1.4; color: #bdb8ab; }
.couv-auteur { margin-top: auto; padding-top: 6cqw; font-size: 3.8cqw; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gris-500); }

/* ── Étapes ────────────────────────────────────────────────── */
.confiance { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.confiance-item { padding: 1.5rem; border: 1px solid var(--gris-200); border-radius: 1rem; background: var(--gris-50); }
.confiance-num { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--accent-600); }
.confiance-item strong { display: block; margin-top: 0.75rem; font-size: 1.0625rem; font-weight: 600; color: var(--gris-900); }
.confiance-item span { display: block; margin-top: 0.5rem; font-size: 0.9rem; color: var(--gris-600); }

/* ── Fiche produit ─────────────────────────────────────────── */
.fil { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8125rem; color: var(--gris-500); padding-top: 1.5rem; }
.fil a { text-decoration: none; color: var(--gris-500); }
.fil a:hover { color: var(--accent-600); }
.fiche { display: grid; gap: 3rem; padding: 2rem 0 4rem; align-items: start; }
@media (min-width: 900px) { .fiche { grid-template-columns: 5fr 6fr; gap: 3.5rem; padding-top: 2.5rem; } }
.fiche-visuel { position: relative; display: flex; justify-content: center; padding: 2.5rem 0; }
.fiche-visuel .heros-lueur { top: -6rem; right: -8rem; width: 560px; height: 480px; }
@media (min-width: 900px) { .fiche-visuel { position: sticky; top: 5.5rem; } }
.fiche-titre { margin: 0.75rem 0 0; font-size: clamp(1.875rem, 4vw, 2.5rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; color: var(--gris-900); }
.fiche-sous { margin: 0.75rem 0 0; font-size: 1.125rem; color: var(--gris-600); }
.fiche-prix { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.25rem; flex-wrap: wrap; }
.fiche-prix .prix { font-size: 2rem; }
.fiche-prix small { font-size: 0.8125rem; color: var(--gris-500); margin-left: 0.5rem; }
.points { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.625rem; }
.points li { display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.9375rem; color: var(--gris-600); }
.points svg { flex: none; margin-top: 0.2rem; color: var(--accent-600); }
.description { max-width: 46rem; padding-bottom: 4rem; }
.description h2 { font-size: 1.5rem; letter-spacing: -0.02em; margin: 0 0 1rem; color: var(--gris-900); }
.description p { margin: 0 0 1rem; color: var(--gris-600); line-height: 1.7; }

/* ── Formulaire de paiement ────────────────────────────────── */
.formulaire { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--gris-200); border-radius: 1rem; background: var(--blanc); box-shadow: var(--ombre-carte); }
.formulaire h2 { margin: 0 0 0.25rem; font-size: 1.125rem; color: var(--gris-900); }
.formulaire-note { margin: 0 0 1.25rem; font-size: 0.875rem; color: var(--gris-500); }
.champs { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .champs { grid-template-columns: 1fr 1fr; } .champ-large { grid-column: 1 / -1; } }
.champ { display: flex; flex-direction: column; gap: 0.375rem; }
.champ label { font-size: 0.875rem; font-weight: 600; color: var(--gris-900); }
.champ label small { font-weight: 400; color: var(--gris-400); }
.champ input { width: 100%; border: 1px solid var(--gris-300); border-radius: 0.75rem; padding: 0.75rem 1rem; background: var(--blanc); color: var(--gris-900); }
.champ input:focus { outline: 2px solid var(--accent-500); outline-offset: 1px; border-color: transparent; }
.champ input[aria-invalid="true"] { border-color: var(--rouge); }
.champ-erreur { font-size: 0.8125rem; color: var(--rouge); }
.formulaire .btn { margin-top: 1.25rem; }
.securite { margin: 0.875rem 0 0; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.75rem; color: var(--gris-500); text-align: center; }
.securite svg { flex: none; color: var(--vert); }
.piege { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ── Alertes ───────────────────────────────────────────────── */
.alerte { padding: 0.875rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; border: 1px solid transparent; margin-bottom: 1rem; }
.alerte-erreur { background: var(--rouge-50); color: var(--rouge); border-color: #fecaca; }
.alerte-info { background: var(--accent-50); color: var(--accent-700); border-color: var(--accent-300); }

/* ── Page d'état (merci / erreur) ──────────────────────────── */
.etat-page { min-height: calc(100dvh - 4rem); display: grid; place-items: center; padding: 3rem 0; }
.etat { width: 100%; max-width: 32rem; padding: 2.5rem 2rem; border: 1px solid var(--gris-200); border-radius: 1rem; background: var(--blanc); box-shadow: var(--ombre-carte); text-align: center; }
.etat h1 { margin: 1.25rem 0 0; font-size: 1.75rem; letter-spacing: -0.02em; color: var(--gris-900); }
.etat p { margin: 0.75rem 0 0; color: var(--gris-600); }
.etat .btn { margin-top: 1.5rem; }
.rond { width: 4rem; height: 4rem; margin: 0 auto; display: grid; place-items: center; border-radius: 9999px; }
.rond-violet { background: var(--accent-50); color: var(--accent-600); }
.rond-vert { background: var(--vert-50); color: var(--vert); }
.rond-rouge { background: var(--rouge-50); color: var(--rouge); }
.rond-ambre { background: var(--ambre-50); color: var(--ambre); }
.tourne { width: 1.75rem; height: 1.75rem; border-radius: 9999px; border: 3px solid var(--accent-100); border-top-color: var(--accent-600); animation: tourner 0.9s linear infinite; }
@keyframes tourner { to { transform: rotate(360deg); } }
.recap { margin: 1.5rem 0 0; padding: 1rem 1.25rem; border-radius: 0.75rem; background: var(--gris-50); border: 1px solid var(--gris-200); text-align: left; font-size: 0.875rem; display: grid; gap: 0.375rem; }
.recap div { display: flex; justify-content: space-between; gap: 1rem; }
.recap dt { color: var(--gris-500); }
.recap dd { margin: 0; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.discret { font-size: 0.75rem; color: var(--gris-400); }
.etat .discret { margin-top: 1rem; }

/* ── Pages texte (CGV, mentions) ───────────────────────────── */
.prose { max-width: 44rem; margin: 2.5rem auto 4rem; padding: 2.5rem; background: var(--blanc); border: 1px solid var(--gris-200); border-radius: 1rem; }
.prose h1 { font-size: 2rem; letter-spacing: -0.02em; margin: 0 0 1.5rem; color: var(--gris-900); }
.prose h2 { font-size: 1.125rem; margin: 2rem 0 0.75rem; color: var(--gris-900); }
.prose p { color: var(--gris-600); line-height: 1.75; margin: 0 0 1rem; }

/* ── Administration ────────────────────────────────────────── */
.admin { padding: 2rem 0 4rem; }
.admin h1 { font-size: 1.75rem; letter-spacing: -0.02em; margin: 0 0 1.5rem; }
.tuiles { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); margin-bottom: 2rem; }
.tuile { padding: 1.125rem 1.25rem; border: 1px solid var(--gris-200); border-radius: 1rem; background: var(--blanc); }
.tuile span { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gris-400); }
.tuile strong { display: block; margin-top: 0.25rem; font-size: 1.5rem; letter-spacing: -0.02em; }
.tableau-cadre { overflow-x: auto; border: 1px solid var(--gris-200); border-radius: 1rem; background: var(--blanc); }
table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
th, td { padding: 0.75rem 0.875rem; text-align: left; border-bottom: 1px solid var(--gris-200); white-space: nowrap; vertical-align: top; }
th { font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gris-400); background: var(--gris-50); }
tr:last-child td { border-bottom: 0; }
.statut { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 0.6875rem; font-weight: 700; }
.statut-completed { background: var(--vert-50); color: var(--vert); }
.statut-waiting_payment { background: var(--ambre-50); color: var(--ambre); }
.statut-abandoned, .statut-payment_failed { background: var(--rouge-50); color: var(--rouge); }
.lien-bouton { background: none; border: 0; padding: 0; color: var(--accent-600); font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ── Pied de page ──────────────────────────────────────────── */
.pied {
  margin-top: 4rem;
  border-top: 1px solid var(--gris-200);
  background: rgb(255 255 255 / 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.pied-grille { display: grid; gap: 2rem; padding: 3rem 0; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pied-grille { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pied-grille { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.pied-desc { margin: 0.75rem 0 0; font-size: 0.875rem; color: var(--gris-500); max-width: 34ch; }
.pied-titre { margin: 0 0 0.75rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gris-400); }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.875rem; color: var(--gris-700); }
.pied ul a { text-decoration: none; color: inherit; }
.pied ul a:hover { color: var(--accent-500); }
.pied-bas { border-top: 1px solid var(--gris-200); padding: 1.25rem 0; text-align: center; font-size: 0.75rem; color: var(--gris-400); }
.pied-bas a { color: inherit; }
