function saveCart(item) { let cart = JSON.parse(localStorage.getItem("cart")) || []; cart.push(item); localStorage.setItem("cart", JSON.stringify(cart)); } function loadCart() { return JSON.parse(localStorage.getItem("cart")) || []; }
top of page
!
Widget Didn’t Load
Check your internet and refresh this page.
If that doesn’t work, contact us.
bottom of page