/* --- Cookie Banner (Liquid Glass Design) --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  z-index: 10000; /* Ganz weit nach vorne holen */
  
  /* Der Liquid Glass Effekt passend zur Navigation */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(210, 105, 30, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  
  border-radius: 20px;
  padding: 24px;
  box-sizing: border-box;
  
  display: flex; /* Wird vom JS überschrieben, wenn versteckt */
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content h3 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  color: chocolate;
  margin: 0 0 12px 0;
  font-size: 1.5rem;
}

.cookie-content p {
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  color: #333;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
}

.btn-cookie {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1; /* Buttons gleich groß machen */
}

/* Der auffällige Accept-Button */
.btn-cookie.accept {
  background-color: chocolate;
  color: white;
  border: 1px solid chocolate;
}
.btn-cookie.accept:hover {
  background-color: white;
  color: chocolate;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

/* Der unauffälligere Reject-Button */
.btn-cookie.reject {
  background-color: transparent;
  color: gray;
  border: 1px solid gray;
}
.btn-cookie.reject:hover {
  background-color: gray;
  color: white;
  border-color: gray;
}

.cookie-link {
  font-family: "DroidSans", sans-serif;
  font-size: 0.85rem;
  color: gray;
  text-decoration: underline;
  margin: 0;
}
.cookie-link:hover {
  color: chocolate;
}

/* Mobile Anpassung für das Banner */
@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column; /* Buttons untereinander auf kleinen Handys */
    gap: 12px;
  }
  .cookie-banner {
    bottom: 16px;
    padding: 20px 16px;
  }
}