/* Loader simple con CSS */
.ianp-loader {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid #fff;
  width: 18px;
  height: 18px;
  animation: ianp-spin 1s linear infinite;
  display: inline-block;
}

@keyframes ianp-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Check de éxito */
.ianp-check {
  color: #a8e6cf; /* Un verde suave */
  font-weight: bold;
  margin-right: 5px;
}

/* Para que el botón no cambie de tamaño bruscamente */
.ajax_add_to_cart {
  min-height: 40px; /* Ajusta esto a la altura de tus botones */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}