/* ─────────────────────────────────────────────────────────────
   Datenschutzhinweis-Banner — global für alle Seiten
   Wird von cookie-banner.js eingebunden. Bewusst mit eigenen,
   fest codierten Werten statt Seiten-Variablen, damit die
   Komponente unabhängig vom Design-Token-Stand jeder Seite
   immer gleich aussieht (kein Auseinanderlaufen zwischen
   index.html / impressum.html / datenschutz.html mehr).
   ───────────────────────────────────────────────────────────── */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px;
}

.cb-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-width: 680px;
}

.cb-text a {
  display: inline-block;
  padding: 4px 0;
  color: #fafafa;
  text-decoration: none;
  border-bottom: 1px solid #d4526b;
  transition: color 0.2s;
}

.cb-text a:hover {
  color: #d4526b;
}

.cb-actions {
  flex-shrink: 0;
}

.cb-btn {
  background: #fafafa;
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s;
}

.cb-btn:hover {
  background: #8b1a2f;
  color: #fafafa;
}

#cookie-banner a:focus-visible,
#cookie-banner button:focus-visible {
  outline: 2px solid #d4526b;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .cb-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .cb-btn {
    width: 100%;
    text-align: center;
  }
}

/* Footer-Schaltfläche, die den Hinweis erneut einblendet */
.cookie-reopen {
  display: inline-block;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #5a5a56;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cookie-reopen:hover {
  color: #0a0a0a;
}
