PRODUCT MEASUREMENTS

We measure every item by hand to help you choose the best fit

cm in
x small small medium large x large
Bust100102104108112
Sleeve7072747576
Rise27.528293032
Shoulder3840424446
Top Waist949898104112
Leg opening4648525558
Hip9498102108114
Length6970717273
Inside leg7677787980

Our size and fit team measure all items individually to help you find the perfect fit.

				
					document.addEventListener("DOMContentLoaded", function(){

const switchers = document.querySelectorAll(".unitSwitch");

switchers.forEach(function(switcher){

switcher.addEventListener("change", function(){

const table = switcher.closest(".product-measurements");

table.querySelectorAll("[data-cm]").forEach(function(cell){

cell.innerHTML = switcher.checked
? cell.dataset.in
: cell.dataset.cm;

});

});

});

});