/* ============================================
   COOKIE BANNER
   Nutzt bestehende Tokens (--ink, --cream, --mint, --radius)
   ============================================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--ink);
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  padding: 22px 0;
}

.cookie-banner__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1 1 380px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #C9CDC9;
}

.cookie-banner__text a {
  color: var(--mint);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  padding: 11px 24px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.cookie-btn--accept {
  background: var(--mint);
  color: var(--ink);
  border: none;
}

.cookie-btn--accept:hover {
  background: #5FCBA0;
  transform: translateY(-1px);
}

.cookie-btn--reject {
  background: transparent;
  border: 1.5px solid #555;
  color: var(--cream);
}

.cookie-btn--reject:hover {
  border-color: var(--mint);
  color: var(--mint);
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-btn { transition: none; }
}
