<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script><script>
$(document).ready(function() {
$.get('/pianos-for-hire', function(data) {
var tempDiv = $('<div>').html(data);
var nestedCategory = tempDiv.find('div.nested-category-tree-wrapper');
if (nestedCategory.length) {
nestedCategory.insertBefore('nav.product-nav');
}
});
});</script>
<style>
div.product-detail .nested-category-tree-wrapper ul {
padding-left: 0px;
list-style: none;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
div.product-detail .nested-category-tree-wrapper ul a {
margin-left: 10px;
margin-right: 10px;
}
</style>