/* Footer legal buttons (Privacy Policy / Cookies / Disclaimer) + modal */

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}

.footer-legal-btn {
  border: none;
  background: none;
  padding: 6px 4px;
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
}

.footer-legal-btn:hover,
.footer-legal-btn:focus {
  color: #ea2700;
}

@media (min-width: 640px) {
  .footer-legal-nav {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    margin-top: 0;
    width: 100%;
  }
}

/* Modal */

.footer-legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  padding: 16px;
  align-items: center;
  justify-content: center;
}

.footer-legal-modal-overlay.is-open {
  display: flex;
}

body.footer-legal-modal-lock {
  overflow: hidden;
}

.footer-legal-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.footer-legal-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 40px;
  color: #666;
  cursor: pointer;
}

.footer-legal-modal__close:hover,
.footer-legal-modal__close:focus {
  color: #ea2700;
}

.footer-legal-modal__title {
  font-family: "Nunito Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #333;
}

.footer-legal-modal__body {
  font-family: "Nunito Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (min-width: 640px) {
  .footer-legal-modal {
    max-width: 560px;
    padding: 48px 32px 32px;
  }
}
