Sleek and sophisticated, these slingback pumps make the perfect additions to your wardrobe rotation. They feature a classy pointed-toe silhouette, elegant patent leather and a chic stiletto heel. Thanks to the stretchy slingback and moderate 5.5cm elevation, these heels will keep you stylish without compromising on your 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
}
};