Passer aux informations sur le produit
Proactiflora 20 souches 40 Milliards d'UFC

Proactiflora 20 souches 40 Milliards d'UFC - 120 Gélules Véganes

2 mois d'approvisionnement

• Gélules gastro-résistantes
• 20 souches probiotiques et 40 milliards d'UFC par dose
• Avec Inuline et Zinc
• Formule avancée avec probiotiques, prébiotiques et zinc

{ if (variantInput.value) this.setVariant(variantInput.value) } variantInput.addEventListener("change", this._syncFromHiddenInput) this._variantInputObserver = new MutationObserver(() => { if (variantInput.value) this.setVariant(variantInput.value) }) this._variantInputObserver.observe(variantInput, { attributes: true, attributeFilter: ["value"] }) } this._onVariantCustomEvent = (event) => { const detail = event?.detail || {} const detailProductId = detail.product?.id || detail.productId || detail.sectionProductId || null if (detailProductId && String(detailProductId) !== String(this.productId)) return const detailVariantId = detail.variant?.id || detail.currentVariant?.id || detail.selectedVariant?.id || null if (detailVariantId) { this.setVariant(detailVariantId) } } ;["variant:change", "product:variant-change", "variant-change"].forEach((eventName) => { document.addEventListener(eventName, this._onVariantCustomEvent) }) this._onGenericChange = (event) => { const target = event.target if (!(target instanceof Element)) return const variantPicker = target.closest("variant-picker") if (!variantPicker) return const pickerProductId = variantPicker.dataset.productId || variantPicker.closest("[data-product-id]")?.dataset?.productId || null if (pickerProductId && String(pickerProductId) !== String(this.productId)) return const variantId = target.dataset?.variantId || target.selectedOptions?.[0]?.dataset?.variantId || variantPicker.querySelector("[name=\"id\"]")?.value || "" if (variantId) { this.setVariant(variantId) } } document.addEventListener("change", this._onGenericChange) }, destroy() { if (this._variantInput && this._syncFromHiddenInput) { this._variantInput.removeEventListener("change", this._syncFromHiddenInput) } if (this._variantInputObserver) { this._variantInputObserver.disconnect() } if (this._onVariantCustomEvent) { ;["variant:change", "product:variant-change", "variant-change"].forEach((eventName) => { document.removeEventListener(eventName, this._onVariantCustomEvent) }) } if (this._onGenericChange) { document.removeEventListener("change", this._onGenericChange) } }, syncSelectedPlanUI() { this.$nextTick(() => { const select = this.$el.querySelector(".purchase-box__frequency-select") if (!select) return const nextValue = String(this.selectedPlanId || "") if (!nextValue) return const optionExists = Array.from(select.options).some( (option) => String(option.value) === nextValue ) if (!optionExists) return select.value = nextValue }) }, extractPlanIdFromMetafield(rawValue) { if (!rawValue) return "" return String(rawValue).split("-")[0].trim() }, cleanPlanLabel(rawLabel) { if (!rawLabel) return "" return String(rawLabel).split(",")[0].trim() }, resolveRecommendedPlanId(variant, plans) { if (!variant || !Array.isArray(plans) || !plans.length) return "" const metafieldPlanId = this.extractPlanIdFromMetafield(variant.recommendedPlanRaw) if (metafieldPlanId && plans.some((plan) => String(plan.id) === metafieldPlanId)) { return metafieldPlanId } return String(plans[0].id) }, setVariant(variantId) { if (!variantId) return this.currentVariantId = String(variantId) const variant = this.currentVariant if (!variant) return const plans = this.currentSellingPlans || [] if (!plans.length) { this.purchaseType = "one-time" this.selectedPlanId = "" return } const currentVariantKey = String(this.currentVariantId || "") const rememberedPlanId = currentVariantKey ? String(this.userSelectedPlanByVariantId[currentVariantKey] || "") : "" const rememberedPlanStillExists = rememberedPlanId ? plans.some((plan) => String(plan.id) === rememberedPlanId) : false const recommendedPlanId = this.recommendedPlanId const fallbackPlanId = recommendedPlanId || String(plans[0].id) if (rememberedPlanStillExists) { this.selectedPlanId = rememberedPlanId } else { this.selectedPlanId = fallbackPlanId } if (variant.requiresSellingPlan) { this.purchaseType = "subscription" } this.syncSelectedPlanUI() }, handlePlanChange(event) { const nextPlanId = String(event?.target?.value || "") if (!nextPlanId) return this.selectedPlanId = nextPlanId const currentVariantKey = String(this.currentVariantId || "") if (currentVariantKey) { this.userSelectedPlanByVariantId[currentVariantKey] = nextPlanId } this.selectPurchaseType("subscription") this.syncSelectedPlanUI() }, selectPurchaseType(type) { this.purchaseType = type if (type === "subscription" && !this.selectedPlanId) { const currentVariantKey = String(this.currentVariantId || "") const rememberedPlanId = currentVariantKey ? String(this.userSelectedPlanByVariantId[currentVariantKey] || "") : "" const rememberedPlanStillExists = rememberedPlanId ? this.currentSellingPlans.some((plan) => String(plan.id) === rememberedPlanId) : false if (rememberedPlanStillExists) { this.selectedPlanId = rememberedPlanId } else { this.selectedPlanId = this.recommendedPlanId || (this.currentSellingPlans[0]?.id ? String(this.currentSellingPlans[0].id) : "") } } this.syncSelectedPlanUI() }, formatPlanLabel(plan) { if (!plan) return "" const baseLabel = this.cleanPlanLabel(plan.name) return String(plan.id) === String(this.recommendedPlanId) ? `${baseLabel} ${this.recommendedSuffix}` : baseLabel }, get currentVariant() { return this.variantsData.find( (item) => String(item.id) === String(this.currentVariantId) ) || null }, get currentSellingPlans() { return this.currentVariant?.sellingPlans || [] }, get recommendedPlanId() { return this.resolveRecommendedPlanId(this.currentVariant, this.currentSellingPlans) }, get currentSelectedPlan() { return this.currentSellingPlans.find( (plan) => String(plan.id) === String(this.selectedPlanId) ) || null }, get displaySubscriptionPlan() { return ( this.currentSelectedPlan || this.currentSellingPlans.find( (plan) => String(plan.id) === String(this.recommendedPlanId) ) || this.currentSellingPlans[0] || null ) }, get displaySubscriptionPlanLabel() { return this.formatPlanLabel(this.displaySubscriptionPlan) }, get selectedSellingPlanIdForSubmit() { if (!this.isSubscriptionMode) return "" if (this.currentSelectedPlan?.id) { return String(this.currentSelectedPlan.id) } if (this.displaySubscriptionPlan?.id) { return String(this.displaySubscriptionPlan.id) } return "" }, get currentPricing() { if (this.isSubscriptionMode && this.displaySubscriptionPlan) { return this.displaySubscriptionPlan } return this.currentVariant }, get currentPriceHtml() { return this.currentPricing?.priceHtml || "" }, get currentPriceText() { return this.currentPricing?.priceText || "" }, get currentCompareAtPriceText() { return this.currentPricing?.compareAtPriceText || "" }, get currentDiscountPercent() { return Number(this.currentPricing?.discountPercent || 0) }, get currentUnitPriceHtml() { return this.currentPricing?.unitPriceHtml || "" }, get subscriptionCardPriceHtml() { return this.displaySubscriptionPlan?.priceHtml || "" }, get subscriptionCardUnitPriceHtml() { return this.displaySubscriptionPlan?.unitPriceHtml || "" }, get subscriptionCardDiscountPercent() { return Number(this.displaySubscriptionPlan?.discountPercent || 0) }, get oneTimeCardPriceHtml() { return this.currentVariant?.priceHtml || "" }, get oneTimeCardUnitPriceHtml() { return this.currentVariant?.unitPriceHtml || "" }, get isSubscriptionMode() { return this.purchaseType === "subscription" && this.currentSellingPlans.length > 0 }, get isCurrentVariantAvailable() { return !!this.currentVariant?.available }, get currentVariantRequiresSellingPlan() { return !!this.currentVariant?.requiresSellingPlan }, get showSubscriptionOption() { return this.currentSellingPlans.length > 0 }, get showOneTimeOption() { return !this.currentVariantRequiresSellingPlan }, get canSubmit() { if (!this.isCurrentVariantAvailable) return false if (!this.isSubscriptionMode) return true return !!this.selectedSellingPlanIdForSubmit }, get buttonMainLabel() { return `${this.isSubscriptionMode ? this.subscriptionLabel : this.oneTimeLabel}:` }, get stickyProductTitle() { const variantTitle = this.currentVariant?.title || "" if (variantTitle && variantTitle !== "Default Title") { return `${this.productTitle} - ${variantTitle}` } return this.productTitle }, get stickyFrequencyLabel() { return this.cleanPlanLabel(this.displaySubscriptionPlan?.name || "") }, get stickyMetaLine() { if (this.isSubscriptionMode) { const frequency = this.stickyFrequencyLabel return frequency ? `${this.subscriptionLabel} · ${frequency}` : this.subscriptionLabel } return this.oneTimeLabel } }' >

