/* consent.css — Cookie consent banner styles for Photon Flux Nutrients.
   Matches the dark theme of wissen/legal pages. */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #101827;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#cookie-consent-banner[hidden] {
  display: none;
}

#cookie-consent-banner .ccb-text {
  color: #c5cdd8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  max-width: 56rem;
}

#cookie-consent-banner .ccb-buttons {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

#cookie-consent-banner .ccb-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

#cookie-consent-banner .ccb-btn:active {
  transform: scale(0.97);
}

#cookie-consent-banner .ccb-btn-accept {
  background: #8b5cf6;
  color: #fff;
}

#cookie-consent-banner .ccb-btn-accept:hover {
  background: #7c3aed;
}

#cookie-consent-banner .ccb-btn-reject {
  background: rgba(255, 255, 255, 0.06);
  color: #c5cdd8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie-consent-banner .ccb-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}
