/* CampLoad Cookie Consent — web-2 (Orange-Theme)
   Eigenständig, kapselt sich vollständig unter .cc- Präfix.
   Keine Eingriffe in vorhandene Klassen/IDs des Projekts. */

.cc-root, .cc-root *{box-sizing:border-box}
.cc-hidden{display:none!important}

/* Banner unten — kein Hard-Block, Seite bleibt scrollbar */
.cc-banner{
  position:fixed;
  left:max(12px, env(safe-area-inset-left));
  right:max(12px, env(safe-area-inset-right));
  bottom:max(12px, env(safe-area-inset-bottom));
  z-index:2147483600;
  max-width:760px;
  margin:0 auto;
  background:rgba(8,16,32,.96);
  color:#e8edf6;
  border:1px solid rgba(148,178,220,.28);
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  padding:18px 18px 16px;
  backdrop-filter:blur(8px);
  font:14px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  animation:cc-fade-in .25s ease-out;
}
@keyframes cc-fade-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.cc-banner h2{
  margin:0 0 6px;
  font-size:17px;
  font-weight:800;
  color:#fff;
}
.cc-banner p{
  margin:0 0 12px;
  color:#d2dceb;
  font-size:13.5px;
  line-height:1.5;
}
.cc-banner p a{color:#FDBA74;text-decoration:underline}
.cc-banner p a:hover{color:#F97316}

.cc-banner__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}
.cc-btn{
  appearance:none;
  border:1px solid rgba(148,178,220,.34);
  background:rgba(255,255,255,.06);
  color:#e8edf6;
  font:600 13.5px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  padding:11px 16px;
  border-radius:11px;
  cursor:pointer;
  min-height:44px;
  flex:1 1 160px;
  text-align:center;
  transition:filter .15s ease, background .15s ease;
}
.cc-btn:hover{filter:brightness(1.08)}
.cc-btn:focus-visible{outline:2px solid #FDBA74;outline-offset:2px}
.cc-btn--primary{
  background:linear-gradient(135deg,#F97316,#C95A12);
  border-color:rgba(254,215,170,.55);
  color:#fff;
}
.cc-btn--ghost{
  background:transparent;
}
.cc-btn--link{
  background:transparent;
  border:0;
  color:#FDBA74;
  text-decoration:underline;
  padding:8px 6px;
  min-height:0;
  font-weight:600;
  text-align:left;
  flex:0 0 auto;
}
.cc-btn--link:hover{color:#F97316}

/* Settings-Modal */
.cc-modal{
  position:fixed;
  inset:0;
  z-index:2147483601;
  display:grid;
  place-items:center;
  padding:16px;
  background:rgba(2,8,23,.72);
  backdrop-filter:blur(6px);
  font:14px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  animation:cc-fade-in .2s ease-out;
}
.cc-modal__dialog{
  position:relative;
  background:#0b1729;
  color:#e8edf6;
  width:min(560px,100%);
  max-height:calc(100dvh - 32px);
  overflow:auto;
  border-radius:22px;
  border:1px solid rgba(148,178,220,.24);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  padding:22px 22px 18px;
}
.cc-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#e8edf6;
  border:0;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.cc-modal__close:hover{background:rgba(255,255,255,.14)}
.cc-modal h2{
  margin:0 44px 6px 0;
  font-size:22px;
  font-weight:800;
  color:#fff;
}
.cc-modal__intro{
  margin:0 0 16px;
  color:#c9d6ea;
  font-size:13.5px;
  line-height:1.55;
}

.cc-cat{
  border:1px solid rgba(148,178,220,.18);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:10px;
  background:rgba(255,255,255,.03);
}
.cc-cat__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:4px;
}
.cc-cat__title{
  font-size:15px;
  font-weight:800;
  color:#fff;
  margin:0;
}
.cc-cat__desc{
  margin:6px 0 0;
  font-size:13px;
  line-height:1.5;
  color:#c1cde0;
}
.cc-cat__desc strong{color:#e8edf6}

/* Toggle */
.cc-toggle{
  position:relative;
  display:inline-block;
  width:46px;
  height:26px;
  flex:0 0 auto;
}
.cc-toggle input{
  position:absolute;
  inset:0;
  opacity:0;
  margin:0;
  cursor:pointer;
}
.cc-toggle__slider{
  position:absolute;
  inset:0;
  background:rgba(148,178,220,.28);
  border-radius:999px;
  transition:background .18s ease;
}
.cc-toggle__slider::before{
  content:"";
  position:absolute;
  top:3px;
  left:3px;
  width:20px;
  height:20px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.32);
  transition:transform .18s ease;
}
.cc-toggle input:checked + .cc-toggle__slider{background:#F97316}
.cc-toggle input:checked + .cc-toggle__slider::before{transform:translateX(20px)}
.cc-toggle input:disabled + .cc-toggle__slider{background:rgba(249,115,22,.55);cursor:not-allowed}
.cc-toggle input:focus-visible + .cc-toggle__slider{outline:2px solid #FDBA74;outline-offset:2px}
.cc-cat--locked .cc-cat__title::after{
  content:" (immer aktiv)";
  font-weight:600;
  font-size:12px;
  color:#94a3b8;
}

.cc-modal__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

/* Embed-Platzhalter (Two-Click für Insta/FB/YT) */
.cc-embed-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:22px 18px;
  border:1px dashed rgba(148,178,220,.45);
  border-radius:16px;
  background:rgba(8,16,32,.5);
  color:#e8edf6;
  text-align:center;
  font:14px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.cc-embed-placeholder__title{
  font-size:15px;
  font-weight:800;
  color:#fff;
  margin:0;
}
.cc-embed-placeholder__text{
  margin:0;
  color:#c1cde0;
  font-size:13px;
  max-width:480px;
}
.cc-embed-placeholder__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}
.cc-embed-placeholder .cc-btn{flex:0 0 auto;min-width:160px}

/* Footer-Link „Cookie-Einstellungen" — passt sich an Account-Line an */
.cc-settings-link{
  background:transparent;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
  text-decoration:underline;
  cursor:pointer;
}
.cc-settings-link:hover{color:#FDBA74}

@media (max-width:520px){
  .cc-banner{
    padding:16px 14px 14px;
    border-radius:16px;
  }
  .cc-banner h2{font-size:16px}
  .cc-banner p{font-size:13px}
  .cc-btn{flex:1 1 100%}
  .cc-modal__dialog{padding:18px 16px 14px;border-radius:18px}
  .cc-modal h2{font-size:19px}
}
