Slide into this pair of fuss-free sandals that would be sure to become a favourite summer staple — they will take you to yoga, brunch, a lunch date and more. The soft, supple leather on the upper, with its comfortable footbed sole, will ensure you are comfortable without compromising on style.
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
}
};