/*
  Simple cookie notice banner — informational accept/dismiss only, not a
  full consent-management platform (no granular category toggles, no
  script-gating). If a future requirement needs to block analytics/marketing
  scripts until explicit consent, this needs to be replaced with a real CMP,
  not extended in place.
*/

.cookie-banner {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  left: var(--space-4);
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-lg);
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
  font-size: var(--font-small);
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: var(--space-2);
}

.cookie-banner[hidden] {
  display: none;
}
