/* ── Cookie Consent Banner ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a1a18;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}
.cookie-text a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.cookie-text a:hover { color: rgba(255,255,255,0.85); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: #a8894a;
  color: #fff;
  border: none;
  padding: 9px 24px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #8f7239; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 24px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ── Map Consent Placeholder ── */
.map-consent-wrap {
  width: 100%;
  height: 100%;
  background: #ede8df;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
}
.map-consent-wrap p {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1rem;
  color: #4a4a46;
  max-width: 320px;
  line-height: 1.7;
  margin: 0;
}
.map-consent-btn {
  background: #2b4233;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.map-consent-btn:hover { background: #a8894a; }

/* ── Cookie Reset (datenschutz page) ── */
.cookie-reset-wrap { margin-top: 16px; }
.cookie-reset-wrap a { font-family: 'Crimson Text', Georgia, serif; font-size: 1rem; color: #2b4233; border-bottom: 1px solid #2b4233; padding-bottom: 1px; cursor: pointer; }
.cookie-reset-wrap a:hover { color: #a8894a; border-color: #a8894a; }
#cookie-reset-status { font-family: 'Crimson Text', Georgia, serif; font-size: 0.9rem; color: #5cb85c; margin-left: 12px; }

@media (max-width: 768px) {
  .cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
