@props(['product', 'wishlistIds'])
{{-- This Section is Recreated --}}

{{ substr($product->name ?? 'Untitled Product', 0, 40) }}{{ strlen($product->name ?? '') > 40 ? '...' : '' }}

{{ __('Condition') }}: {{ $product->conditions ?? 'N/A' }}
{{ currencyFormat($product->asking_price) ?? '0.00' }} {{ $product->created_at ? $product->created_at->diffForHumans() : 'Just now' }}
{{ __('View Details') }} {{-- MAKE OFFER BUTTON – unchanged design --}} @if ($product->user_id && $product->user_id != auth()->id()) @if (auth()->check()) @else {{ __('Make Offer') }} @endif @endif
@push('script') @endpush