
Plaid Pleated Mini Skirt
.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; /* Ensure full width */ 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: Plaid Pleated Mini Skirt This plaid pleated mini skirt features a classic design with a high-waist fit and side zipper closure. Perfect for pairing with casual or semi-formal tops, it's versatile for everyday wear or special occasions. SIZE in cmSIZE in Inch Size Chart Size Waist (cm) Side Length (cm) Hip (cm) S 72 25 100 M 76 25.5 104 L 80 26 108 Size Waist (in) Side Length (in) Hip (in) S 28.3 9.8 39.4 M 29.9 10.0 40.9 L 31.5 10.2 42.5 Model Info Model Name Height (cm) Bust/Waist/Hips (cm) Size Diana 176 80/60/89 S Veronika 175 78/60/88 S Lena 173 79/59/89 S Model Name Height (in) Bust/Waist/Hips (in) Size Diana 5'9.3" 31.5"/23.6"/35.0" S Veronika 5'9" 30.7"/23.6"/34.6" S Lena 5'8" 31.1"/23.2"/35.0" S Composition + Fabric Composition: 65% Polyester, 35% Cotton 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'); } }