.cookie-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:9999;
  background:#FAF9F5;
  border-top:1px solid #1F2A44;
  box-shadow:0 -8px 24px -12px rgba(18,25,43,.18);
  transform:translateY(100%);
  transition:transform 260ms ease;
}
.cookie-banner.is-visible{
  transform:translateY(0);
}
.cookie-banner-inner{
  max-width:1320px;
  margin:0 auto;
  padding:22px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.cookie-text{
  font-family:-apple-system,'Helvetica Neue',Arial,sans-serif;
  font-size:14px;
  line-height:1.55;
  color:#1F2A44;
  max-width:640px;
  margin:0;
}
.cookie-text a{
  color:#0F6E56;
  text-decoration:underline;
}
.cookie-actions{
  display:flex;
  gap:12px;
  flex:0 0 auto;
}
.cookie-btn{
  font-family:-apple-system,'Helvetica Neue',Arial,sans-serif;
  font-size:14px;
  font-weight:700;
  padding:11px 22px;
  border-radius:2px;
  cursor:pointer;
  white-space:nowrap;
}
.cookie-btn-solid{
  background:#1F2A44;
  color:#fff;
  border:1px solid #1F2A44;
}
.cookie-btn-solid:hover{
  background:#141b2e;
}
.cookie-btn-outline{
  background:transparent;
  color:#1F2A44;
  border:1px solid #1F2A44;
}
.cookie-btn-outline:hover{
  background:#F4F6F8;
}
@media (max-width:760px){
  .cookie-banner-inner{
    flex-direction:column;
    align-items:stretch;
    padding:20px 24px;
    gap:16px;
  }

  .cookie-text{
    max-width:none;
  }

  .cookie-actions{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-end;
    width:100%;
  }

  .cookie-btn{
    width:100%;
  }
}