Hi,
If you want to customize the display of the cart on the checkout, you need to edit the file "cart" of the view "checkout" via the menu Display->Views.
The weight can be displayed easily by adding a small piece of code like that: echo $row->product_weight;
For the display of products ordered by categories, that way more complex so I don't have a ready made solution. You would first have to load the categories from the database and order the products by category before displaying them. That's way more than a two liner so you need to have a good grasp of PHP to do it.