/* --- Bandeau de consentement cookies (RGPD/CNIL) -------------------------
   Auto-hébergé, aucune requête externe tant que le visiteur n'a pas choisi.
   S'appuie sur les tokens du design system (base.css). */

.consentement {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 200;
  background: var(--puy); color: var(--craie);
  box-shadow: var(--ombre-l);
  padding: var(--sp-5); padding-bottom: calc(var(--sp-5) + env(safe-area-inset-bottom, 0px));
}
.consentement[hidden] { display: none; }
.consentement__cadre {
  max-width: 1100px; margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  align-items: center; justify-content: space-between;
}
.consentement__texte { flex: 1 1 380px; font-size: var(--t-sm); line-height: 1.5; }
.consentement__texte a { color: var(--gentiane); text-decoration: underline; }
.consentement__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.consentement__actions .btn { white-space: nowrap; }
.btn--fantome {
  background: transparent; color: var(--craie);
  border: 1.5px solid rgba(247,248,245,.4);
}
.btn--fantome:hover { border-color: var(--craie); background: rgba(247,248,245,.08); }

@media (max-width: 640px) {
  .consentement__cadre { flex-direction: column; align-items: stretch; }
  .consentement__actions { justify-content: stretch; }
  .consentement__actions .btn { flex: 1; text-align: center; }
}
