window.onload = function() {
var button = document.querySelector('a.whatsapp-link');
var currentUrl = window.location.href;
var phoneNumber = '355693181062'; // Replace with the desired phone number
var message = 'Dua te porosis kete produkt from ' + encodeURIComponent(currentUrl);
if (button) {
button.setAttribute('href', 'https://wa.me/' + phoneNumber + '?text=' + message);
}
});