Look no further for a pair of classic slide on flat sandals that delivers equally on style and function. A timeless strappy design with a modern upgrade thanks to the unique fold detail, slip on these gems for an effortless way to dress up any off-duty look. With its understated charm that never goes out of fashion, it is easy to keep these flats in constant rotation.
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
}
};