Sol Sana's unique hardware provide a modern twist on the classic strappy sandal. Adorned on a luxurious footbed for enhanced comfort and featuring signature eyelets. Wide bands of soft leather elegantly cross the foot, with adjustable buckles, makes for the perfect fit. The Thea sandal emerges as a refined fall essential.
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
}
};