If you are limiting the number of products in your cart layout, (for example, to only show three), but the customer has abandoned more than that number then the cart total will not equal the total products you are showing them.
Add a limited cart total
To total the products shown in your cart layout:
Go to Content > Cart Layout.
Create a new cart layout or edit an existing one.
Insert the following code in the Edit the Cart Layout field before the product For loop:
{% set cart_total = [] %}
Insert this code inside the For loop:
{% if cart_total.append((product.uv*product.qty)) %}{% endif %}
Insert this code after in order to show the total:
{{ cart_total|sum|format_currency(cart.curr) }}
Select SAVE.
Example
You should end up with something like this:
{% set cart_total = [] %}
{% for product in products|limit(max_products_to_show) %}
{% if cart_total.append((product.uv*product.qty)) %}{% endif %}
{% endfor %}
{{ cart_total|sum|format_currency(cart.curr) }}
This is a basic example that excludes most of the code you would use to display product details.