{"title":"Pants","description":"","products":[{"product_id":"comfortable-black-jogger-pants","title":"Comfortable Jogger Pants with Drawstring for Men – Stylish \u0026 Relaxed Fit","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\n\u003cdiv class=\"custom-accordion\"\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eDescription\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Solution: Our Comfortable Black Jogger Pants are designed with a relaxed fit and adjustable drawstrings,\n                ensuring a snug\n                yet comfortable wear all day. Whether you’re lounging at home or heading out, these joggers offer style\n                without\n                compromising on comfort.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eKey Features\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Relaxed Fit Design: The loose cut ensures freedom of movement while maintaining a sleek, modern look,\n                perfect for casual\n                outings or working out.\n                Drawstring Waistband: With an adjustable waistband, these joggers offer a custom fit to suit your\n                preferences, making\n                them ideal for all body types.\n                Soft and Breathable Fabric: Made with high-quality cotton-blend fabric, these joggers provide a soft\n                feel against the\n                skin while keeping you cool and comfortable during long hours of wear.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n    document.querySelectorAll('.custom-accordion-header').forEach(header =\u003e {\n        header.addEventListener('click', () =\u003e {\n            const item = header.parentElement;\n            const content = item.querySelector('.custom-accordion-content');\n\n            document.querySelectorAll('.custom-accordion-item').forEach(i =\u003e {\n                if (i !== item) {\n                    i.classList.remove('active');\n                    const c = i.querySelector('.custom-accordion-content');\n                    if (c) c.style.height = 0;\n                }\n            });\n\n            if (item.classList.contains('active')) {\n                item.classList.remove('active');\n                content.style.height = 0;\n            } else {\n                item.classList.add('active');\n                content.style.height = content.scrollHeight + 'px';\n            }\n        });\n    });\n\u003c\/script\u003e","brand":"Zyvor Shop","offers":[{"title":"Black \/ 30","offer_id":48819973521636,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 32","offer_id":48832749011172,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 34","offer_id":48832749043940,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":false},{"title":"Black \/ 36","offer_id":48832749076708,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true},{"title":"White \/ 30","offer_id":48832749109476,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true},{"title":"White \/ 32","offer_id":48832749142244,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true},{"title":"White \/ 34","offer_id":48832749175012,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":false},{"title":"White \/ 36","offer_id":48832749207780,"sku":null,"price":2899.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/Zyvor-Black-Jogger-Pants-Front-View-Black.178.webp?v=1777109616"},{"product_id":"classic-blue-denim-jeans","title":"Classic Denim Jeans for Men – Comfortable \u0026 Stylish Fit","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\n\u003cdiv class=\"custom-accordion\"\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eDescription\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Solution: Our Classic Blue Denim Jeans for Men are crafted for comfort and designed to last. With a\n                timeless blue hue\n                and modern cut, these jeans are versatile enough for both casual and semi-formal occasions. Experience\n                the perfect fit,\n                premium fabric, and style that never goes out of fashion.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eKey Features\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Timeless Blue Denim: A classic blue shade that pairs effortlessly with any wardrobe, ensuring versatile\n                outfit options\n                for both casual and smart-casual looks.\n                Comfortable Fit: Designed to offer a comfortable, flattering fit without sacrificing style, providing\n                ease of movement\n                and long-lasting comfort throughout the day.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n    document.querySelectorAll('.custom-accordion-header').forEach(header =\u003e {\n        header.addEventListener('click', () =\u003e {\n            const item = header.parentElement;\n            const content = item.querySelector('.custom-accordion-content');\n\n            document.querySelectorAll('.custom-accordion-item').forEach(i =\u003e {\n                if (i !== item) {\n                    i.classList.remove('active');\n                    const c = i.querySelector('.custom-accordion-content');\n                    if (c) c.style.height = 0;\n                }\n            });\n\n            if (item.classList.contains('active')) {\n                item.classList.remove('active');\n                content.style.height = 0;\n            } else {\n                item.classList.add('active');\n                content.style.height = content.scrollHeight + 'px';\n            }\n        });\n    });\n\u003c\/script\u003e","brand":"Zyvor Shop","offers":[{"title":"Light Blue Denim \/ 30","offer_id":48819995476196,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Blue Denim \/ 32","offer_id":48819995508964,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Blue Denim \/ 34","offer_id":48819995541732,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Blue Denim \/ 36","offer_id":48819995574500,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Dark Blue Denim \/ 30","offer_id":48819995607268,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Dark Blue Denim \/ 32","offer_id":48819995640036,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Dark Blue Denim \/ 34","offer_id":48819995672804,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Dark Blue Denim \/ 36","offer_id":48819995705572,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 30","offer_id":48886217867492,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 32","offer_id":48886217900260,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 34","offer_id":48886217933028,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 36","offer_id":48886217965796,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/Zyvor-Classic-Blue-Denim-Jeans-Front-View-Blue.183.webp?v=1777109956"},{"product_id":"slim-fit-pants-men-black-khaki-white","title":"Pants for Men – Black Modern, Comfortable Style","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"custom-accordion\"\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eDescription\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eOur Khaki Slim-Fit Pants offer a stylish, modern look combined with a comfortable and flexible drawstring waist. Designed for men who want to look good while feeling relaxed, these pants are perfect for both casual and semi-formal occasions. Whether you're running errands or meeting friends, these pants are your go-to choice for versatile, everyday wear.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eKey Features\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eSlim-Fit Design: The slim-fit cut offers a contemporary and sleek appearance that complements your body shape without being overly tight, making them ideal for a variety of occasions. Adjustable Drawstring Waist: The elastic waistband with drawstrings provides a custom fit, ensuring comfort and flexibility throughout the day.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Zyvor Shop","offers":[{"title":"Black \/ 30","offer_id":48860805923044,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 32","offer_id":48860805955812,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 34","offer_id":48860805988580,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Black \/ 36","offer_id":48860806021348,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/1_092404e9-02a9-457c-bd90-f8963051b369.webp?v=1777714055"},{"product_id":"mens-cargo-pants-with-adjustable-drawstring-waist","title":"Men's Cargo Pants with Adjustable Drawstring Waist","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\n\u003cdiv class=\"custom-accordion\"\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eDescription\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Our Khaki Cargo Pants are designed to meet your needs. With multiple pockets for storing essentials and\n                a comfortable,\n                relaxed fit, these pants provide the perfect blend of functionality and style. Whether you’re running\n                errands or heading\n                out for a casual day, they offer both convenience and an effortlessly stylish look.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eKey Features\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Functional Multiple Pockets: Equipped with side and back pockets, these pants offer ample space to store\n                your phone,\n                wallet, keys, or any other small essentials without needing an extra bag.\n                Versatile Khaki Color: The neutral khaki color ensures these pants can easily be paired with any top,\n                making them a\n                staple in your casual wardrobe.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n    document.querySelectorAll('.custom-accordion-header').forEach(header =\u003e {\n        header.addEventListener('click', () =\u003e {\n            const item = header.parentElement;\n            const content = item.querySelector('.custom-accordion-content');\n\n            document.querySelectorAll('.custom-accordion-item').forEach(i =\u003e {\n                if (i !== item) {\n                    i.classList.remove('active');\n                    const c = i.querySelector('.custom-accordion-content');\n                    if (c) c.style.height = 0;\n                }\n            });\n\n            if (item.classList.contains('active')) {\n                item.classList.remove('active');\n                content.style.height = 0;\n            } else {\n                item.classList.add('active');\n                content.style.height = content.scrollHeight + 'px';\n            }\n        });\n    });\n\u003c\/script\u003e","brand":"Zyvor Shop","offers":[{"title":"Beige \/ 30","offer_id":48820038238436,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Beige \/ 32","offer_id":48820039483620,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Beige \/ 34","offer_id":48820039516388,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Beige \/ 36","offer_id":48820039549156,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Ash Grey \/ 30","offer_id":48820038172900,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Ash Grey \/ 32","offer_id":48820039287012,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Ash Grey \/ 34","offer_id":48820039319780,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Ash Grey \/ 36","offer_id":48820039352548,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Charcoal Black \/ 30","offer_id":48820038140132,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Charcoal Black \/ 32","offer_id":48820039188708,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Charcoal Black \/ 34","offer_id":48820039221476,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Charcoal Black \/ 36","offer_id":48820039254244,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 30","offer_id":48820038205668,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 32","offer_id":48820039385316,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 34","offer_id":48820039418084,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 36","offer_id":48820039450852,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Beige \/ 30","offer_id":48832875036900,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Beige \/ 32","offer_id":48832875069668,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Beige \/ 34","offer_id":48832875102436,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true},{"title":"Light Beige \/ 36","offer_id":48832875135204,"sku":null,"price":2299.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/198.webp?v=1777113203"},{"product_id":"men-s-denim-cargo-joggers-stretch-comfort-fit","title":"Men’s Denim Cargo Joggers – Stretch Comfort Fit","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\n\u003cdiv class=\"custom-accordion\"\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eDescription\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                This pair of denim cargo pants exudes a perfect blend of comfort and utility with a stylish, relaxed\n                fit. Crafted from\n                high-quality, lightweight denim fabric, it features an eye-catching stone-wash finish that adds an\n                element of cool to\n                your wardrobe. The adjustable drawstring waist provides a customized fit, while the spacious side\n                pockets offer\n                practical storage for your essentials, making it ideal for both casual outings and outdoor activities.\n                The versatile\n                design and relaxed silhouette make it an excellent choice for pairing with various styles, from\n                streetwear to laid-back\n                weekend looks.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"custom-accordion-item\"\u003e\n        \u003cdiv class=\"custom-accordion-header\"\u003e\n            \u003cspan\u003eKey Features\u003c\/span\u003e\n            \u003cdiv class=\"custom-accordion-icon\"\u003e\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-accordion-content\"\u003e\n            \u003cdiv class=\"custom-accordion-inner\"\u003e\n                Stone-wash denim finish for a trendy, vintage look.\n                Adjustable drawstring waist for a comfortable and flexible fit.\n                Multiple side cargo pockets for added storage and functionality.\n                Soft and lightweight denim fabric for all-day comfort.\n                Versatile, relaxed fit suitable for casual and outdoor wear.\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"custom-progress\"\u003e\u003c\/div\u003e\n    \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n    document.querySelectorAll('.custom-accordion-header').forEach(header =\u003e {\n        header.addEventListener('click', () =\u003e {\n            const item = header.parentElement;\n            const content = item.querySelector('.custom-accordion-content');\n\n            document.querySelectorAll('.custom-accordion-item').forEach(i =\u003e {\n                if (i !== item) {\n                    i.classList.remove('active');\n                    const c = i.querySelector('.custom-accordion-content');\n                    if (c) c.style.height = 0;\n                }\n            });\n\n            if (item.classList.contains('active')) {\n                item.classList.remove('active');\n                content.style.height = 0;\n            } else {\n                item.classList.add('active');\n                content.style.height = content.scrollHeight + 'px';\n            }\n        });\n    });\n\u003c\/script\u003e","brand":"Zyvor Shop","offers":[{"title":"30","offer_id":48827153350884,"sku":null,"price":2499.0,"currency_code":"PKR","in_stock":true},{"title":"32","offer_id":48827153383652,"sku":null,"price":2499.0,"currency_code":"PKR","in_stock":true},{"title":"34","offer_id":48827153416420,"sku":null,"price":2499.0,"currency_code":"PKR","in_stock":false},{"title":"36","offer_id":48827153449188,"sku":null,"price":2499.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/192_df141c29-e042-46a4-9954-892fef6de985.webp?v=1777274845"},{"product_id":"pants-for-men-forest-green-modern-comfortable-style","title":"Pants for Men – Forest Green Modern, Comfortable Style","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"custom-accordion\"\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eDescription\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eOur Khaki Slim-Fit Pants offer a stylish, modern look combined with a comfortable and flexible drawstring waist. Designed for men who want to look good while feeling relaxed, these pants are perfect for both casual and semi-formal occasions. Whether you're running errands or meeting friends, these pants are your go-to choice for versatile, everyday wear.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eKey Features\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eSlim-Fit Design: The slim-fit cut offers a contemporary and sleek appearance that complements your body shape without being overly tight, making them ideal for a variety of occasions. Adjustable Drawstring Waist: The elastic waistband with drawstrings provides a custom fit, ensuring comfort and flexibility throughout the day.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Zyvor Shop","offers":[{"title":"Forest Green \/ 30","offer_id":48909187580132,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":false},{"title":"Forest Green \/ 32","offer_id":48909187612900,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Forest Green \/ 34","offer_id":48909187645668,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Forest Green \/ 36","offer_id":48909187678436,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/1_0888db61-32c4-4ef4-91d7-d70554a92510.webp?v=1781172625"},{"product_id":"pants-for-men-olive-khaki-modern-comfortable-style","title":"Pants for Men – Olive Khaki Modern, Comfortable Style","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"custom-accordion\"\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eDescription\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eOur Khaki Slim-Fit Pants offer a stylish, modern look combined with a comfortable and flexible drawstring waist. Designed for men who want to look good while feeling relaxed, these pants are perfect for both casual and semi-formal occasions. Whether you're running errands or meeting friends, these pants are your go-to choice for versatile, everyday wear.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eKey Features\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eSlim-Fit Design: The slim-fit cut offers a contemporary and sleek appearance that complements your body shape without being overly tight, making them ideal for a variety of occasions. Adjustable Drawstring Waist: The elastic waistband with drawstrings provides a custom fit, ensuring comfort and flexibility throughout the day.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Zyvor Shop","offers":[{"title":"Olive Khaki \/ 30","offer_id":48909188235492,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Olive Khaki \/ 32","offer_id":48909188268260,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Olive Khaki \/ 34","offer_id":48909188301028,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Olive Khaki \/ 36","offer_id":48909188333796,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/2_57a907ad-4534-4af1-8ccd-927a6eb52f1d.webp?v=1781172626"},{"product_id":"pants-for-men-navy-blue-modern-comfortable-style","title":"Pants for Men – Navy Blue Modern, Comfortable Style","description":"\u003cstyle\u003e :root { --ease: cubic-bezier(.22, 1, .36, 1); } .custom-accordion { max-width: 500px; font-family: inherit; } .custom-accordion-header h5 { color: #000; margin: 0; font-size: 14px; font-family: sans-serif; font-weight: 900; } .custom-accordion-item { position: relative; border-bottom: 1px solid #000; } .custom-accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; cursor: pointer; font-weight: 600; transition: transform .4s var(--ease), opacity .3s ease; } .custom-accordion-header:hover { transform: translateX(6px); opacity: .75; } .custom-accordion-header span { font-size: 14px; letter-spacing: .7px; } \/* ICON *\/ .custom-accordion-icon { width: 30px; height: 30px; border: 1px solid #000; border-radius: 50%; display: flex !important; align-items: center; justify-content: center; position: relative; transition: all .6s var(--ease); } .custom-accordion-icon::before, .custom-accordion-icon::after { content: ''; position: absolute; background: #000; transition: all .6s var(--ease); } .custom-accordion-icon::before { width: 12px; height: 2px; } .custom-accordion-icon::after { width: 2px; height: 12px; } \/* ACTIVE ICON *\/ .custom-accordion-item.active .custom-accordion-icon { background: #000; } .custom-accordion-item.active .custom-accordion-icon::before, .custom-accordion-item.active .custom-accordion-icon::after { background: #fff; } .custom-accordion-item.active .custom-accordion-icon::after { transform: rotate(90deg); opacity: 0; } \/* CONTENT *\/ .custom-accordion-content { height: 0; overflow: hidden; } .custom-accordion-inner { padding: 0 40px 30px 0; font-size: 14px; line-height: 1.8; opacity: 0; transform: translateY(-20px); transition: opacity .6s ease, transform .6s var(--ease); } \/* ACTIVE CONTENT *\/ .custom-accordion-item.active .custom-accordion-inner { opacity: 1; transform: translateY(0); } \/* PROGRESS LINE *\/ .custom-progress { position: absolute; left: 0; bottom: 0; height: 1px; width: 0%; background: #000; transition: width .8s var(--ease); } .custom-accordion-item.active .custom-progress { width: 100%; } \u003c\/style\u003e \u003cdiv class=\"custom-accordion\"\u003e \u003cdiv class=\"custom-accordion-item\"\u003e \u003cdiv class=\"custom-accordion-header\"\u003e \u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e \u003c\/div\u003e \u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-accordion-item\"\u003e \u003cdiv class=\"custom-accordion-header\"\u003e \u003cspan\u003eDescription\u003c\/span\u003e \u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-accordion-content\"\u003e \u003cdiv class=\"custom-accordion-inner\"\u003eOur Khaki Slim-Fit Pants offer a stylish, modern look combined with a comfortable and flexible drawstring waist. Designed for men who want to look good while feeling relaxed, these pants are perfect for both casual and semi-formal occasions. Whether you're running errands or meeting friends, these pants are your go-to choice for versatile, everyday wear.\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-accordion-item\"\u003e \u003cdiv class=\"custom-accordion-header\"\u003e \u003cspan\u003eKey Features\u003c\/span\u003e \u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-accordion-content\"\u003e \u003cdiv class=\"custom-accordion-inner\"\u003eSlim-Fit Design: The slim-fit cut offers a contemporary and sleek appearance that complements your body shape without being overly tight, making them ideal for a variety of occasions. Adjustable Drawstring Waist: The elastic waistband with drawstrings provides a custom fit, ensuring comfort and flexibility throughout the day.\u003c\/div\u003e \u003c\/div\u003e \u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e \u003c\/div\u003e \u003c\/div\u003e \u003cp\u003e \u003c\/p\u003e","brand":"Zyvor Shop","offers":[{"title":"Navy Blue \/ 30","offer_id":48909188989156,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 32","offer_id":48909189021924,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 34","offer_id":48909189054692,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true},{"title":"Navy Blue \/ 36","offer_id":48909189087460,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/1_bbfd1d45-5288-41d6-8d17-a9a358690b24.webp?v=1778478964"},{"product_id":"pants-for-men-beige-modern-comfortable-style","title":"Pants for Men – Beige Modern, Comfortable Style","description":"\u003cstyle\u003e\n    :root {\n        --ease: cubic-bezier(.22, 1, .36, 1);\n    }\n\n    .custom-accordion {\n        max-width: 500px;\n        font-family: inherit;\n    }\n\n    .custom-accordion-header h5 {\n        color: #000;\n        margin: 0;\n        font-size: 14px;\n        font-family: sans-serif;\n        font-weight: 900;\n    }\n\n    .custom-accordion-item {\n        position: relative;\n        border-bottom: 1px solid #000;\n    }\n\n    .custom-accordion-header {\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        padding: 12px 0;\n        cursor: pointer;\n        font-weight: 600;\n        transition: transform .4s var(--ease), opacity .3s ease;\n    }\n\n    .custom-accordion-header:hover {\n        transform: translateX(6px);\n        opacity: .75;\n    }\n\n    .custom-accordion-header span {\n        font-size: 14px;\n        letter-spacing: .7px;\n    }\n\n    \/* ICON *\/\n    .custom-accordion-icon {\n        width: 30px;\n        height: 30px;\n        border: 1px solid #000;\n        border-radius: 50%;\n        display: flex !important;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before,\n    .custom-accordion-icon::after {\n        content: '';\n        position: absolute;\n        background: #000;\n        transition: all .6s var(--ease);\n    }\n\n    .custom-accordion-icon::before {\n        width: 12px;\n        height: 2px;\n    }\n\n    .custom-accordion-icon::after {\n        width: 2px;\n        height: 12px;\n    }\n\n    \/* ACTIVE ICON *\/\n    .custom-accordion-item.active .custom-accordion-icon {\n        background: #000;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::before,\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        background: #fff;\n    }\n\n    .custom-accordion-item.active .custom-accordion-icon::after {\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    \/* CONTENT *\/\n    .custom-accordion-content {\n        height: 0;\n        overflow: hidden;\n    }\n\n    .custom-accordion-inner {\n        padding: 0 40px 30px 0;\n        font-size: 14px;\n        line-height: 1.8;\n        opacity: 0;\n        transform: translateY(-20px);\n        transition: opacity .6s ease, transform .6s var(--ease);\n    }\n\n    \/* ACTIVE CONTENT *\/\n    .custom-accordion-item.active .custom-accordion-inner {\n        opacity: 1;\n        transform: translateY(0);\n    }\n\n    \/* PROGRESS LINE *\/\n    .custom-progress {\n        position: absolute;\n        left: 0;\n        bottom: 0;\n        height: 1px;\n        width: 0%;\n        background: #000;\n        transition: width .8s var(--ease);\n    }\n\n    .custom-accordion-item.active .custom-progress {\n        width: 100%;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"custom-accordion\"\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003ch5\u003ePRODUCT DESCRIPTION:-\u003c\/h5\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eDescription\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eOur Khaki Slim-Fit Pants offer a stylish, modern look combined with a comfortable and flexible drawstring waist. Designed for men who want to look good while feeling relaxed, these pants are perfect for both casual and semi-formal occasions. Whether you're running errands or meeting friends, these pants are your go-to choice for versatile, everyday wear.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-item\"\u003e\n\u003cdiv class=\"custom-accordion-header\"\u003e\n\u003cspan\u003eKey Features\u003c\/span\u003e\n\u003cdiv class=\"custom-accordion-icon\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-accordion-content\"\u003e\n\u003cdiv class=\"custom-accordion-inner\"\u003eSlim-Fit Design: The slim-fit cut offers a contemporary and sleek appearance that complements your body shape without being overly tight, making them ideal for a variety of occasions. Adjustable Drawstring Waist: The elastic waistband with drawstrings provides a custom fit, ensuring comfort and flexibility throughout the day.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"custom-progress\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Zyvor Shop","offers":[{"title":"Beige \/ 30","offer_id":48909191086308,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":false},{"title":"Beige \/ 32","offer_id":48909191119076,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":false},{"title":"Beige \/ 34","offer_id":48909191151844,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":false},{"title":"Beige \/ 36","offer_id":48909191184612,"sku":null,"price":2999.0,"currency_code":"PKR","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0808\/0772\/3236\/files\/219.webp?v=1777110813"}],"url":"https:\/\/zyvor.shop\/collections\/pants.oembed","provider":"Zyvor Shop","version":"1.0","type":"link"}