✦ Verified product
Pink Multi-Function Down
USD 59.90
CHINANIO
Verified independent store
→
.product-details h2 { cursor: pointer; padding: 10px; margin: 0; font-size: 18px; font-weight: bold; display: flex; align-items: center; justify-content: space-between; color: blac
k; } .detail-content { display: none; margin: 0px 0; padding: 0px; } .detail-content-table { width: auto; min-width: 100%; border-collapse: collapse; margin-top: 10px; table-layout: auto; } .detail-content-table th, .detail-content-table td { border: 1px solid black; padding: 8px; text-align: left; color: black; font-size: 14px; white-space: nowrap; } .product-intro { margin-bottom: 20px; } .product-intro h5 { font-size: 23px; font-weight: bold; color: black; text-transform: capitalize; line-height: 0; } .product-intro h6 { font-size: 15px; color: black; line-height: 1.5; font-weight: normal; } .table-container { overflow-x: auto; overflow-y: hidden; width: 100%; position: relative; } .toggle-button { padding: 8px 16px; margin-right: 10px; background-color: #f1f1f1; border: 1px solid #ccc; cursor: pointer; } .toggle-button.active { background-color: #000; color: #fff; } Description SunsetPark, Pink Multi-Function Down This stylish and functional down jacket features a water-resistant, oil-proof, and stain-resistant three-defense fabric. The high collar and snap buttons provide excellent wind protection, while the soft inner lining ensures warmth and comfort. Filled with high-quality white duck down (90%), it combines practicality with a chic pink and plaid patchwork design, perfect for winter adventures. SIZE in cmSIZE in Inch Size Chart Size Back Length (cm) Shoulder Width (cm) Bust (cm) Sleeve Length (cm) S 82 59 124 51.5 M 83.5 60 128 52.5 L 85 61 132 53.5 Size Back Length (in) Shoulder Width (in) Bust (in) Sleeve Length (in) S 32.3 23.2 48.8 20.3 M 32.9 23.6 50.4 20.7 L 33.5 24.0 52.0 21.1 Model Info Height (cm) Bust/Waist/Hips (cm) Size 170 84/64/88 S Height (in) Bust/Waist/Hips (in) Size 5'7" 33"/25.2"/34.6" S Composition + Fabric Composition: Pink: 100% Polyester Plaid: 100% Cotton Filling: 90% White Duck Down 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'); } }