/* Bannière de consentement — styles (s'appuie sur les tokens du kit) */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--c-surface, #fff); border-top: 1px solid var(--c-line, #e2e8f0);
  box-shadow: 0 -8px 24px -12px rgba(15,23,42,.25);
  padding: 1rem;
}
.cookie-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-text { margin: 0; font-size: .92rem; color: var(--c-body, #334155); max-width: 60ch; }
.cookie-actions { display: flex; gap: .5rem; flex: none; }
@media (max-width: 640px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
