{
const el = document.getElementById('store-categories-cards');
if (!el) return;
const bottom = el.getBoundingClientRect().bottom;
const windowHeight = window.innerHeight;
// Added buffer of 100px for better UX
if (bottom <= windowHeight + 100 && canLoadMore && !loading && !window.Livewire.find('53gyDkmMp7UAurjXFp08').isLoading) {
loading = true;
window.Livewire.find('53gyDkmMp7UAurjXFp08').loadMore().then(() => {
loading = false;
});
}
}">