.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;line-height:1.6;vertical-align:top} .mf-spec-table td:first-child{width:140px;font-weight:600;font-style:italic;color:#1a1a1a} .mf-spec-table td:last-child{color:#555} .mf-spec-table a{color:#555;text-decoration:underline;text-underline-offset:2px} /* 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;letter-spacing:1.5px;text-transform:uppercase;cursor:pointer;display:flex;justify-content:space-between} .mf-collapse summary::-webkit-details-marker{display:none} .mf-collapse summary::after{content:'+';color:#c9a96e} .mf-collapse[open] summary::after{content:'-'} .mf-collapse[open] summary{background:#f9f6f2;border-bottom:1px solid #ebe6df} .mf-collapse .mf-collapse-body{padding:18px 20px;font-size:13.5px;line-height:1.8;color:#555} .mf-collapse .mf-collapse-body ul{list-style:none;margin:0;padding:0} .mf-collapse .mf-collapse-body ul li{padding:4px 0 4px 20px;position:relative} .mf-collapse .mf-collapse-body ul li::before{content:'';position:absolute;left:0;top:13px;width:6px;height:6px;background:#c9a96e;border-radius:50%} @media(max-width:749px){ .mf-tab-btn{padding:12px 14px;font-size:10px} .mf-spec-table td:first-child{width:110px;font-size:12px} .mf-spec-table td:last-child{font-size:12px} .mf-desc-text{font-size:13px} } Details Product Description Brand : Hussain Rehar Collection : Basic Not Basic Design : Short Shirt with Palazzo Pants Category : Pakistani Luxury Pret Wear Style : Shirt / Palazzo Pants Colour : Navy Blue Fabric : Raw Silk Shirt | Raw Silk Palazzo Pants | Printed Organza Dupatta Work : Gold Sequins, Pink/Orange/Green/Gold Bugle Beads, Tassel Neckline Detail, Embellished Shirt & Pants, Printed Dupatta Occasion : Eid, Festive Wear, Wedding Events, Formal Gatherings, Evening 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.) A striking navy blue matching separate designed with rich festive detailing and bold handcrafted embellishments. The shirt, sleeves, and palazzo pants are adorned with gold sequins and colorful bugle beads in pink, orange, green, and gold tones, creating a vibrant statement look. Tassel detailing on the neckline adds movement and a refined festive charm to the silhouette. It is paired with a navy blue printed dupatta that completes the ensemble with a cohesive and elegant finish. Stitched Panels Details Short Shirt Front Embellished Panel Short Shirt Back Panel Neckline Tassel Attachment Panel Sleeve Embellished Panels Palazzo Pants Embellished Panels Printed Dupatta Base Panels Dupatta Print Layout Panel Border Finishing Panels What's Included in Package? Raw Silk Short Shirt — navy blue embellished shirt Raw Silk Palazzo Pants — matching bottom wear Printed Organza Dupatta — coordinated dupatta Care Instructions Dry clean recommended for best results Handle embellishments and tassels with care Do not soak fabric Wash separately in cold water if needed Dry in shade only Iron on low heat from reverse side Avoid direct ironing on beads and sequins Store in breathable garment bag Keep tassels untangled while storing Avoid harsh detergents and bleach Styling Tips Pair with silver or gold heels for evening wear Soft smoky eye makeup enhances navy tone Statement earrings elevate neckline tassels Drape dupatta neatly for a polished festive look 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'); }); });