.cookie-consent{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  width:min(480px,calc(100vw - 32px));
  background:#fff;
  color:#23303D;
  border:1px solid #D9D2C4;
  border-left:5px solid #147D83;
  border-radius:10px;
  box-shadow:0 18px 48px rgba(11,31,51,.22);
  padding:18px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.5;
}
.cookie-consent[hidden]{display:none}
.cookie-consent h2{
  margin:0 0 8px;
  color:#0B1F33;
  font-size:18px;
  line-height:1.2;
}
.cookie-consent p{
  margin:0;
  color:#5D6B78;
  font-size:14px;
}
.cookie-consent a{
  color:#147D83;
  font-weight:800;
  text-decoration:none;
}
.cookie-consent a:hover{text-decoration:underline}
.cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.cookie-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 14px;
  border:1px solid #147D83;
  border-radius:8px;
  background:#147D83;
  color:#fff;
  font:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}
.cookie-btn:hover{background:#0F6267}
.cookie-btn.secondary{
  background:transparent;
  color:#0B1F33;
  border-color:rgba(11,31,51,.28);
}
.cookie-btn.secondary:hover{background:rgba(11,31,51,.06)}
.cookie-btn:focus-visible{
  outline:3px solid #F0B85A;
  outline-offset:3px;
}
@media (max-width:760px){
  .cookie-consent{
    left:16px;
    right:16px;
    bottom:16px;
    width:auto;
  }
  .cookie-actions{display:grid}
}
