The Evita Platform is a sculptural statement heel, designed to elevate day or night dressing with a modern edge. Crafted from smooth black leather, this refined silhouette features softly knotted straps that wrap the foot and ankle for a feminine, elevated finish.
Set on a sculpted 9cm heel, the Evita balances height with comfort—perfect for event styling, evenings out, or elevating everyday looks.
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
}
};