.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--c-onyx);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.cookie-banner[hidden]{ display: none; }
.cookie-banner__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner__text{
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-muted);
  max-width: 68ch;
}
.cookie-banner__text a{ color: var(--c-gold); text-decoration: underline; }
.cookie-banner__actions{
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
@media (max-width: 720px){
  .cookie-banner__inner{ flex-direction: column; align-items: stretch; }
  .cookie-banner__actions{ justify-content: stretch; }
  .cookie-banner__actions .btn{ flex: 1; }
  body{ padding-bottom: 0; } /* sticky mobile CTA + banner would stack; banner takes priority while visible */
}
