.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)} /* Tab Panels */ .mf-tab-panel{display:none;padding:24px 0 10px;animation:mfTabIn .35s ease} .mf-tab-panel.mf-active{display:block} @keyframes mfTabIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}} /* Details Table */ .mf-spec-table{width:100%;border-collapse:collapse} .mf-spec-table tr{border-bottom:1px solid #f0ece7} .mf-spec-table tr:last-child{border-bottom:none} .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;color:#1a1a1a;font-style:italic;padding-right:16px} .mf-spec-table td:last-child{color:#555} .mf-spec-table a{color:#555;text-decoration:underline;text-underline-offset:2px} .mf-spec-table a:hover{color:#1a1a1a} /* Collapsible */ .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;color:#1a1a1a;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between} .mf-collapse summary::-webkit-details-marker{display:none} .mf-collapse summary::after{content:'+'} .mf-collapse[open] summary::after{content:'-'} .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;padding:0;margin: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%} /* 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-spec-table td:last-child{font-size:12px} } Details Product Description Brand : Suffuse Collection : Basic Summer 25 Design : Pastel Pink Jacquard Short Shirt with Culottes Category : Pakistani Designer Pret Style : Short Shirt / 3 Piece Suit Colour : Pastel Pink Fabric : Shirt — Jacquard Fabric | Culottes — Cotton | Dupatta — Chiffon Work : V-Neckline with Pom-Pom Tassels, Contrasting Green & Pink Floral Embroidery, Colour-Blocked Sleeve & Hem Borders, Self-Embroidered Cutwork Culottes, Abstract Floral Hem Detailing, Dual-Sided Textural Embroidery Dupatta, Lacework & Pom Tassel Accents Occasion : Summer Events, Eid, Daytime Gatherings, Brunch, Garden Parties, Casual Festive Wear 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 soft pastel pink ensemble designed in a short jacquard shirt silhouette, bringing together playful detailing and refined embroidery. The shirt features a V-neckline with pom-pom tassels, contrasting green and pink floral embroidery with fine outlining, and colour-blocked borders on the sleeves and hem in light green tones. It is paired with pastel pink cotton culottes featuring self-embroidered cutwork and abstract floral hem detailing for a delicate finish. The chiffon dupatta is enhanced with dual-sided textural embroidery, green and white pom tassels, and all-over lacework for a graceful, airy look. Stitched Panel Details Pastel Pink Jacquard Short Shirt V-Neckline with Pom-Pom Tassels Green & Pink Floral Embroidery Colour-Blocked Sleeve & Hem Borders Pastel Pink Cotton Culottes Self Embroidered Cutwork Detailing Abstract Floral Hem Design Chiffon Dupatta with Dual-Sided Embroidery Lacework Finish Pom-Pom Tassel Accents What's Included in Package? Short Shirt Culottes Dupatta Care Instructions Dry clean recommended for first wash to preserve embroidery and embellishments If hand washing, use cold water with mild detergent — wash separately Do not soak for long periods Avoid wringing or twisting Dry in shade away from direct sunlight Iron inside out on low heat Do not iron directly on lace or embroidered areas Store in a breathable garment bag Do not bleach Handle chiffon dupatta with care to avoid snagging Styling Tips For Eid: Pair with soft gold jewelry and khussa for a feminine festive look. For Wedding Events: Add statement earrings and soft curls for elegance. For Summer Outings: Keep accessories minimal with nude sandals. For Day Events: Opt for light makeup and relaxed hairstyle. Dupatta Styling: Wear loosely draped or front-pleated for a graceful finish. 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'); }); });