/* =========================
   HC Cookie Banner (RGPD)
   ========================= */
.hc-cookie-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display:none;
  z-index: 99998;
}

.hc-cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  max-width: 980px;
  margin: 0 auto;

  border-radius: 18px;
  padding: 16px 16px 14px;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 20, 30, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.40);

  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.hc-cookie-banner h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.hc-cookie-banner p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  font-size: 14px;
}

.hc-cookie-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.hc-cookie-links a{
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
}

.hc-cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.hc-btn{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  white-space:nowrap;
}

.hc-btn:hover{ background: rgba(255,255,255,0.10); }

.hc-btn-primary{
  border: 0;
  background: linear-gradient(135deg, #39d98a, #3aa7ff);
  color: #0a0f16;
}

.hc-btn-primary:hover{ filter: brightness(1.05); }

.hc-cookie-modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 99999;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.hc-cookie-modal .hc-modal-card{
  width: min(760px, 96%);
  border-radius: 18px;
  padding: 16px;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 20, 30, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.50);

  color:#fff;
}

.hc-modal-head{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items:flex-start;
  margin-bottom: 10px;
}

.hc-modal-head h3{
  margin:0;
  font-size: 18px;
  font-weight: 1000;
}

.hc-close{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color:#fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  cursor:pointer;
}

.hc-toggles{
  display:grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.hc-toggle{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 12px;
}

.hc-toggle .row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items:center;
}

.hc-toggle .title{
  font-weight: 900;
}

.hc-toggle .desc{
  margin-top: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.45;
}

.hc-switch{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  user-select:none;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.90);
}

.hc-switch input{
  width: 42px;
  height: 24px;
  appearance: none;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  position: relative;
  outline: none;
  cursor: pointer;
}

.hc-switch input:checked{
  background: rgba(57,217,138,0.75);
}

.hc-switch input::after{
  content:"";
  position:absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:#fff;
  transition: transform .18s ease;
}

.hc-switch input:checked::after{
  transform: translateX(18px);
}

.hc-modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-end;
}
