/* ═══════════════════════════════════════
   DSGVO / GDPR Consent Banner
   ═══════════════════════════════════════ */

.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0a0a0a; color: #ccc;
  padding: 1rem 1.5rem; z-index: 9999;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem; line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; justify-content: center;
}
.cookie-bar p { margin: 0; color: #ccc; flex: 1; min-width: 260px; }
.cookie-bar a { color: var(--red, #B81C30); text-decoration: underline; }
.cookie-bar a:hover { color: #fff; }
.cookie-btn {
  background: var(--red, #B81C30); color: #fff; border: none;
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: 0.2s; white-space: nowrap;
}
.cookie-btn:hover { background: #8B1524; }
.cookie-btn-outline {
  background: transparent; color: #ccc; border: 1.5px solid #444; }
.cookie-btn-outline:hover { border-color: #fff; color: #fff; }
