.chc-consent-wrap{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:999999;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.chc-consent-inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:#111;
  color:#fff;
  box-shadow:0 -8px 24px rgba(0,0,0,.25);
}
.chc-consent-msg{
  font-size:14px;
  line-height:1.35;
  max-width: 900px;
}
.chc-consent-msg a{
  color:#fff;
  text-decoration:underline;
}
.chc-consent-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.chc-btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  padding:8px 10px;
  border-radius:8px;
  font-size:14px;
  cursor:pointer;
}
.chc-btn:hover{ border-color: rgba(255,255,255,.6); }
.chc-accept{ background:#1f7a3d; border-color:#1f7a3d; }
.chc-deny{ background:#444; border-color:#444; }
.chc-customize{ background:#222; border-color:#555; }

/* Modal */
.chc-consent-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:1000000;
}
.chc-consent-modal.is-open{ display:block; }
.chc-consent-modal-box{
  width:min(640px, calc(100% - 24px));
  margin: 60px auto 0;
  background:#fff;
  color:#111;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.chc-consent-modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid #eee;
}
.chc-consent-modal-title{ font-weight:700; }
.chc-consent-modal-body{ padding: 12px 16px; }
.chc-consent-toggle{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-bottom:1px solid #f1f1f1;
}
.chc-consent-toggle:last-child{ border-bottom:none; }
.chc-consent-toggle-title{ font-weight:600; }
.chc-consent-toggle-desc{ font-size:13px; color:#444; margin-top:4px; }
.chc-consent-modal-foot{
  padding: 12px 16px;
  border-top:1px solid #eee;
  display:flex;
  justify-content:flex-end;
}
.chc-save{
  background:#1f7a3d;
  border-color:#1f7a3d;
  color:#fff;
}
.chc-close{
  background:#f3f3f3;
  border-color:#ddd;
  color:#111;
}
.chc-consent-open{
  display:inline-block;
  border:1px solid #ddd;
  background:#f7f7f7;
  color:#111;
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
}
