.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark-surface, #0F172A);
  border-top: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.45);
  animation: banner-slide-up 0.4s ease;
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 20px var(--pad, 24px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  color: var(--text-on-dark-muted, #94A3B8);
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-inner       { flex-direction: column; align-items: stretch; }
  .cookie-text        { min-width: unset; }
  .cookie-actions     { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
