/* Cookie-Banner DSG-konform (Schweiz, revDSG) — übernommen aus ajetiservice v2.0 */
.cookie-banner {
  --cb-bg: #1A1A1A;
  --cb-bg-soft: #23282a;
  --cb-text: #EDEDED;
  --cb-muted: #aeb8b4;
  --cb-border: rgba(255, 255, 255, .14);
  --cb-accent: #E30613;
  --cb-accent-dark: #b00510;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 24px);
  width: min(720px, calc(100vw - 32px));
  z-index: 100000;
  background: var(--cb-bg);
  color: var(--cb-text);
  border: 1px solid var(--cb-border);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
  font-family: "Poppins", sans-serif;
}
.cookie-banner.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.cookie-banner__inner { padding: 20px 22px; display: grid; gap: 14px; }
.cookie-banner__title { font-size: 17px; font-weight: 700; color: #fff; margin: 0; }
.cookie-banner__text { font-size: 13px; line-height: 1.55; color: var(--cb-muted); margin: 0; }
.cookie-banner__text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__options { display: grid; gap: 8px; padding: 12px; background: var(--cb-bg-soft); border-radius: 10px; border: 1px solid var(--cb-border); }
.cookie-opt { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; cursor: pointer; line-height: 1.4; }
.cookie-opt input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--cb-accent); }
.cookie-opt input:disabled { cursor: not-allowed; opacity: .7; }
.cookie-opt__label { color: var(--cb-text); }
.cookie-opt__label strong { color: #fff; font-weight: 600; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-banner .btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: 999px; border: 1px solid transparent;
  font-family: inherit; font-size: 13px; font-weight: 600; line-height: 1;
  cursor: pointer; white-space: nowrap; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-banner .btn--accent { background: var(--cb-accent); color: #fff; }
.cookie-banner .btn--accent:hover { background: var(--cb-accent-dark); }
.cookie-banner .btn--outline { background: transparent; color: #fff; border-color: var(--cb-border); }
.cookie-banner .btn--outline:hover { border-color: #fff; }
.cookie-banner .btn--ghost { background: transparent; color: var(--cb-muted); }
.cookie-banner .btn--ghost:hover { color: #fff; }
.cookie-reopen {
  position: fixed; left: 14px; bottom: 14px; z-index: 99999;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--cb-border, rgba(255,255,255,.14));
  background: rgba(26, 26, 26, .9); color: #EDEDED;
  font-family: "Poppins", sans-serif; font-size: 12px; cursor: pointer;
  opacity: .75; transition: opacity .2s ease;
}
.cookie-reopen:hover { opacity: 1; }
@media (max-width: 767px) {
  .cookie-banner { left: 8px; right: 8px; transform: translateY(24px); width: auto; bottom: 8px; }
  .cookie-banner.is-visible { transform: translateY(0); }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1 1 auto; }
}
