.cookie-consent{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:120;
  width:min(420px, calc(100vw - 32px));
  padding:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  background:rgba(250,250,250,.94);
  color:#111;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 60px rgba(0,0,0,.24);
  backdrop-filter:saturate(160%) blur(14px);
  box-sizing:border-box;
}

.cookie-consent[hidden]{
  display:none;
}

.cookie-consent__text h2{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.15;
  font-weight:700;
}

.cookie-consent__text p{
  margin:0;
  color:rgba(17,17,17,.68);
  font-size:14px;
  line-height:1.45;
}

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

.cookie-consent__btn{
  min-height:42px;
  padding:0 16px;
  border:1px solid #111;
  border-radius:999px;
  background:#111;
  color:#fff;
  font:inherit;
  font-size:14px;
  line-height:1;
  cursor:pointer;
}

.cookie-consent__btn:hover{
  opacity:.82;
}

.cookie-consent__btn--ghost{
  background:transparent;
  color:#111;
  border-color:rgba(17,17,17,.22);
}

@media (max-width:640px){
  .cookie-consent{
    right:12px;
    bottom:12px;
    width:calc(100vw - 24px);
    padding:16px;
  }

  .cookie-consent__actions{
    display:grid;
    grid-template-columns:1fr;
  }
}
