.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:300;
  display:flex;
  justify-content:center;
  background:#0f2f2f;
  color:#e7f6f4;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  padding:16px 18px;
}
.cookie-banner[hidden]{
  display:none;
}
.cookie-banner__content{
  width:100%;
  max-width:1200px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookie-banner__text{
  margin:0;
  font-size:.95rem;
  line-height:1.6;
  color:rgba(231,246,244,.95);
  flex:1 1 320px;
}
.cookie-banner__text a{
  color:#8ae1dc;
  text-decoration:underline;
}
.cookie-banner__actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.cookie-btn{
  border:0;
  border-radius:999px;
  padding:10px 18px;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  background:#ff7664;
  color:#ffffff;
  transition:transform .18s ease, box-shadow .18s ease;
}
.cookie-btn:hover,
.cookie-btn:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(255,118,100,.35);
}
.cookie-btn--ghost{
  background:transparent;
  color:#e7f6f4;
  border:1px solid rgba(255,255,255,.35);
}
.cookie-btn--ghost:hover,
.cookie-btn--ghost:focus-visible{
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.cookie-settings-link{
  background:none;
  border:0;
  padding:0;
  font:inherit;
  color:inherit;
  cursor:pointer;
  text-align:left;
}
.footer-list .cookie-settings-link{
  color:#e7f6f4;
  font-weight:600;
}
.footer-list .cookie-settings-link:hover,
.footer-list .cookie-settings-link:focus-visible{
  color:#8ae1dc;
}
@media (max-width:640px){
  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:14px 14px;
  }
  .cookie-banner__content{
    gap:12px;
  }
  .cookie-btn{
    width:100%;
    justify-content:center;
  }
}
