.cookie-banner{
  position:fixed;
  right:24px;
  bottom:24px;
  left:auto;
  transform:none;
  max-width:520px;
  width:92%;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:16px;
  padding:14px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  z-index:99999;
  font-size:.95rem;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:#0b1020;
}

.cookie-banner p{ margin:0 0 10px; }
.cookie-banner a{ text-decoration:underline; }

.cookie-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
}

.cookie-actions button{
  border:0;
  border-radius:999px;
  padding:8px 14px;
  font-weight:700;
  cursor:pointer;
}

#cookie-accept{
  background:#0ea5e9;
  color:#fff;
}

#cookie-reject{
  background:#e5e7eb;
}

@media (max-width:768px){
  .cookie-banner{
    right:12px;
    left:12px;
    bottom:12px;
    width:auto;
    max-width:none;
  }
}