@foreach($cart as $cartKey => $details)
{{-- Product Name + Color --}}
{{-- Mobile-only image --}}
{{ $details['name'] }}
@if(!empty($details['selected_color']))
Color : {{ $details['selected_color'] }}
@endif
@if(!empty($details['selected_size']))
Size : {{ $details['selected_size'] }}
@endif
Qty: {{ $details['quantity'] }} × ৳{{ number_format($details['price'], 0) }}
{{-- Selling Price --}}
@if(!empty($details['compare_price']) && $details['compare_price'] > $details['price'])
৳{{ number_format($details['compare_price'], 0) }}
@endif
{{-- Image (desktop) --}}
{{-- Quantity + Remove (below on mobile, right-aligned on desktop) --}}
{{-- Quantity selector --}}
{{ $details['quantity'] }}
{{-- Remove --}}