Display description on cart page

$_product object is product variation object.

You have to first get the parent product id and then get the description of parent product.

$parent_product_id =$_product->get_parent_id();
$parent_product = get_post($parent_product_id);
echo $content = $parent_product->post_content;

Or

 echo $_product->parent->description;