// 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
Va-le-rín

Va-le-rín

S/.48.00Precio

PRESENTACIÓN Frasco x 120 ml

USO TRADICIONAL RECOMENDADO:
• Tradicionalmente usado como relajante, lo cual ayudar a disminuir los niveles de ansiedad, desesperación, hiperactividad, estado de alerta exagerado, irritabilidad, rabia, angustia, histeria, etc. que son producidos por el estrés crónico.
• En compañia de MACZINC de Luz Alfa, contribuye a mejorar las manifestaciones en el cuerpo del estrés crónico como nerviosismo, palpitaciones, dolor de cabeza, fatiga, picazón extrema en la piel.
• Coadyuvante en el tratamiento del insomnio.

Cantidad
  • BENEFICIOS

    BENEFICIOS:
    Una fórmula vegetal que combina vainita, lechuga y ricacha, rica en compuestos bioactivos que favorecen la salud digestiva, metabólica y antioxidante, regulan la actividad del sistema nervioso, promoviendo la relajación y reduciendo la ansiedad.

  • USO SUGERIDO

    USO SUGERIDO:
    01 cucharadita de dos a tres veces al día.

    CONDICIONES DE ALMACENAMIENTO:
    Conservar en un lugar fresco y seco. Mantener lejos de las
    fuentes de calor y luz. Una vez abierto mantener refrigerado.

bottom of page