`;
// Find the target element
const targetElement = document.querySelector('.bg-storeBG.p-5.rounded-md.mb-5');
// Insert the HTML content before the target element
if (targetElement) {
targetElement.insertAdjacentHTML('beforebegin', htmlContent);
} else {
console.error('Target element with class "bg-storeBG p-5 rounded-md mb-5" not found.');
}
}