Loafers for kids with arch in black leather
Slip on black patent leather shoes for girls
Black leather loafers for kids with good arch
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
});
});