Understated and elegant, The Rudy mule will effortlessly elevate your outfit. They're made from a supple twisted leather, set on 9cm stiletto heel, with endlessly versatile, they look just as impactful when styled with jeans as with chic dresses.
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
}
};