Introducing Sol Sana's Wave Earrings. Bold, modern, and effortlessly chic. Crafted with 18ct gold plating, these statement earrings are designed to make waves wherever you go. Elevate your look with a touch of elegance that’s sure to turn heads.
Subscribe to be the first to discover the latest collections, exclusive discounts & events, plus a special treat on your birthday!
Availability
// Save scroll position
window.onbeforeunload = function() {
localStorage.setItem('scrollPosition', window.scrollY);
};
// Restore scroll position
window.onload = function() {
var scrollPosition = localStorage.getItem('scrollPosition');
if (scrollPosition) {
window.scrollTo(0, scrollPosition);
localStorage.removeItem('scrollPosition'); // Clear saved position after use
}
};