The Eastwood Slide is a refined leather sandal designed for effortless everyday wear. Crafted from premium leather and finished with polished silver hardware, it sits on a softly cushioned footbed for all-day comfort. The clean, minimal silhouette gives this style a modern, understated finish — an elevated essential for warm-weather dressing.
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
}
};