/* ============================================================
   EVERMORE MAIN MODAL — PURE VISUAL TOKENS (UPDATED)
   ============================================================ */

.main-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

/* Required to show modal */
.main-modal-backdrop.show {
  display: flex !important;
}

.main-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  padding: 24px;
  animation: modalFade 0.25s ease;
}

/* Title */
.main-modal-title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

/* Body */
.main-modal-body {
  margin-bottom: 20px;
  color: var(--ink-700);
  line-height: 1.5;
}

/* Footer */
.main-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Animation */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Safe */
@media (max-width: 600px) {
  .main-modal {
    padding: 18px;
  }
}
