var category = '<%= product.category[0].id %>';
if (category == 89839) {
// Step 1: Create the new element
let targetElement = document.getElementById('turnaroundTime');
// Step 2: Select the reference element
let newLocation = document.querySelector(".dakis-product-title");
// Step 3: Insert the new element after the reference element
newLocation.parentNode.insertBefore(targetElement, newLocation.nextSibling);
targetElement.style.display = "inline-block";
}