
Double-Layer Polka Dot Lace Trim Tank Top
.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: black; } .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; } .scroll-indicator { position: absolute; bottom: 0; height: 4px; width: 100%; background: linear-gradient(to right, #ccc, #999); border-radius: 2px; z-index: 1; pointer-events: none; } Description Product Name: Double-Layer Polka Dot Lace Trim Tank Top The JINN STUDIO camisole features a double-layered polka dot lace design, combining vintage floral motifs and delicate lace details for an elegant, romantic vibe. The use of soft mesh fabric adds to its luxurious feel and creates a vintage-inspired look, offering a soft and comfortable fit for all-day wear. SIZE in cmSIZE in Inch Size Chart Size Front Length (cm) Bust (cm) Hem Circumference (cm) S 37 70 75 M 37.6 74 79 L 38.2 78 83 Size Front Length (in) Bust (in) Hem Circumference (in) S 14.57 27.56 29.53 M 14.8 29.13 31.1 L 15.04 30.71 32.68 Model Info Model Height (cm) Weight (kg) Bust/Waist/Hips (cm) Size 162 45 78/65/88 S 168 49 77/56/86 S 165 52 79/60/90 M Model Height (ft/in) Weight (lbs) Bust/Waist/Hips (in) Size 5'4" 99 30.7"/25.6"/34.6" S 5'6" 108 30.3"/22.0"/33.9" S 5'5" 115 31.1"/23.6"/35.4" M Composition + Fabric Composition: 100% Polyester (Lace material), 96% Nylon (Mesh material), 4% Spandex (For stretchability) 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'); } }