/* Einwilligungs-Banner – Farben aus dem Seitendesign (Holz/Creme, Akzent #c8b99a) */
.ac-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 100000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.ac-consent[hidden] { display: none; }
.ac-consent__box {
  pointer-events: auto;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #f7f2e8;
  color: #2e2b28;
  border: 1px solid #c8b99a;
  border-top: 4px solid #a89670;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(30, 24, 18, .35);
  padding: 22px 24px 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}
.ac-consent__title {
  margin: 0 0 6px !important;
  font-family: Alice, Georgia, serif !important;
  font-size: 21px !important;
  color: #3a3632 !important;
  line-height: 1.3;
}
.ac-consent__text { margin: 0 0 14px !important; color: #4a4540; }
.ac-consent__details {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e3d9c6;
  border-radius: 10px;
}
.ac-consent__details[hidden] { display: none; }
.ac-consent__opt {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 10px !important;
  font-weight: 400 !important;
  cursor: pointer;
}
.ac-consent__opt input { margin-top: 4px; width: 18px; height: 18px; accent-color: #6a9a2e; flex: 0 0 auto; }
.ac-consent__note { margin: 0 !important; font-size: 12.5px; color: #6b635a; }
.ac-consent__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Beide Entscheidungen gleich gewichtet (keine Hervorhebung von „Alle akzeptieren") */
.ac-consent__btn {
  appearance: none;
  border: 2px solid #3a3632;
  background: #3a3632;
  color: #f7f2e8;
  border-radius: 50px;
  padding: 12px 16px;
  font: 600 15px/1.2 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  min-height: 46px;
  transition: background .15s, color .15s;
}
.ac-consent__btn:hover,
.ac-consent__btn:focus-visible { background: #2e2b28; outline: 3px solid #c8b99a; outline-offset: 2px; }
.ac-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 12px;
  font-size: 13px;
}
.ac-consent__link {
  appearance: none;
  background: none;
  border: 0;
  padding: 4px 0;
  color: #5d5446 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font: inherit;
  cursor: pointer;
}
.ac-consent__link[hidden] { display: none; }
.ac-consent__link:hover { color: #2e2b28 !important; }
@media (max-width: 480px) {
  .ac-consent { left: 10px; right: 10px; bottom: 10px; }
  .ac-consent__box { padding: 18px 16px 14px; font-size: 13.5px; }
  .ac-consent__buttons { grid-template-columns: 1fr; }
}
/* Banner liegt über der mobilen Buchungsleiste, solange er sichtbar ist */
html.ac-consent-visible .ac-sticky-book { visibility: hidden; }
