/* =========================================================
   Cookie consent banner
   ========================================================= */

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 640px;
  margin: 0 auto;
  background: #0b3d63;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 20px 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: none;
}

.cookie-consent.is-visible {
  display: block;
  animation: cookie-consent-in 0.25s ease-out;
}

@keyframes cookie-consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-consent p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #dce7ee;
}

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

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__btn {
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
}

.cookie-consent__btn--accept {
  background: #f2994a;
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  background: #d97e2c;
}

.cookie-consent__btn--reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__btn--reject:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }
}
