#cookie-banner{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.55);
  z-index:9999;
}
#cookie-banner .cookie-banner__content{
  max-width:680px;
  width:calc(100% - 32px);
  background:#fff;
  color:#333;
  border-radius:14px;
  padding:22px 24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  line-height:1.6;
}
#cookie-banner h2{
  margin:0 0 8px 0;
  font-size:1.35rem;
  color:#0089ff;
}
#cookie-banner p{
  margin:0 0 14px 0;
}
#cookie-banner a{
  color:#0089ff;
  text-decoration:underline;
}
.cookie-banner__actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top:14px;
}
#cookie-accept,
#cookie-reject{
  appearance:none;
  border-radius:8px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  font-size:1rem;
}
#cookie-accept{
  background:linear-gradient(135deg,#4a7bd0,#0089ff);
  color:#fff;
  border:0;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
#cookie-reject{
  background:#e8eef8;
  color:#0089ff;
  border:1px solid #ccd3e0;
}
#cookie-accept:hover{ filter:brightness(1.05); }
#cookie-reject:hover{ filter:brightness(0.98); }
#cookie-accept:focus,#cookie-reject:focus{
  outline:3px solid rgba(0,137,255,.25);
  outline-offset:2px;
}
#cookie-settings{
  position:fixed;
  left:50%;
  bottom:80px;
  transform:translateX(-50%);
  display:none;
  z-index:9998;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(to bottom,#0089ff,#00BFFF);
  color:#fff;
  cursor:pointer;
  font-weight:800;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  transition:background .2s,color .2s,border-color .2s,box-shadow .2s;
}
#cookie-settings:hover{
  background:#fff;
  color:#0089ff;
  border-color:#0089ff;
  box-shadow:0 6px 16px rgba(0,0,0,.22);
}
#cookie-settings:focus-visible{
  outline:3px solid rgba(0,137,255,.35);
  outline-offset:2px;
}
@media (max-width:480px){
  .cookie-banner__actions{ justify-content:stretch; }
  #cookie-accept,#cookie-reject{ flex:1; }
}
