/* CampLoad — Pre-Checkout-Legal-Modal — web-1
   Kapselt sich vollständig unter .cl- Präfix. */

.cl-root, .cl-root *{box-sizing:border-box}

.cl-modal{
  position:fixed;
  inset:0;
  z-index:2147483500;
  display:grid;
  place-items:center;
  padding:14px;
  background:rgba(2,8,23,.74);
  backdrop-filter:blur(6px);
  font:14px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:#e8edf6;
  animation:cl-fade-in .2s ease-out;
}
@keyframes cl-fade-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.cl-dialog{
  position:relative;
  background:#0b1729;
  border:1px solid rgba(148,178,220,.24);
  border-radius:22px;
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  width:min(640px,100%);
  max-height:calc(100dvh - 28px);
  overflow:auto;
  padding:24px 22px 18px;
}
.cl-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;
}
.cl-close:hover{background:rgba(255,255,255,.14)}
.cl-dialog h2{
  margin:0 44px 6px 0;
  font-size:22px;
  font-weight:850;
  color:#fff;
}
.cl-dialog__sub{
  margin:0 0 14px;
  color:#c1cde0;
  font-size:13.5px;
}

.cl-summary{
  border:1px solid rgba(148,178,220,.20);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:14px;
  background:rgba(255,255,255,.03);
}
.cl-summary p{margin:4px 0;font-size:13.5px;color:#d8e2f2}
.cl-summary strong{color:#fff}
.cl-summary__price{font-size:18px;color:#fff;font-weight:850}
.cl-summary__tax{font-size:12.5px;color:#94a3b8}

.cl-details{
  border:1px solid rgba(148,178,220,.18);
  border-radius:14px;
  padding:0;
  margin-bottom:10px;
  background:rgba(255,255,255,.02);
  overflow:hidden;
}
.cl-details > summary{
  list-style:none;
  cursor:pointer;
  padding:12px 14px;
  font-weight:800;
  color:#fff;
  font-size:14px;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cl-details > summary::-webkit-details-marker{display:none}
.cl-details > summary::after{
  content:"▾";
  color:#FDBA74;
  font-size:13px;
  transition:transform .15s ease;
}
.cl-details[open] > summary::after{transform:rotate(180deg)}
.cl-details__body{
  padding:0 14px 14px;
  color:#c9d6ea;
  font-size:13px;
  line-height:1.55;
  max-height:280px;
  overflow:auto;
}
.cl-details__body p{margin:0 0 8px}
.cl-details__body h4{margin:12px 0 4px;font-size:13.5px;color:#fff}
.cl-placeholder-note{
  margin:8px 0 0;
  padding:8px 10px;
  border-radius:10px;
  background:rgba(251,191,36,.10);
  border:1px solid rgba(251,191,36,.30);
  color:#fde68a;
  font-size:12.5px;
}

.cl-consents{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:14px 0;
  padding:14px;
  border:1px solid rgba(148,178,220,.20);
  border-radius:14px;
  background:rgba(255,255,255,.03);
}
.cl-consents label{
  display:flex;
  gap:11px;
  align-items:flex-start;
  cursor:pointer;
  font-size:13.5px;
  line-height:1.5;
  color:#d8e2f2;
}
.cl-consents input[type=checkbox]{
  flex:0 0 auto;
  width:20px;
  height:20px;
  margin-top:2px;
  accent-color:#F97316;
  cursor:pointer;
}
.cl-consents a{color:#FDBA74;text-decoration:underline}
.cl-consents a:hover{color:#F97316}
.cl-consents strong{color:#fff}

.cl-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:6px;
}
.cl-btn{
  appearance:none;
  border:1px solid rgba(148,178,220,.34);
  background:rgba(255,255,255,.06);
  color:#e8edf6;
  font:850 14px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  padding:13px 18px;
  border-radius:13px;
  cursor:pointer;
  min-height:48px;
  flex:1 1 160px;
  text-align:center;
}
.cl-btn:focus-visible{outline:2px solid #FDBA74;outline-offset:2px}
.cl-btn--primary{
  background:linear-gradient(135deg,#F97316,#C95A12);
  border-color:rgba(254,215,170,.55);
  color:#fff;
  font-weight:900;
}
.cl-btn--primary:disabled{
  opacity:.45;
  cursor:not-allowed;
  background:rgba(255,255,255,.06);
  border-color:rgba(148,178,220,.20);
  color:#94a3b8;
}
.cl-btn--ghost{background:transparent}
.cl-foot-hint{
  margin:10px 0 0;
  font-size:12px;
  color:#94a3b8;
  text-align:center;
}

@media (max-width:520px){
  .cl-dialog{padding:18px 14px 14px;border-radius:18px}
  .cl-dialog h2{font-size:19px}
  .cl-btn{flex:1 1 100%}
}
