/* ADOHA Consent Banner (ruhig, premium, ohne Dark Patterns) */

.adoha-consent {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
}

.adoha-consent.is-open { display: block; }

.adoha-consent-card {
  border: 1px solid rgba(20,18,26,0.12);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(20,18,26,0.18);
  padding: 14px;
}

.adoha-consent-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.adoha-consent-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  margin: 0;
}

.adoha-consent-text {
  margin: 8px 0 0;
  line-height: 1.65;
  opacity: 0.78;
  font-size: 14px;
  max-width: 820px;
}

.adoha-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

.adoha-consent-link {
  font-weight: 900;
  opacity: 0.80;
  text-decoration: none;
}
.adoha-consent-link:hover { opacity: 1; }

.adoha-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.adoha-consent-modal.is-open { display: block; }

.adoha-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,18,26,0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.adoha-consent-panel {
  position: relative;
  width: min(760px, calc(100% - 20px));
  margin: min(8vh, 60px) auto;
  border-radius: 22px;
  border: 1px solid rgba(20,18,26,0.12);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 70px rgba(20,18,26,0.22);
  overflow: hidden;
}

.adoha-consent-head {
  padding: 14px;
  border-bottom: 1px solid rgba(20,18,26,0.10);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.adoha-consent-body {
  padding: 14px;
}

.adoha-consent-item {
  border: 1px solid rgba(20,18,26,0.10);
  background: rgba(255,255,255,0.70);
  border-radius: 18px;
  padding: 12px;
  margin-top: 10px;
}

.adoha-consent-item h4 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.adoha-consent-item p {
  margin: 8px 0 0;
  opacity: .78;
  line-height: 1.65;
}

.adoha-consent-item label {
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 10px;
  font-weight: 900;
}

@media (max-width: 520px){
  .adoha-consent { left: 10px; right: 10px; bottom: 10px; }
}