{"product_id":"luna-repair","title":"Luna Repair","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003ctitle\u003eJUUN LABS – Luna Repair Serum\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: #F5364C; margin-bottom: 20px;\"\u003eProduct Information\u003c\/h2\u003e\n\n  \u003cdetails style=\"border: 1px solid #F5364C; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #F5364C; 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\u003eLUNA REPAIR SERUM\u003c\/strong\u003e\u003cbr\u003e\n        \u003cem\u003eWITH MANDELIC ACID, HYALURONIC ACID \u0026amp; GLYCERIN\u003c\/em\u003e\u003cbr\u003e\u003cbr\u003e\n        Mandelic acid serum offers very gentle exfoliation other than alpha hydroxy acids. It reduces pigmentation and clarifies the skin by gentle peeling.\u003cbr\u003e\u003cbr\u003e\n        Powered by Mandelic Acid, it softly dissolves dead skin cells, refining texture and promoting a brighter, more even-toned complexion. Hyaluronic Acid and Glycerin deeply replenish moisture, leaving your skin baby-soft, smooth, and plump.\u003cbr\u003e\u003cbr\u003e\n        With regular use, Luna Repair Serum improves overall skin texture, enhances clarity, and restores your skin's natural radiance — making it the perfect night-time ritual for calm, healthy, glowing skin.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n\n  \u003cdetails style=\"border: 1px solid #F5364C; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #F5364C; 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        Mandelic Acid, Glycerine, Sodium Hyaluronate, Caprylyl Glycol, Phenoxyethanol, Aqua.\n      \u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/details\u003e\n\n  \u003cdetails style=\"border: 1px solid #F5364C; border-radius: 5px; margin-bottom: 10px; background-color: #fff; overflow: hidden;\"\u003e\n    \u003csummary style=\"font-weight: bold; cursor: pointer; font-size: 16px; color: #F5364C; 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\u003eDirections:\u003c\/strong\u003e\u003cbr\u003e\n        Shake well. Apply an even layer of the mandelic acid serum onto face, neck and chest, avoiding eye area. For best results, follow with a moisturizer. If mild sensitivity or redness occurs, reduce frequency of use until skin adjusts. Wear SPF during the day. Patch test prior to use is advised.\u003cbr\u003e\u003cbr\u003e\n        Apply Mandelic Acid Serum once a day in the evening. If it causes a slight tingling sensation, it can be diluted with other treatments to reduce strength, until resistance is developed.\u003cbr\u003e\u003cbr\u003e\n        \u003cstrong\u003eBenefits:\u003c\/strong\u003e\u003cbr\u003e\n        Gently exfoliates • Brightens appearance of skin • Helps reduce the look of fine lines and wrinkles\u003cbr\u003e\u003cbr\u003e\n        \u003cem\u003e* CRUELTY FREE • PARABEN FREE • VEGAN • GLUTEN FREE • FRAGRANCE FREE • DERMATOLOGIST TESTED\u003c\/em\u003e\u003cbr\u003e\n        \u003cem\u003e* Use sun protection in the morning. Store in a cool and dry place.\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":48020986790062,"sku":null,"price":3000.0,"currency_code":"PKR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0754\/0165\/8542\/files\/7f94b9e2-8570-48a2-90a7-d0aaf2f6309a.png?v=1782380006","url":"https:\/\/juunlabs.com\/products\/luna-repair","provider":"Juun Labs","version":"1.0","type":"link"}