/* ============================================
   EMPYREAN — MODALS
   ============================================ */

/* ─── SVG modal icon ────────────────────────── */
.svg-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: block;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
}
.svg-modal-icon path,
.svg-modal-icon line,
.svg-modal-icon polyline,
.svg-modal-icon circle,
.svg-modal-icon rect {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawSvg 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ─── General SVG wrapper (modal general) ────── */
.general-svg-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}
.general-svg-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.general-svg-ring circle.animated-path {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawRing 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.general-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  margin: 0;
  animation: popEmoji 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
}

/* ─── Overlay ───────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 235, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

/* ─── Contenido ─────────────────────────────── */
.modal-content {
  background: white;
  padding: 35px 28px;
  border-radius: 32px;
  width: 85%;
  max-width: 360px;
  text-align: center;
  box-shadow:
    0 40px 90px rgba(96, 32, 96, 0.18),
    0 0 0 1px rgba(96, 32, 96, 0.05);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

/* ─── Botones ───────────────────────────────── */
.btn-modal {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.1s;
  font-family: inherit;
}
.btn-modal:active { transform: scale(0.95); }
.btn-modal.primary  { background: var(--primary); color: white; box-shadow: 0 5px 15px rgba(96, 32, 96, 0.2); }
.btn-modal.secondary { background: #f1f2f6; color: #636e72; }
.btn-modal.whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 5px 15px rgba(0, 230, 118, 0.2); }
.btn-modal.danger   { background: var(--danger); color: white; box-shadow: 0 5px 15px rgba(255, 71, 87, 0.2); }
