.ij-cookie-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:1rem;
  background:rgba(15,23,42,.6);
}
.ij-cookie-modal.is-open{display:flex;}
.ij-cookie-modal__panel{
  width:100%;
  max-width:560px;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.6);
  box-shadow:0 22px 60px rgba(0,0,0,.25);
  padding:1.1rem 1.1rem;
}
.ij-cookie-modal__title{
  margin:0;
  font-weight:800;
  font-size:1.1rem;
  line-height:1.6;
  color:#0f172a;
}
.ij-cookie-modal__text{
  margin-top:.5rem;
  color:#334155;
  line-height:1.9;
  font-size:.95rem;
}
.ij-cookie-modal__opts{
  margin-top:1rem;
  display:grid;
  gap:.75rem;
}
.ij-cookie-opt{
  border:1px solid rgba(226,232,240,.9);
  border-radius:12px;
  padding:.75rem .85rem;
  background:#f8fafc;
}
.ij-cookie-opt__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.75rem;
}
.ij-cookie-opt__name{
  font-weight:800;
  color:#0f172a;
  line-height:1.6;
}
.ij-cookie-opt__desc{
  margin-top:.35rem;
  color:#475569;
  font-size:.92rem;
  line-height:1.8;
}
.ij-cookie-modal__actions{
  margin-top:1.1rem;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  justify-content:flex-end;
}
.ij-cookie-btn{
  appearance:none;
  border-radius:10px;
  border:1px solid rgba(148,163,184,.65);
  background:#fff;
  padding:.55rem .85rem;
  font-weight:700;
  font-size:.95rem;
  color:#0f172a;
}
.ij-cookie-btn:hover{background:#f8fafc;}
.ij-cookie-btn--primary{
  border-color:rgba(79,70,229,.55);
  background:#4f46e5;
  color:#fff;
}
.ij-cookie-btn--primary:hover{background:#4338ca;}
.ij-cookie-btn--danger{
  border-color:rgba(220,38,38,.55);
  background:#fee2e2;
  color:#991b1b;
}
.ij-cookie-btn--danger:hover{background:#fecaca;}
.ij-cookie-link{
  background:none;
  border:0;
  padding:0;
  color:#2563eb;
  text-decoration:underline;
  font:inherit;
  cursor:pointer;
}
