/* Cookie consent banner - GDPR, ePrivacy, CCPA compliant */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--hush-black, #0a0a0a);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.consent-banner--visible {
  transform: translateY(0);
}

.consent-banner__content {
  max-width: 800px;
  margin: 0 auto;
}

.consent-banner__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.consent-banner__text a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.consent-banner__text a:hover {
  color: rgba(255,255,255,0.9);
}

.consent-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.consent-banner__btn {
  padding: 0.625rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.consent-banner__btn--decline {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.consent-banner__btn--decline:hover {
  background: rgba(255,255,255,0.25);
}

.consent-banner__btn--accept {
  background: white;
  color: var(--hush-black, #0a0a0a);
}

.consent-banner__btn--accept:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
