Next-gen smart serum delivers what your skin needs when and where needed, for a personalised response every time. SmartResponse technology reacts to skin’s needs to , , and . It recognises micro-changes in the skin, intelligently addressing skin concerns before they're visible to the naked eye and helping to prevent future damage.
Read our on smart response serum.
window.addEventListener('DOMContentLoaded', () => { let benefits = document.querySelectorAll('a.benefit'); let benefitHeader = document.querySelector('.srs-modal-benefit') let textDiv = document.querySelector('.srs-modal-desc') benefits.forEach((e) => { e.addEventListener('click', () => { benefitHeader.textContent = e.textContent textDiv.textContent = e.textContent openModal(); if (e.textContent.includes('soothe')) { benefitHeader.textContent = e.textContent textDiv.textContent = "Gallic Acid from Japanese Cornelia Cherry senses skin's inflammatory response, and activates to help soothe and reduce the appearance of redness" } if (e.textContent.includes('firm')) { benefitHeader.textContent = e.textContent textDiv.textContent = "Mannose-6-Phosphate detects poorly-organised collagen fibres, which can lead to rough skin texture - responding to the first signs of visible skin ageing to help smooth, firm and improve the look of fine lines & wrinkles" } if (e.textContent.includes('brighten')) { benefitHeader.textContent = e.textContent textDiv.textContent = "Hydrolyzed Wheat Flour, rich in Arabinoxylo-Oligosaccharides, activates when it detects too much of a key enzyme in melanin production, then responds by brightening skin and helping to reduce the appearance of dark spots" } if (e.textContent.includes('hydrate')) { benefitHeader.textContent = e.textContent textDiv.textContent = "Oligosachaccharides from Hydrolyzed Beta Glucan reaches even the smallest cracks in skin's lipid barrier, then responds where it detects dehydration - helping skin to maintain optimal hydration levels" } }) }) }); const showOverlay = () => document.querySelector(".srs-modal-dark-overlay").style.display = 'block'; const showModal = () => document.querySelector(".srs-modal-container").style.display = 'block'; const hideTheOverlay = () => document.querySelector(".srs-modal-dark-overlay").style.display = 'none'; const hideModal = () => document.querySelector(".srs-modal-container").style.display = 'none'; document.querySelector(".modal-click-exit").onclick = function closeModal() { hideTheOverlay(); hideModal(); } function openModal() { showOverlay(); showModal(); }