The striking geometric silhouette will add the perfect amount of structure and sophistication to your outfit. Featuring a magnetic flap closure, a zip compartment and a slip pocket, it will keep your belongings extra safe and secure. Opt to carry this in the palm of your hand or on your shoulder.
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
}
};