/* Cookie Consent Banner — CCPA compliant */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  box-shadow: 0 -10px 40px rgba(1, 31, 19, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-consent.is-visible {
  transform: translateY(0);
}
.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent p {
  font-size: 0.88rem;
  color: var(--cream-70);
  max-width: 680px;
  line-height: 1.6;
  margin: 0;
}
.cookie-consent p a {
  color: var(--amber);
  text-decoration: underline;
}
.cookie-consent p a:hover {
  color: var(--cream);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent p {
    max-width: 100%;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
