#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--g18-cream, #ffffff);
  border-top: 2px solid var(--g18-ink, #1e1b4b);
  color: var(--g18-ink, #1e1b4b);
  padding: 16px 20px;
  box-shadow: 0 -4px 0 #312e81;
  font-family: var(--g18-font, system-ui, sans-serif);
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--g18-muted, #64748b);
}

#cookie-consent-banner a {
  color: var(--g18-red, #4f46e5);
  font-weight: 700;
  text-decoration: underline;
}

#cookie-consent-banner button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border: 2px solid var(--g18-ink, #1e1b4b);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 2px 2px 0 #312e81;
}

#cookie-consent-banner .cookie-accept {
  background: var(--g18-red, #4f46e5);
  color: var(--g18-cream, #ffffff);
}

#cookie-consent-banner .cookie-decline {
  background: var(--g18-paper, #eef2ff);
  color: var(--g18-ink, #1e1b4b);
}

@media (max-width: 768px) {
  #cookie-consent-banner { bottom: 72px; }
}
