We can’t help but be drawn to the versatility of a pair of slide sandals, and the endless combinations it allows for. Case in point: our Shine Footbed leather slides. Made from genuine luxurious calf leather with contract stitching, this comfortable slide footbed features two simple straps adorning adjustable velcro fastenings, this pair is all ease and comfort.
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
}
};