.mora-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.mora-cart-modal {
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  font-size: 15px;
  color: #222;
}

.mora-cart-modal a {
  color: #bc4a7e;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
