COLOR
Blue
Khaki
SIZE
S (Pre-sale 10 days)
M (Pre-sale 10 days)
L (Pre-sale 10 days)
Description
Product Name: Two-Tone Hooded Fur Collar Shearling Coat
This luxurious two-tone shearling coat features a large fur-trimmed hood, stylish design, and soft inner lining for warmth and comfort. Perfect for cold weather and versatile styling.
SIZE in cm SIZE in Inch
Size Chart
Size
Length (cm)
Bust (cm)
Shoulder (cm)
Sleeve (cm)
S
51.5
94
40.5
61.5
M
53
98
41.5
62.5
L
54.5
102
42.5
63.5
Size
Length (in)
Bust (in)
Shoulder (in)
Sleeve (in)
S
20.3
37.0
15.9
24.2
M
20.9
38.6
16.3
24.6
L
21.5
40.2
16.7
25.0
Model Info
Model Name
Height (cm)
Weight (kg)
Bust/Waist/Hips (cm)
Size
KE KE
171
47.5
75/59/85
M
Model Name
Height (in)
Weight (lbs)
Bust/Waist/Hips (in)
Size
KE KE
5'7"
104.7
29.5/23.2/33.5
M
document.getElementById('size-cm-btn').addEventListener('click', function () {
showSize('cm');
});
document.getElementById('size-inch-btn').addEventListener('click', function () {
showSize('inch');
});
function showSize(sizeType) {
document.getElementById('size-chart-cm').style.display = sizeType === 'cm' ? 'block' : 'none';
document.getElementById('size-chart-inch').style.display = sizeType === 'inch' ? 'block' : 'none';
document.getElementById('model-info-cm').style.display = sizeType === 'cm' ? 'block' : 'none';
document.getElementById('model-info-inch').style.display = sizeType === 'inch' ? 'block' : 'none';
document.querySelectorAll('.toggle-button').forEach(btn => btn.classList.remove('active'));
document.getElementById(`size-${sizeType}-btn`).classList.add('active');
}