We noticed you're visiting from Ireland. We've updated our prices to Euro for your shopping convenience. Use United States (US) dollar instead. Dismiss
(function () { function initCurrency() { var popup = document.querySelector(".elementor-popup-modal"); if (!popup) return; var realSelect = popup.querySelector("select"); var mobileSelect = document.getElementById("mobile-currency-select"); if (!realSelect || !mobileSelect) return; mobileSelect.innerHTML = ""; var i = 0; while (realSelect.options[i]) { var o = realSelect.options[i]; var opt = document.createElement("option"); opt.value = o.value; opt.textContent = o.text; if (o.selected) opt.selected = true; mobileSelect.appendChild(opt); i++; } mobileSelect.onchange = function () { realSelect.value = this.value; realSelect.dispatchEvent(new Event("change", { bubbles: true })); }; } document.addEventListener("click", function () { setTimeout(initCurrency, 50); }); })();