document.addEventListener("DOMContentLoaded", function () {
const observer = new MutationObserver(() => {
if (window.location.pathname === '/' || window.location.pathname === '/#') {
document.querySelectorAll('.ec-price-buttons__button--addToBag').forEach(btn => {
if (btn.innerText.trim() === 'Buy Now') {
btn.innerText = 'Book Now';
}
});
}
});
observer.observe(document.body, {
childList: true,
subtree: true
});
});