document.addEventListener("DOMContentLoaded", function () { let brandContainer = document.querySelector(".product-brand"); let brandImage = brandContainer.querySelector("img"); let brandName = document.querySelector("h1.text-xl"); if (brandContainer && brandImage && brandName) { let newImageContainer = document.createElement("div"); newImageContainer.classList.add("mt-4", "flex", "justify-center"); let newImage = brandImage.cloneNode(true); newImage.classList.add("custom-brand-image"); newImageContainer.appendChild(newImage); brandName.insertAdjacentElement("beforebegin", newImageContainer); brandContainer.style.display = "none"; } }); document.addEventListener("DOMContentLoaded", function () { let launcher = document.querySelector(".lfy-cursor-pointer"); if (launcher && window.location.pathname !== "/") { launcher.style.display = "none"; } }); document.addEventListener("DOMContentLoaded", function () { let descriptionContainer = document.querySelector(".product-single-top-description"); let tagsContainer = document.querySelector(".mb-3"); if (descriptionContainer && tagsContainer) { tagsContainer.parentElement.insertBefore(descriptionContainer, tagsContainer); } });