Top categories
0
Cart (0)
0 item(s) - $0.00
0
Cart (0)
0 item(s) - $0.00
document.addEventListener("DOMContentLoaded", function () { const el = document.querySelector("#product-category .content"); if (!el) return; // lock based on viewport (prevents huge blank space) const minHeight = Math.max(600, window.innerHeight * 0.8); el.style.minHeight = minHeight + "px"; // adjust after AJAX loads const observer = new MutationObserver(() => { requestAnimationFrame(() => { el.style.minHeight = el.scrollHeight + "px"; }); }); observer.observe(el, { childList: true, subtree: true }); });