Callus-Cure oil 50ml

0 klantbeoordelingen

 60,00

We accept

30-days Free Returns

See policies

De olie is delicaat vermengd met verschillende natuurlijke actieve stoffen en geparfumeerd met kostbare MAGNOLIA. Geschikt voor de meest veeleisende huid. Maakt de huid zijdezacht, de olie is niet vettig en niet comedogeen (verstopt de poriën niet).

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

  • Free shipping over $ 120

  • Delivers in: 3-7 Working Days

SKU: Categories: Geen categorie
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.productsinglechi__accordion-heading');
const contentFaq = document.querySelectorAll('.productsinglechi__accordion-description');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});