#cookie-notice{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:999;
  background:var(--ink);
  color:var(--paper);
  padding:18px 24px;
  display:flex;
  flex-wrap:wrap;
  gap:14px 24px;
  align-items:center;
  justify-content:center;
  box-shadow:0 -4px 18px rgba(0,0,0,0.12);
  transform:translateY(110%);
  transition:transform .4s ease;
}
#cookie-notice.show{transform:translateY(0);}
#cookie-notice p{
  font-size:13.5px;
  line-height:1.55;
  max-width:640px;
  margin:0;
  color:var(--paper);
}
#cookie-notice a{color:var(--coral-light); text-decoration:underline; text-underline-offset:2px;}
#cookie-notice button{
  flex-shrink:0;
  padding:11px 22px;
  border-radius:8px;
  border:none;
  background:var(--coral);
  color:var(--white);
  font-family:'Work Sans', sans-serif;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:background .15s ease;
}
#cookie-notice button:hover{background:var(--coral-dim);}

@media(max-width:560px){
  #cookie-notice{padding:16px 20px; justify-content:flex-start;}
  #cookie-notice button{width:100%;}
}
