:root { --brand:#592321; }
#cookie-info-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: min(92vw, 780px);
  background: rgba(255,255,255,0.96);
  color: #000;
  border: 1px solid var(--brand);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  padding: 12px 14px;
  display: none;
}
#cookie-info-banner .ci-row {
  display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap;
}
#cookie-info-banner a { color: var(--brand); text-decoration: underline; }
#cookie-info-banner a:hover { text-decoration: none; }
#cookie-info-banner .ci-close {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
#cookie-info-banner.ci-hide { opacity: 0; transition: opacity .35s ease; }
@media (prefers-reduced-motion: reduce) {
  #cookie-info-banner.ci-hide { transition: none; }
}
