document.addEventListener("DOMContentLoaded", function () {
// Run script ONLY on this page
if (!window.location.href.includes("anniversary-cakes-online")) return;
const btn = document.querySelector(".readmore-toggle");
const box = document.getElementById("ann-box");
const wrapper = document.getElementById("ann-content");
if (!btn || !box || !wrapper) {
return;
}
btn.addEventListener("click", function () {
box.classList.toggle("open");
if (box.classList.contains("open")) {
btn.innerText = "Read Less";
} else {
btn.innerText = "Read More";
// Scroll back up to the top of the content when collapsing
wrapper.scrollIntoView({
behavior: "smooth",
block: "start"
});
}
});
});