 .quantity-container {
      display: flex;
      align-items: center;
    }

    .quantity-input {
      width: 70px;
      text-align: center;
      margin: 0 10px;
    }

    /* Desactiva las flechas internas del campo numérico */
    .quantity-input::-webkit-inner-spin-button,
    .quantity-input::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .quantity-input[type="number"] {
      -moz-appearance: textfield;
    }