/* ==========================================================================
   Modal de confirmare - Spa Success Blueprint
   ========================================================================== */

.blueprint-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: blueprintFadeIn 0.2s ease-out;
}

.blueprint-modal.is-open {
  display: flex;
}

.blueprint-modal__box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: blueprintSlideUp 0.25s ease-out;
}

.blueprint-modal__message {
  font-family: var(--font-sans);
  font-size: var(--text-normal);
  color: #222;
  margin: 0 0 24px;
  line-height: 1.5;
}

.blueprint-modal__close {
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  background: var(--color-accent);
  font-family: var(--font-sans);
  font-size: var(--text-normal);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.blueprint-modal__close:hover {
  background: #555;
}

.blueprint-modal__close:focus-visible {
  outline: 2px solid #999;
  outline-offset: 2px;
}

@keyframes blueprintFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes blueprintSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .blueprint-modal__box {
    padding: 28px 20px;
  }
}