{"product_id":"solar-eclipse-sunscreen","title":"Solar Eclipse Sunscreen","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003ctitle\u003eJUUN LABS – Solar Eclipse Sunscreen\u003c\/title\u003e\n\n  \u003cstyle\u003e\n    \/* Smooth CSS Transition Fix *\/\n    details div {\n      transition: max-height 0.3s ease-out, padding 0.3s ease-out;\n    }\n  \u003c\/style\u003e\n\n  \u003ch2 style=\"color: #09233A; margin-bottom: 20px;\"\u003eProduct Information\u003c\/h2\u003e\n\n  \u003cdetails style=\"border: 1px solid #09233A; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #09233A; padding: 10px; user-select: none;\"\u003e\n      Description\n    \u003c\/summary\u003e\n    \u003cdiv style=\"max-height: 0; overflow: hidden; padding: 0 10px;\"\u003e\n      \u003cp style=\"margin: 10px 0; font-size: 14px; color: #555; line-height: 1.5;\"\u003e\n        \u003cstrong\u003eSOLAR ECLIPSE SUNSCREEN\u003c\/strong\u003e\u003cbr\u003e\n        \u003cem\u003eBROAD SPECTRUM SPF 50 • FOR ALL SKIN TYPES\u003c\/em\u003e\u003cbr\u003e\u003cbr\u003e\n        Meet your skin's new daily essential — Solar Eclipse Sunscreen provides powerful broad-spectrum UVA \u0026amp; UVB protection while feeling weightless and invisible on the skin. This hydrating, fast-absorbing formula instantly brightens dull, tired, and grumpy skin, leaving it fresh, radiant, and protected.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n\n  \u003cdetails style=\"border: 1px solid #09233A; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #09233A; padding: 10px; user-select: none;\"\u003e\n      Ingredients\n    \u003c\/summary\u003e\n    \u003cdiv style=\"max-height: 0; overflow: hidden; padding: 0 10px;\"\u003e\n      \u003cp style=\"margin: 10px 0; font-size: 14px; color: #555; line-height: 1.5;\"\u003e\n        Aqua, Homosalate, Octocrylene, Ethylhexyl Salicylate, Glycerin, Butyl Methoxydibenzoylmethane, Niacinamide, Sodium Hyaluronate, Panthenol, Aloe Barbadensis Leaf Juice, Tocopherol (Vitamin E), Allantoin, Propanediol, Phenoxyethanol, Ethylhexylglycerin.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n\n  \u003cdetails style=\"border: 1px solid #09233A; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #09233A; padding: 10px; user-select: none;\"\u003e\n      How to Use \u0026amp; Benefits\n    \u003c\/summary\u003e\n    \u003cdiv style=\"max-height: 0; overflow: hidden; padding: 0 10px;\"\u003e\n      \u003cp style=\"margin: 10px 0; font-size: 14px; color: #555; line-height: 1.5;\"\u003e\n        \u003cstrong\u003eHow to Use:\u003c\/strong\u003e\u003cbr\u003e\n        Apply generously to face and neck every morning as the final step of your skincare routine, before makeup. Reapply as needed throughout the day, especially after sweating or sun exposure.\u003cbr\u003e\u003cbr\u003e\n        \u003cstrong\u003eKey Benefits:\u003c\/strong\u003e\u003cbr\u003e\n        • SPF 50 broad-spectrum protection\u003cbr\u003e\n        • Hydrates and nourishes the skin\u003cbr\u003e\n        • Brightens and revives dull, fatigued skin\u003cbr\u003e\n        • Lightweight, non-greasy, and fast-absorbing\u003cbr\u003e\n        • Suitable for all skin types\u003cbr\u003e\u003cbr\u003e\n        \u003cstrong\u003eCaution:\u003c\/strong\u003e\u003cbr\u003e\n        Discontinue use if redness or irritation occurs. Avoid contact with eyes. For external use only. Store in a cool, dry place.\u003cbr\u003e\u003cbr\u003e\n        \u003cem\u003e* FOR ALL SKIN TYPES (12M Period After Opening)\u003c\/em\u003e\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n    const detailsElements = document.querySelectorAll('details');\n\n    detailsElements.forEach((detail) =\u003e {\n      const content = detail.querySelector('div');\n\n      detail.addEventListener('click', (e) =\u003e {\n        if (e.target.tagName === 'SUMMARY') {\n          e.preventDefault();\n          \n          if (!detail.open) {\n            \/\/ Close other panels\n            detailsElements.forEach((d) =\u003e {\n              if (d !== detail \u0026\u0026 d.open) {\n                const openContent = d.querySelector('div');\n                openContent.style.maxHeight = '0';\n                openContent.style.paddingTop = '0';\n                openContent.style.paddingBottom = '0';\n                setTimeout(() =\u003e { d.open = false; }, 300);\n              }\n            });\n\n            \/\/ Open current panel\n            detail.open = true;\n            content.style.paddingTop = '10px';\n            content.style.paddingBottom = '10px';\n            content.style.maxHeight = content.scrollHeight + 20 + 'px';\n          } else {\n            \/\/ Close current panel\n            content.style.maxHeight = '0';\n            content.style.paddingTop = '0';\n            content.style.paddingBottom = '0';\n            setTimeout(() =\u003e { detail.open = false; }, 300);\n          }\n        }\n      });\n    });\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Juun Labs","offers":[{"title":"Default Title","offer_id":48032834093230,"sku":null,"price":3000.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0754\/0165\/8542\/files\/e90a81f6-5f52-4cc4-9f00-6d790017ba5a.png?v=1782935544","url":"https:\/\/juunlabs.com\/products\/solar-eclipse-sunscreen","provider":"Juun Labs","version":"1.0","type":"link"}