/* Cookie-Banner: unten fix, auf allen Seiten */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0.8rem 0.9rem;
  background: rgba(15, 23, 42, 0.96); /* dunkel, wie Member-App */
  color: #f9fafb;
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-text h2 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.cookie-banner-links a {
  color: #bfdbfe;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

/* R4G-Farben */
.cookie-btn-primary {
  background: linear-gradient(135deg, #235385, #cc412f);
  color: #f9fafb;
  border-color: rgba(248, 250, 252, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.cookie-btn-primary:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}

.cookie-btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
}

.cookie-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.8);
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}