#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(43, 153, 173, 0.25);
  padding: 1rem 1.5rem;
}
[data-theme="light"] #cookie-banner {
  background: rgba(240, 246, 248, 0.97);
  border-top-color: rgba(43, 153, 173, 0.3);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cb-text {
  flex: 1;
  min-width: 200px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(226, 237, 245, 0.85);
  margin: 0;
}
[data-theme="light"] .cb-text { color: #334155; }
.cb-text a { color: #45c1d8; text-decoration: underline; }  /* teal-light für AA auf dark cookie banner */
[data-theme="light"] .cb-text a { color: #207E91; }
.cb-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cb-deny, .cb-accept {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
  line-height: 1;
  min-height: 36px;
}
.cb-deny {
  background: transparent;
  border: 1px solid rgba(226, 237, 245, 0.25);
  color: rgba(226, 237, 245, 0.65);
}
[data-theme="light"] .cb-deny {
  border-color: rgba(71, 85, 105, 0.3);
  color: #64748b;
}
.cb-deny:hover { opacity: 0.7; }
.cb-accept { background: #207E91; color: #fff; }
.cb-accept:hover { opacity: 0.88; }
@media (max-width: 600px) {
  #cookie-banner { padding: 0.9rem 1rem; }
  .cb-inner { gap: 0.75rem; }
  .cb-text { min-width: 100%; font-size: 0.8rem; }
  .cb-actions { width: 100%; gap: 0.5rem; }
  .cb-deny, .cb-accept { flex: 1; text-align: center; padding: 0.7rem 0.5rem; min-height: 44px; }
}
