Size Chart Reference tailwind.config = { theme: { extend: { fontFamily: { sans: [‘Plus Jakarta Sans’, ‘sans-serif’] }, colors: { base: { 1: ‘#0D0C12’, 2: ‘#14121D’, 3: ‘#1A1823’, 4: ‘#1F1D2B’, 5: ‘#262433’ } } } } } /* ===== FORCE DARK BG — overrides any WP theme ===== */ #sizechart-root { background: #0D0C12 !important; color: #CBD5E1 !important; font-family: ‘Plus Jakarta Sans’, sans-serif !important; min-height: 100vh; margin: 0 !important; padding: 0 !important; position: relative; z-index: 10; } #sizechart-root *, #sizechart-root *::before, #sizechart-root *::after { box-sizing: border-box; } #sizechart-root .wp-block, #sizechart-root .entry-content, #sizechart-root .elementor-widget-container { margin: 0 !important; padding: 0 !important; background: transparent !important; color: inherit !important; font-family: ‘Plus Jakarta Sans’, sans-serif !important; } /* ===== HIDDEN RADIO INPUTS ===== */ .sc-tab-input, .sc-unit-input { position: absolute !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; overflow: hidden !important; } /* ===== SCROLLBAR ===== */ ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #2D2B3B; border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: #4B4860; } /* ===== TAB LABEL DEFAULT ===== */ .sc-tab-label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 12px; font-size: 0.875rem; font-weight: 600; color: #94a3b8; cursor: pointer; transition: all 0.2s ease; border: none; background: none; white-space: nowrap; } .sc-tab-label:hover { background: rgba(255,255,255,0.05) !important; color: #fff !important; } /* ===== TAB LABEL ACTIVE — per tab ===== */ #sc-coats:checked ~ .sc-content label[for=”sc-coats”], #sc-bespoke:checked ~ .sc-content label[for=”sc-bespoke”], #sc-atelier:checked ~ .sc-content label[for=”sc-atelier”], #sc-thobes:checked ~ .sc-content label[for=”sc-thobes”], #sc-abayas:checked ~ .sc-content label[for=”sc-abayas”] { background: linear-gradient(to right, #06b6d4, #3b82f6) !important; color: #fff !important; box-shadow: 0 10px 15px -3px rgba(6,182,212,0.2) !important; } /* ===== PANELS — hidden by default ===== */ .sc-panel { display: none; animation: scFade 0.3s ease; } @keyframes scFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } /* ===== PANELS — show when matching radio checked ===== */ #sc-coats:checked ~ .sc-content #panel-coats, #sc-bespoke:checked ~ .sc-content #panel-bespoke, #sc-atelier:checked ~ .sc-content #panel-atelier, #sc-thobes:checked ~ .sc-content #panel-thobes, #sc-abayas:checked ~ .sc-content #panel-abayas { display: block; } /* ===== UNIT TOGGLE LABELS ===== */ .sc-unit-label { display: inline-block; padding: 8px 16px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.15s ease; border: 1px solid transparent; color: #94a3b8; } #sc-unit-in:checked ~ .sc-content label[for=”sc-unit-in”] { background: rgba(6,182,212,0.15) !important; color: #22d3ee !important; border-color: rgba(6,182,212,0.3) !important; } #sc-unit-cm:checked ~ .sc-content label[for=”sc-unit-cm”] { background: rgba(6,182,212,0.15) !important; color: #22d3ee !important; border-color: rgba(6,182,212,0.3) !important; } /* ===== UNIT VALUES — show/hide ===== */ .sc-cm { display: none; } #sc-unit-in:checked ~ .sc-content .sc-in { display: inline; } #sc-unit-in:checked ~ .sc-content .sc-cm { display: none; } #sc-unit-cm:checked ~ .sc-content .sc-in { display: none; } #sc-unit-cm:checked ~ .sc-content .sc-cm { display: inline; } /* Unit label text */ .sc-txt-cm { display: none; } #sc-unit-cm:checked ~ .sc-content .sc-txt-in { display: none; } #sc-unit-cm:checked ~ .sc-content .sc-txt-cm { display: inline; } /* ===== TABLE ===== */ .chart-table { border-collapse: separate; border-spacing: 0; } .chart-table thead th { background: rgba(6,182,212,0.08) !important; border-bottom: 1px solid rgba(6,182,212,0.2) !important; color: #22d3ee !important; padding: 12px 16px; text-align: center; border-top: none !important; border-left: none !important; border-right: none !important; white-space: nowrap; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; position: sticky; top: 0; z-index: 2; } .chart-table thead th:first-child { text-align: left; } .chart-table tbody tr { transition: background 150ms; } .chart-table tbody tr:hover { background: rgba(255,255,255,0.03) !important; } .chart-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.01) !important; } .chart-table tbody tr:nth-child(even):hover { background: rgba(255,255,255,0.04) !important; } .chart-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05) !important; border-top: none !important; border-left: none !important; border-right: none !important; white-space: nowrap; color: #CBD5E1 !important; font-size: 0.875rem; } .chart-table td:first-child { text-align: left; font-weight: 600 !important; color: #fff !important; } .size-highlight { background: rgba(6,182,212,0.1) !important; border: 1px solid rgba(6,182,212,0.3) !important; color: #22d3ee !important; border-radius: 6px; padding: 2px 8px; font-weight: 600; display: inline-block; } .tip-card { background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(59,130,246,0.06)) !important; border: 1px solid rgba(6,182,212,0.12) !important; border-radius: 12px; padding: 16px; } @media (max-width: 768px) { .chart-table td, .chart-table th { padding: 8px 10px !important; font-size: 0.75rem !important; } .tab-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } }
SIZE REFERENCE GUIDE

Size Chart

Find your perfect fit across all our categories. Measurements are in inchescentimeters. Use the toggle to switch units.

Men’s Coats & Outerwear

Measure over your typical clothing. Chest is the most critical measurement.

Most popular: M, L
SizeChestShoulderSleeveLengthWaist
XS36–3791–9416.5422461287130–3176–79
S38–3997–99174324.562297432–3381–84
M40–41102–10417.544256429.57534–3586–89
L42–43107–10918.54725.565307636–3791–94
XL44–46112–11719.550266630.57738–4097–102
2XL48–50122–12720.55226.567317942–44107–112
3XL52–54132–13721.555276931.58046–48117–122
Chest

Measure around the fullest part of your chest, under your arms, keeping the tape horizontal.

Sleeve

Bend your elbow 90°. Measure from the center back of your neck, over the shoulder, to the wrist.

Length

Measure from the highest point of the shoulder seam to the bottom hem of the coat.

Bespoke / Made-to-Measure

These are base templates. Bespoke garments are cut to your exact body measurements.

Custom-fit — Use as starting reference
LabelChestWaistHipShoulderSleeveBack LengthNeck
Slim38–4097–10232–3481–8637–3994–99174324.56229741538
Regular40–42102–10734–3686–9139–4199–1041846256429.57515.539
Relaxed44–46112–11738–4097–10243–45109–11419.55025.56530761641
Oversized48–52122–13242–46107–11747–50119–1272153266631791743
How Bespoke Works

A bespoke garment starts with 20+ body measurements taken by a tailor. The chart above shows the silhouette categories — your final measurements will differ.

Important Note

Do not add ease to your body measurements — the tailoring pattern already includes the appropriate allowance for each fit type.

Atelier — Women’s Tailored Pieces

Atelier pieces follow European sizing with a modern, structured silhouette.

Most popular: 38, 40
EU SizeUS Equiv.BustWaistHipShoulderSleeveLength
34XS31–3279–8124–2561–6434–3586–8914.53722.5572461
36S33–3484–8626–2766–6936–3791–941538235824.562
38M35–3689–9128–2971–7438–3997–9915.53923.5602564
40M/L37–38.594–9830–3176–7940–41102–104164123.56025.565
42L39–4199–10432–3481–8642–43107–10916.54224612666
44XL42–44107–11235–3789–9444–46112–1171743246126.567
462XL45–47114–11938–4097–10247–49119–12417.54424.5622769
Bust

Measure around the fullest part of the bust, keeping the tape level and snug but not tight.

Natural Waist

Bend to one side — the crease that forms is your natural waistline. Measure there, not at the navel.

Between Sizes?

For Atelier pieces, size up if your bust or hip falls between sizes. Tailored adjustments can be requested.

Thobes

Sized primarily by height. The thobe should reach the top of the ankle bone or just above.

Most popular: 56, 58
SizeHeight (ft)Height (cm)ChestShoulderSleeveThobe Length
525’4″–5’6″163–16838–4097–1021743246156142
545’6″–5’8″168–17340–42102–10717.54424.56257.5146
565’8″–5’10”173–17842–44107–1121846256459150
585’10″–6’0″178–18344–46112–11718.54725.56560.5154
606’0″–6’2″183–18846–48117–1221948266662157
626’2″–6’4″188–19348–50122–12719.55026.56763.5161
646’4″–6’6″193–19850–52127–1322051276965165
Length Guide

The thobe should rest at the top of the ankle. Too long and it drags; too short and it breaks the traditional silhouette. Size number ≈ thobe length in inches.

Body Build

If you have a broader chest than standard for your height, go one size up. Slimmer builds can stay at their height size.

Abayas

Sized by height. Abayas are designed to be flowing — chest/hip measurements are generous.

Most popular: 56, 58
SizeHeight (ft)Height (cm)Bust (max)Hip (max)ShoulderSleeveAbaya Length
525’2″–5’4″157–16344112481221538235856142
545’4″–5’6″163–168461175012715.53923.56057.5146
565’6″–5’8″168–17348122521321641246159150
585’8″–5’10”173–1785012754137164124.56260.5154
605’10″–6’0″178–183521325614216.542256462157
626’0″–6’2″183–1885413758147174325.56563.5161
Slim Fit

Follows the body’s contour. If between sizes or preferring more room, size up by one.

Regular / A-Line

Flares gently from the bust. Most forgiving fit — go by your height size directly.

Umbrella / Butterfly

Very generous cut with wide sleeves and flowing skirt. Height is the only critical measurement.

How to Measure Yourself

Chest / Bust

Stand straight. Wrap tape around the fullest part, under arms. Keep tape parallel to the floor.

Waist

Find your natural waistline (bend side → crease). Don’t suck in — measure at relaxed position.

Hip

Stand with feet together. Measure around the widest part of the hips and buttocks.

Shoulder

Measure from the edge of one shoulder seam straight across to the other edge.

All measurements are garment measurements, not body measurements. Allowances vary by fit type. When in doubt, contact us with your measurements for a personal recommendation.

Handcrafted Zardozi Artistry & Fabric Details

This premium custom garment is handcrafted by master artisans in our Bahawalpur studio, requiring over 48 hours of intricate manual zardozi gold thread embroidery. We select only the highest-grade royal velvet and luxury fabrics to ensure structured fits, premium texture depth, and comfortable drape weights. Bespoke measurements are tailored precisely to each client profile to guarantee a regal silhouette.