/* Site-wide cookie consent (UK/EU transparency) */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(11, 28, 45, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(11, 28, 45, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-calm, cubic-bezier(0.4, 0, 0.2, 1));
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted-on-dark, rgba(244, 247, 250, 0.85));
}

.cookie-banner__text a {
  color: var(--color-text-on-dark, #f4f7fa);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-banner .btn--ghost {
  background: transparent;
  color: var(--color-text-on-dark, #f4f7fa);
  border: 1px solid rgba(244, 247, 250, 0.35);
  box-shadow: none;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

.cookie-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner .btn--primary {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}
