Give your usual flat shoes a miss this season and slip into these neat twist-strap sandals instead. Chic and comfortable, this pair is a treat to the feet and eyes. Offering a cosy fit, these open-toe flats are perfect for a casual laid-back weekend look. Bonus points for the slight elevation using a padded footbed which will no doubt be glorious to walk on.
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
}
};