Effortlessly stylish, these footbed sandals simplify the process of dressing up. With a refined and adaptable smooth leather finish, they effortlessly complement any outfit in your wardrobe. The eye-catching crisscross buckle detail enhances the shoes, while the padded rounded-toe insole ensures a comfortable fit for all-day wear.
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
}
};