Product Name: White Hooded Sweater Inner Fitted Knit Cardigan
This white hooded sweater inner top is a perfect base layer for any outfit. Its fitted design and chic hood detail offer both comfort and style, making it an ideal choice for layering or wearing alone.
Size Chart
Size
Length (cm)
Bust (cm)
Width (cm)
Sleeve (cm)
S
62.5
47
38
58
M
64.5
49
39
59
L
66.5
51
40
60
Size
Length (in)
Bust (in)
Width (in)
Sleeve (in)
S
24.61
18.50
14.96
22.83
M
25.39
19.29
15.35
23.23
L
26.18
20.08
15.75
23.62
Model Info
Model Height (cm)
Weight (kg)
Bust/Waist/Hips (cm)
Size
171
47.5
75/59/85
M
Model Height (ft/in)
Weight (lbs)
Bust/Waist/Hips (in)
Size
5'7"
104.72
29.53/23.23/33.46
M
document.getElementById('size-cm-btn').addEventListener('click', function () {
showSize('cm');
});
document.getElementById('size-inch-btn').addEventListener('click', function () {
showSize('inch');
});
function toggleDetail(id) {
var element = document.getElementById(id);
var arrow = element.previousElementSibling.querySelector('.arrow');
if (element.style.display === 'block') {
element.style.display = 'none';
arrow.textContent = '+';
} else {
element.style.display = 'block';
arrow.textContent = '—';
}
}
function showSize(sizeType) {
var cmTable = document.getElementById('size-chart-cm');
var inchTable = document.getElementById('size-chart-inch');
var modelCmTable = document.getElementById('model-info-cm');
var modelInchTable = document.getElementById('model-info-inch');
var buttons = document.getElementsByClassName('toggle-button');
if (sizeType === 'cm') {
cmTable.style.display = 'block';
inchTable.style.display = 'none';
modelCmTable.style.display = 'block';
modelInchTable.style.display = 'none';
buttons[0].classList.add('active');
buttons[1].classList.remove('active');
} else if (sizeType === 'inch') {
cmTable.style.display = 'none';
inchTable.style.display = 'block';
modelCmTable.style.display = 'none';
modelInchTable.style.display = 'block';
buttons[0].classList.remove('active');
buttons[1].classList.add('active');
}
}
Choosing a selection results in a full page refresh.