// Move categories up to align with breadcrumbs
window.addEventListener('DOMContentLoaded', function () {
const breadcrumb = document.querySelector('.nested-category-breadcrumb');
const categories = document.querySelector('.nested-category-children');
if (breadcrumb && categories) {
categories.style.marginTop = `-${breadcrumb.offsetHeight}px`;
}
});