/* ============================================================
   Cookie consent banner (public marketing site)
   ============================================================ */

.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 680px;
  margin: 0 auto;
  background: #1a1a1a;
  color: #f5f5f5;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  z-index: 1080;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

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

.cookie-consent-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-primary {
  background: #fff;
  color: #1a1a1a;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cookie-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cookie-consent-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}
