#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
#cookie-banner .cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
#cookie-banner .cb-text {
  flex: 1 1 320px;
}
#cookie-banner .cb-text strong {
  color: #F97316;
}
#cookie-banner .cb-text a {
  color: #F97316;
  text-decoration: underline;
}
#cookie-banner .cb-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
#cookie-banner .cb-btn {
  border: 0;
  border-radius: 6px;
  padding: 0.625rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
#cookie-banner .cb-btn:hover {
  opacity: 0.85;
}
#cookie-banner .cb-refuse {
  background: #2a2a3e;
  color: #fff;
}
#cookie-banner .cb-accept {
  background: #F97316;
  color: #fff;
}
@media (max-width: 640px) {
  #cookie-banner .cb-inner { flex-direction: column; align-items: stretch; }
  #cookie-banner .cb-actions { justify-content: stretch; }
  #cookie-banner .cb-btn { flex: 1; }
}
