.cookie-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:200;
  background:var(--white);
  border-top:1px solid var(--slate-100);
  box-shadow:0 -8px 30px rgba(18,59,93,0.14);
  padding:22px 24px;
  transform:translateY(100%);
  opacity:0;
  transition:transform .35s cubic-bezier(.22,.9,.32,1), opacity .35s cubic-bezier(.22,.9,.32,1);
}
.cookie-banner.is-visible{
  transform:translateY(0);
  opacity:1;
}
.cookie-banner-inner{
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.cookie-banner-text{flex:1;min-width:260px;}
.cookie-banner-title{
  font-family:'Manrope', system-ui, sans-serif;
  font-weight:700;
  font-size:1rem;
  color:#0a1b2c;
  margin:0 0 6px;
}
.cookie-banner-copy{
  font-size:0.88rem;
  color:#425466;
  line-height:1.5;
  margin:0 0 6px;
}
.cookie-banner-copy:last-child{margin-bottom:0;}
.cookie-banner-copy a{color:#218984;text-decoration:underline;text-underline-offset:2px;}
.cookie-banner-actions{
  display:flex;
  gap:12px;
  flex-shrink:0;
  flex-wrap:wrap;
}
.cookie-banner-actions button{
  font-family:'Manrope', system-ui, sans-serif;
  font-weight:600;
  font-size:0.9rem;
  border-radius:999px;
  padding:12px 22px;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .2s, box-shadow .2s, background .2s;
}
.cookie-banner-accept{
  background:#2AA7A1;
  color:#0a1b2c;
  border:none;
  box-shadow:0 6px 18px rgba(42,167,161,0.3);
}
.cookie-banner-accept:hover{background:#4fc0ba;}
.cookie-banner-reject{
  background:none;
  border:1.5px solid #cddae3;
  color:#123B5D;
}
.cookie-banner-reject:hover{background:#f7f4ee;}

@media (max-width:720px){
  .cookie-banner{padding:20px;}
  .cookie-banner-inner{flex-direction:column;align-items:stretch;gap:16px;}
  .cookie-banner-actions{flex-direction:column;}
  .cookie-banner-actions button{width:100%;}
}
