.cookie-consent{
  position:fixed;
  inset:auto 0 0;
  z-index:9999;
  padding:16px;
  background:rgba(26,27,28,.48);
  font-family:'DM Sans',Arial,sans-serif;
}
.cookie-consent[hidden]{
  display:none;
}
.cookie-consent__box{
  max-width:820px;
  margin:0 auto;
  background:#fff;
  border:1px solid #E2E4E6;
  border-radius:8px;
  box-shadow:0 10px 42px rgba(0,0,0,.18);
  padding:18px;
}
.cookie-consent__title{
  margin:0 0 8px;
  color:#1A1B1C;
  font-family:'Syne',Arial,sans-serif;
  font-size:18px;
  line-height:1.25;
}
.cookie-consent__text{
  margin:0 0 14px;
  color:#52606D;
  font-size:13px;
  line-height:1.65;
}
.cookie-consent__choices{
  display:grid;
  gap:8px;
  margin:12px 0 14px;
}
.cookie-consent__choice{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid #E2E4E6;
  border-radius:8px;
  padding:10px 12px;
  color:#1A1B1C;
  font-size:13px;
}
.cookie-consent__choice input{
  margin-top:3px;
}
.cookie-consent__choice span{
  display:block;
  color:#9AA0A8;
  font-size:12px;
  line-height:1.45;
}
.cookie-consent__actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.cookie-consent__actions button{
  border:1px solid #CDD0D3;
  background:#fff;
  color:#1A1B1C;
  border-radius:8px;
  padding:9px 12px;
  font:600 13px 'DM Sans',Arial,sans-serif;
  cursor:pointer;
}
.cookie-consent__actions button:hover{
  border-color:#3ECFA0;
}
.cookie-consent__actions .cookie-consent__primary{
  background:#3ECFA0;
  border-color:#3ECFA0;
  color:#0A3325;
}
.cookie-consent__link{
  margin-top:10px;
  background:none;
  border:none;
  color:#2BA882;
  font:600 12px 'DM Sans',Arial,sans-serif;
  cursor:pointer;
  padding:0;
}
@media(max-width:640px){
  .cookie-consent{
    padding:10px;
  }
  .cookie-consent__actions button{
    width:100%;
  }
}
