Why isn't my additional row displaying inside the table body in cart.liquid?

Hi!

I’m editing my cart.liquid template and want to add additional rows to the cart items table.

I just added a inside the for loop, so every product should have 2 rows instead of own (in the second row, I want to display further options/informations about the product). But the additional row always shows up above the whole cart items table.

my code is set up like this:

{%- for item in cart.items -%}
* Additional Info *
* Standard Product table data * {%- endfor -%}

But it ends up getting displayed like this:

* Addtional Info *
* Standard Product table data *

Could someone please help me figure out why the additional row doesn’t get displayed inside the table body?

Thanks!!