// Código para personalizar la tienda de productos en Wix con Velo import wixData from 'wix-data'; import wixLocation from 'wix-location'; $w.onReady(function () { loadCategories(); $w("#categoryDropdown").onChange((event) => { filterProducts(event.target.value); }); }); function loadCategories() { wixData.query("Categories") .find() .then((results) => { let options = [{ label: "Todas", value: "" }]; results.items.forEach(category => { options.push({ label: category.title, value: category._id }); }); $w("#categoryDropdown").options = options; }); } function filterProducts(categoryId) { let filter = wixData.filter(); if (categoryId) { filter = filter.eq("category", categoryId); } $w("#productsRepeater").data = []; wixData.query("Products") .filter(filter) .find() .then((results) => { $w("#productsRepeater").data = results.items; }); } // Agregar botón de carrito a cada producto $w("#productsRepeater").onItemReady(($item, itemData) => { $item("#addToCartButton").onClick(() => { // Lógica para agregar al carrito console.log(`Producto agregado: ${itemData.title}`); }); // Mostrar cinta de oferta si el producto tiene descuento if (itemData.discount) { $item("#offerRibbon").show(); } else { $item("#offerRibbon").hide(); } });
top of page
Milk Thistle

Milk Thistle

S/.80.00 Precio
S/.75.00Precio de oferta

arca: Xtralife  

  Milk Thistle Perú  

  Contenido: 60 Cápsulas  

  Reg. Sanitario: PNE-0851  

 

La silimarina y otros principios activos con acción antioxidante presente en los frutos del Cardo mariano ayudan a favorecer la secreción de bilis y estimulan la regeneración del hígado. En otras palabras, esta planta y sus extractos son ideales para cuidar y favorecer la desintoxicación hepática.

Cantidad
  • BENEFICIOS

    • Es un hepatoprotector de mucha eficacia.

     

    • Promueve el crecimiento de nuevas células hepáticas.

     

    • Previene la entrada de sustancias dañinas en el hígado.

     

    • Posee un alto poder antioxidante.

     

    • Disminuye los niveles de colesterol.

     

    • Disminuye la condición de transaminasas altas.
  • IDEAL EN CASOS DE:

    • Insuficiencia hepática, hepatitis aguda y crónica.

     

    • Cirrosis.

     

    • Hígado graso.

     

    • Intoxicación por minerales y agentes químicos.
  • DOSIS SUGERIDA:

    • De 1 a 2 cápsulas al día, luego de ingerir algún alimento.
  • PRECAUCIONES / CONTRAINDICACIONES:

    • No debe ser ingerido por personas que sufran de alergia a plantas de la familia asteraceae.

     

    • No debe ser ingerido por mujeres en la etapa del embarazo o lactancia.

     

    • No debe darse a los niños sin supervisión médica.
bottom of page