const googleLink = "https://www.google.com/maps/place//data=!4m3!3m2!1s0x23acf291e145668f:0xd593d04f96ee703c!12e1?source=g.page.m.ia._&laa=nmx-review-solicitation-ia2";
document.querySelectorAll(".star").forEach(star => {
star.addEventListener("click", function() {
let rating = parseInt(this.getAttribute("data-star"));
// UI Highlight
document.querySelectorAll(".star").forEach(s => s.classList.remove("active"));
for (let i = 0; i < rating; i++) {
document.querySelectorAll(".star")[i].classList.add("active");
}
// Logic
if (rating <= 3) {
// ⭐ Open Popup Maker popup ID 416
if (typeof PUM !== "undefined") {
PUM.open(416);
} else {
console.error("Popup Maker not loaded.");
}
} else {
// ⭐ Redirect to Google Reviews
window.open(googleLink, "_blank");
}
});
});
