/* ============================================================
   CONSENT.CSS — Cookie-Banner
   Wird auf allen öffentlichen Seiten eingebunden
   ============================================================ */

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  background: #ede6d6;
  border: 1px solid rgba(42,42,42,0.12);
  padding: 24px 32px;
  max-width: 560px;
  width: calc(100% - 48px);
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  opacity: 1;
  transition: opacity .3s;
}

#cookie-banner p {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #2a2a2a;
}

#cookie-banner a {
  color: #2a2a2a;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: 0.75; }

.cookie-btn--accept {
  background: #2a2a2a;
  color: #f5f2ec;
}

.cookie-btn--decline {
  background: transparent;
  color: #2a2a2a;
  border: 1px solid rgba(42,42,42,0.2);
}

@media (max-width: 768px) {
  #cookie-banner {
    bottom: 16px;
    padding: 20px 24px;
  }
  .cookie-banner-buttons {
    flex-direction: column;
  }
  .cookie-btn {
    text-align: center;
  }
}
