document.addEventListener("DOMContentLoaded", function() {
var btn = document.getElementById("send-wa");
if (!btn) return;
btn.addEventListener("click", function() {
var message = "Hello, I am interested in the following products:\n\n";
// UNIVERSAL SELECTOR (FIX)
var items = document.querySelectorAll(".yith-ywraq-list-wrapper td, .yith-ywraq-list-wrapper span");
var found = false;
items.forEach(function(item) {
let text = item.innerText.trim();
if (text.length > 2 && !text.includes("Remove")) {
message += "- " + text + "\n";
found = true;
}
});
if (!found) {
alert("No products in enquiry list");
return;
}
message += "\nPlease share price and details.";
var url = "https://wa.me/919986896723?text=" + encodeURIComponent(message);
window.open(url, "_blank");
});
});