Gagnez 163 Zens

Échangez-les contre des réductions et des avantages exclusifs sur vos prochaines commandes. En savoir plus

Description du produit
  • GÉLULES GASTRO-RÉSISTANTES POUR UNE EFFICACITÉ OPTIMALE : Nos gélules avec enrobage entérique protègent les probiotiques de l’acidité gastrique, assurant la libération des micro-organismes directement dans l’intestin. Ce design améliore l'efficacité des probiotiques, favorisant l’équilibre du microbiote intestinal et contribuant au bien-être digestif.

  • 20 SOUCHES BACTÉRIENNES ET PRÉBIOTIQUES AVEC ZINC : Avec 20 souches bactériennes (Lactobacillus, Bifidobacterium, Enterococcus, entre autres) et 40 milliards d'UFC par dose quotidienne, cette formule avancée offre diversité et puissance. L'Inuline favorise un environnement propice aux probiotiques, tandis que le Zinc contribue au bon fonctionnement du système immunitaire.

  • 120 GÉLULES POUR 1 À 2 MOIS : Chaque flacon contient 120 gélules véganes, suffisantes pour une utilisation de 1 à 2 mois, avec une prise quotidienne de 1 ou 2 gélules. Formulées pour soutenir le bien-être digestif, elles apportent un flux efficace de bactéries bénéfiques pour l'équilibre intestinal.
