For everybody
{
const children = Array.from($el.children)
const children_products = children.filter((child) => child.classList.contains("filter__product"))
let order = 0
for (let i = 0; i < children_products.length; i++) {
if (children_products[i].dataset.show == "false") {
children_products[i].style.display = "none"
} else {
children_products[i].style.display = ""
children_products[i].style.order = order
order++
}
}
const children_promos = children.filter((child) => child.classList.contains("filter__promo"))
for (let i = 0; i < children_promos.length; i++) {
const index = children.indexOf(children_promos[i])
if (index > -1) {
const next_children_products = children.filter((child) => child.classList.contains("filter__product") && child.dataset.show != "false" && parseInt(child.style.order) > parseInt(children_promos[i].style.order))
if (next_children_products.length > 0) {
children_promos[i].style.display = ""
} else {
children_promos[i].style.display = "none"
}
} else {
console.error("Element not found!")
}
}
}, 5)
'
>
Golden Hour Recovery Cream
Brighten Up Vitamin C Serum
Force Field SPF 30
Fantastic Face Wash
Fortifying Gel Moisturizer
4-in-1 Essential Face Tonic

An incredibly nourishing, yet fast-absorbing face cream.
Rated 4.5 out of 5 stars
4.5 Stars (3,448 Reviews)

A concentrated, corrective serum for even-toned, radiant skin.
Rated 4.5 out of 5 stars
4.5 Stars (1,103 Reviews)

Pure protection on every level, in a silky-smooth, sheer formula.
Rated 4.5 out of 5 stars
4.5 Stars (222 Reviews)

A super fresh foaming face wash for clean, balanced skin.
Rated 4.7 out of 5 stars
4.7 Stars (1,272 Reviews)

A soothing gel moisturizer to calm, clarify, and hydrate skin.
Rated 4.1 out of 5 stars
4.1 Stars (125 Reviews)

The multitasker that cleanses, exfoliates, soothes, & hydrates.
Rated 4.8 out of 5 stars
4.8 Stars (303 Reviews)