/* ============================================================
   BELISSIMA – Cookie Consent Banner
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--purple-900);
  border-top: 2px solid var(--gold-500);
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  animation: cookie-slide-up 0.35s ease;
}

#cookie-banner.cookie-banner--hide {
  animation: cookie-slide-down 0.35s ease forwards;
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes cookie-slide-down {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}

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

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-text i {
  color: var(--gold-400, #e8c84a);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cookie-text a {
  color: var(--gold-400, #e8c84a);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn--decline {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
}

.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--gold-500, #D4AF37), var(--gold-700, #b8960c));
  color: var(--white);
  border-color: transparent;
}

.cookie-btn--accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── Karten-Placeholder ────────────────────────────────────── */
#map-consent-placeholder {
  background: var(--purple-50, #f5f3ff);
  border: 2px dashed var(--purple-200, #ddd6fe);
  border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500, #6b7280);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

#map-consent-placeholder i {
  font-size: 2rem;
  color: var(--purple-300, #c4b5fd);
}

#map-consent-placeholder p {
  max-width: 280px;
  line-height: 1.6;
}

#map-consent-placeholder .map-placeholder-btn {
  margin-top: 8px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s;
}

#map-consent-placeholder .map-placeholder-btn:hover {
  filter: brightness(1.1);
}

#map-iframe-wrapper {
  display: none;
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
