{{-- resources/views/livewire/categories-page.blade.php --}}
{{-- Main content --}}
{{-- Category dropdown --}}
{{-- Sort --}}
{{-- Product Grid (your variant-card) --}}
@forelse($products as $product)
@livewire('partials.variant-card', ['variant' => $product], key($product->id))
@empty
No products found.
@endforelse
{{-- Pagination --}}
{{ $products->links() }}
{{-- /.bg-white --}}
{{-- /.row --}}
{{-- /#page-content-wrapper --}}
{{-- /.container --}}
{{-- Modal unchanged --}}