/* ─── Cookie Consent Banner ───────────────────────────────────────── */
/* Hidden by default; only shown when .show is added by JS */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 2000;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Shown state */
.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.cookie-banner .btn-accent {
  margin: 0;
  white-space: nowrap;
}

/* Stack on very small screens */
@media (max-width: 575.98px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner .btn-accent {
    margin-top: 0.75rem;
  }
}

/* Utility for screen-reader only text */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
