/* ============================================================
   COOKIE-BANNER — leichte Leiste unten, nur bis zur Entscheidung.
   Eigenständige Datei (wie cookie-consent.js), auf allen Seiten
   eingebunden. Nutzt dieselben Tokens/Komponenten wie site.css
   (.btn, --navy-deep, --line …), damit es sich einfügt statt
   aufgesetzt zu wirken.
   ============================================================ */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--cream);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 32px rgba(40, 35, 25, 0.10);
  padding: 18px clamp(20px, 4vw, 44px);
}
.cc-banner[hidden] { display: none !important; }
.cc-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cc-text { font-size: 14px; color: var(--body); max-width: 640px; }
.cc-text a { color: var(--coral-text); font-weight: 700; }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: none; }
.cc-actions .btn { padding: 11px 20px; font-size: 14px; }

@media (prefers-reduced-motion: no-preference) {
  .cc-banner {
    animation: ccIn .45s cubic-bezier(.22,.61,.36,1);
  }
}
@keyframes ccIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (max-width: 620px) {
  .cc-inner { flex-direction: column; align-items: stretch; }
  .cc-actions { justify-content: stretch; }
  .cc-actions .btn { flex: 1; }
}
