No products were found matching your selection.
No account yet?
Create an AccountUse this code on your first order.
*Not applicable on some products
function copyCoupon() {
const code = document.getElementById(“coupon-code”).dataset.code;
navigator.clipboard.writeText(code).then(function () {
const msg = document.getElementById(“copy-msg”);
msg.style.display = “block”;
setTimeout(() => {
msg.style.display = “none”;
}, 2000);
});
}