.mf-pdp-tabs{font-family:'Helvetica Neue',Arial,sans-serif;max-width:100%;margin:0} .mf-pdp-tabs *{box-sizing:border-box} /* Tab Header */ .mf-tab-header{display:flex;border-bottom:2px solid #e8e3dc;margin-bottom:0;gap:0} .mf-tab-btn{background:none;border:none;padding:14px 24px;font-family:inherit;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:2px;color:#aaa;cursor:pointer;position:relative;transition:color .3s;white-space:nowrap} .mf-tab-btn:hover{color:#555} .mf-tab-btn::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;background:#1a1a1a;transform:scaleX(0);transition:transform .35s cubic-bezier(.16,1,.3,1)} .mf-tab-btn.mf-active{color:#1a1a1a} .mf-tab-btn.mf-active::after{transform:scaleX(1)} /* Panels */ .mf-tab-panel{display:none;padding:24px 0 10px} .mf-tab-panel.mf-active{display:block} /* Table */ .mf-spec-table{width:100%;border-collapse:collapse} .mf-spec-table tr{border-bottom:1px solid #f0ece7} .mf-spec-table td{padding:11px 0;font-size:13.5px;vertical-align:top;line-height:1.6} .mf-spec-table td:first-child{width:140px;font-weight:600;font-style:italic;color:#1a1a1a} .mf-spec-table td:last-child{color:#555} /* Description */ .mf-desc-text{font-size:14px;line-height:1.9;color:#444} .mf-desc-text p{margin:0 0 14px} /* Collapse */ .mf-collapse{border:1px solid #ebe6df;margin-top:16px;background:#fdfcfb} .mf-collapse summary{padding:16px 20px;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;cursor:pointer;display:flex;justify-content:space-between;align-items:center} .mf-collapse summary::-webkit-details-marker{display:none} .mf-collapse summary::after{content:'+';color:#c9a96e;font-size:16px} .mf-collapse[open] summary::after{content:'-'} .mf-collapse[open] summary{background:#f9f6f2;border-bottom:1px solid #ebe6df} .mf-collapse-body{padding:18px 20px;font-size:13.5px;line-height:1.8;color:#555} .mf-collapse-body ul{list-style:none;padding:0;margin:0} .mf-collapse-body li{padding:4px 0 4px 20px;position:relative} .mf-collapse-body li::before{content:'';position:absolute;left:0;top:13px;width:6px;height:6px;background:#c9a96e;border-radius:50%} /* Mobile */ @media(max-width:749px){ .mf-tab-btn{padding:12px 14px;font-size:10px;letter-spacing:1.5px} .mf-spec-table td:first-child{width:110px;font-size:12px} .mf-desc-text{font-size:13px} } Details Product Description Brand : Hussain Rehar Collection : Basic Not Basic Design : Long Shirt Category : Pakistani Luxury Pret Wear Style : 3 Piece Suit (Long Shirt with Culottes) Colour : Ice Blue Fabric : Shirt — Raw Silk | Dupatta — Organza | Culottes — Digital Printed Fabric Work : Screen Printed Round Daman, Embellished Detailing, Organza Dupatta, Digital Printed Culottes Occasion : Festive Wear, Wedding Events, Summer Gatherings, Semi-Formal Functions Availability : Stitched (XS to XL + Custom Size) Ships From : Pakistani Warehouse — No customs or duties Ship To : Worldwide (UK, USA, Canada, Saudi Arabia, Australia etc.) Step into soft elegance with this ice blue raw silk long shirt ensemble designed for refined festive styling. The shirt features a screen-printed and embellished round daman that adds structure and subtle sophistication to the silhouette. A matching ice blue organza dupatta enhances the airy, graceful flow of the outfit with a delicate finish. The look is completed with mustard floral digital-printed culottes, creating a striking contrast that elevates the entire ensemble. Stitched Panel Details Screen Printed Raw Silk Shirt Panels — 1 Set Embellished Round Daman — 1 Piece Organza Dupatta — 2.50 Meters Digital Printed Culottes — 2.00 Meters Printed Finishing For Shirt — 0.90 Meters What's Included in Package? Shirt (Raw Silk) — ice blue long shirt Trouser (Culottes) — mustard printed culottes Dupatta (Organza) — ice blue dupatta Care Instructions Dry clean recommended for first wash to preserve embroidery and embellishments If hand washing, use cold water with a mild detergent — wash each piece separately Do not soak for extended periods as colours may bleed Avoid wringing or twisting — gently squeeze out excess water Dry flat in shade; avoid direct sunlight to prevent colour fading Iron on low to medium heat from the reverse side, especially over embellished areas Do not iron directly on organza dupatta — use a pressing cloth Store in a cool, dry place; keep in a muslin or cotton garment bag Do not bleach or use harsh chemical detergents Handle trims and dupatta with care to avoid snagging Styling Tips Festive Look: Silver jewelry with soft heels Day Events: Minimal makeup with light accessories Evening Wear: Bold lips and sleek hair bun Wedding Guest: Statement earrings and clutch Dupatta Style: Loose drape for elegant flow const tabs = document.querySelectorAll('.mf-tab-btn'); const panels = document.querySelectorAll('.mf-tab-panel'); tabs.forEach((btn, index) => { btn.addEventListener('click', () => { // remove active from buttons tabs.forEach(b => b.classList.remove('mf-active')); // hide panels panels.forEach(p => p.classList.remove('mf-active')); // activate clicked button btn.classList.add('mf-active'); // show correct panel panels[index].classList.add('mf-active'); }); });