Spécifications du produit

Caractéristiques :
Végan, Végétarien, Sans additifs, Sans stéarate de magnésium, Sans colorants, Sans arômes artificiels, Sans sucre, Sans édulcorants, Sans OGM, Sans allergène (Règlement UE 1169/2011), Sans soja, Sans gluten, Sans lactose, Formule propre, Gélule à libération retardée, Fabriqué en Espagne (UE), Casher, Halal et GMP

Catégories :

Ingrédients

Contenu par dose (2 gélules): Lactobacillus acidophilus, Lactobacillus plantarum, Lactobacillus rhamnosus, Lactobacillus salivarius, Lactobacillus casei, Lactobacillus paracasei, Lactobacillus gasseri, Lactobacillus reuteri, Lactobacillus fermentum, Lactobacillus helveticus, Lactobacillus bulgaricus, Bifidobacterium longum, Bifidobacterium lactis, Bifidobacterium breve, Bifidobacterium bifidum, Bifidobacterium infantis, Enterococcus faecium, Lactococcus lactis, Bacillus coagulans, Streptococcus thermophilus, 400 mg 40B UFC*, Inuline 400 mg, Zinc 10 mg (100% VNR**). Autres ingrédients: gélule végétale à libération retardée (HPMC), amidon de maïs. *UFC: Unités formant colonies. **VNR: Valeurs Nutritionnelles de Référence.

Posologie

Au cours de la première semaine, prenez 2 gélules par jour et, en dose d'entretien, prenez 1 à 2 gélules par jour.

Pourquoi notre formule

Proactiflora combine 20 souches de probiotiques et 40 milliards d'UFC par dose, offrant une formule puissante et efficace. Les souches bactériennes incluent Lactobacillus, Bifidobacterium, Enterococcus et d'autres, qui favorisent un environnement intestinal équilibré.

De plus, il contient de l'inuline, un prébiotique naturel qui nourrit et complète l'action des bactéries, ainsi que du zinc, qui contribue au bon fonctionnement du système immunitaire.

Nos gélules sont conçues avec un enrobage entérique garantissant que les bactéries probiotiques arrivent vivantes dans l'intestin, car cet enrobage les protège de l'acidité gastrique, optimisant ainsi leur efficacité.

Informations de sécurité

Ne se substitue pas à une alimentation variée et équilibrée et à un mode de vie sain. Ne pas dépasser la dose quotidienne recommandée. Tenir hors de la portée des enfants. Conserver dans un endroit frais et sec. Déconseillé aux moins de 18 ans.

PAR Zenement

Proactiflora

• Gélules gastro-résistantes
• 20 souches probiotiques et 40 milliards d'UFC par dose
• Avec Inuline et Zinc
• Formule avancée avec probiotiques, prébiotiques et zinc

FAQ sur Proactiflora

Comment doit il être conservé?

Étant donné que les souches sont lyophilisées (l'eau en a été extraite), il n'est pas nécessaire de le réfrigérer, il suffit de le garder dans un endroit frais et sec.

Devriez-vous prendre les gélules à jeun ou avec un repas?

Notre probiotique est contenu des gélules gastrorésistantes qui libèrent leur contenu dans l'intestin. Pour cette raison, vous pouvez prendre à la fois à jeûn et lors des repas.

Quelle sont les propriétes de l'Inuline?

L'inuline est une fibre prébiotique qui stimule la croissance et l'activité des bactéries dans l'intestin.

Avis des clients

Produits recommandés