
.modal-pedido-wrapper {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.modal-pedido-wrapper *,
.modal-pedido-wrapper *::before,
.modal-pedido-wrapper *::after {
  all: unset;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.modal-pedido-wrapper .modal-contenido {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
	animation: zoomInModal 0.3s ease-out;
}

.modal-pedido-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.modal-pedido-wrapper input,
.modal-pedido-wrapper select,
.modal-pedido-wrapper button {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.modal-pedido-wrapper button[type="submit"] {
  width: 100%;
  margin-top: 15px;
  padding: 14px;
  background-color: #c2185b;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

.modal-pedido-wrapper button[type="submit"]:hover {
  background-color: #a7154e;
}


.modal-pedido-wrapper .cerrar-modal {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #888;
}

.entrega-opciones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.modal-pedido-wrapper select {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

@keyframes zoomInModal {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


