#cookieBanner{
  position:fixed;
  left:1.2rem;
  bottom:1.2rem;
  z-index:400;
  max-width:360px;
  background:#141f18;
  color:#f1ecdd;
  border:1px solid rgba(241,236,221,0.18);
  border-radius:6px;
  padding:1.1rem 1.2rem;
  box-shadow:0 14px 40px rgba(0,0,0,0.35);
  font-family:'Archivo', sans-serif;
  display:flex;
  flex-direction:column;
  gap:0.8rem;
  opacity:1;
  transform:translateY(0);
  transition:opacity .35s ease, transform .35s ease;
}
#cookieBanner.hide{opacity:0;transform:translateY(12px);}
#cookieBanner p{font-size:0.8rem;line-height:1.55;opacity:0.88;margin:0;}
#cookieBanner a{color:#d9ac5f;text-decoration:underline;}
#cookieBanner button{
  align-self:flex-start;
  background:#d9ac5f;
  color:#141f18;
  border:none;
  font-weight:700;
  font-size:0.76rem;
  padding:0.55rem 1.1rem;
  border-radius:3px;
  cursor:pointer;
  transition:transform .2s ease;
}
#cookieBanner button:hover{transform:translateY(-2px);}
@media (max-width:640px){
  #cookieBanner{left:0.7rem;right:0.7rem;bottom:0.7rem;max-width:none;}
}
