diff --git a/.github/workflows/healf-crawler.yml b/.github/workflows/healf-crawler.yml new file mode 100644 index 0000000..edb60bd --- /dev/null +++ b/.github/workflows/healf-crawler.yml @@ -0,0 +1,35 @@ +name: healf-crawler + +on: + pull_request: + paths: + - "healf-crawler/**" + - ".github/workflows/healf-crawler.yml" + +jobs: + healf-crawler: + name: healf-crawler + runs-on: ubuntu-latest + defaults: + run: + working-directory: healf-crawler + steps: + - uses: actions/checkout@v7.0.0 + + - name: Install uv + uses: astral-sh/setup-uv@v8.2.0 + + - name: Set up Python + run: uv python install 3.11 + + - name: Install dependencies + run: uv sync --extra dev + + - name: Lint (ruff) + run: uv run ruff check . + + - name: Format check (ruff) + run: uv run ruff format --check . + + - name: Type check (pyright) + run: uv run pyright diff --git a/healf-crawler/README.md b/healf-crawler/README.md new file mode 100644 index 0000000..c4bbc39 --- /dev/null +++ b/healf-crawler/README.md @@ -0,0 +1,182 @@ +# Healf Product Crawler + +A Python crawler for a limited set of [Healf](https://healf.com) +products from three brands — **Terranova**, **Life Extension**, and +**NOW Foods**. It discovers every matching product from the collection +listing (~175 products), fetches structured data and rendered page +content, and saves each product as clean Markdown to `data/`. + +## Prerequisites + +- **[uv](https://docs.astral.sh/uv/)** — install with: + + ``` bash + curl -LsSf https://astral.sh/uv/install.sh | sh + ``` + +- **Python ≥ 3.11** — uv manages this automatically. + +## Quick Start + +``` bash +cd healf-crawler +uv sync + +# Crawl ALL target products (~175 products) +uv run healf-crawler + +# Scrape a single product by handle or URL +uv run healf-crawler --url terranova-magnesium-complex-50s +uv run healf-crawler --url https://healf.com/products/terranova-magnesium-complex-50s + +# List discovered product handles without scraping +uv run healf-crawler --list-only + +# Show all options +uv run healf-crawler --help +``` + +## Dependencies + +| Package | Purpose | +|------------------|---------------------------------------| +| `requests` | HTTP fetching with retry/backoff | +| `beautifulsoup4` | HTML parsing and DOM manipulation | +| `lxml` | Fast parser backend for BeautifulSoup | +| `markdownify` | HTML → Markdown conversion | + +Dev dependencies (optional, install with `uv sync --all-extras`): + +| Package | Purpose | +|------------------------|------------------------------------| +| `ruff` | Linting and formatting | +| `pyright` | Static type checking (strict mode) | +| `types-requests` | Type stubs for requests | +| `types-beautifulsoup4` | Type stubs for BeautifulSoup | + +## Output + +Markdown files are saved to `data/.md`: + + data/ + ├── terranova-magnesium-complex-50s.md + ├── life-extension-neuro-mag-magnesium-l-threonate.md + ├── now-foods-magnesium-glycinate.md + └── ... # ~175 Markdown files + +Each file contains the product name, source URL, brand, price, +description, ingredients, and suggested use: + +``` markdown +# Magnesium Complex + +> Source: https://healf.com/products/terranova-magnesium-complex-50s + +**Brand:** Terranova | **Price:** £13.00 + +## Description + +**Key benefits** +... +``` + +### Reports + +After a full crawl, two files are written to `reports/`: + +- **`product_handles.json`** — all discovered product handles with + vendor and product type. +- **`summary.json`** — aggregate statistics for the run: + +``` json +{ + "run_at": "2026-06-20T18:38:08.937007+00:00", + "target_vendors": ["Life Extension", "NOW Foods", "Terranova"], + "products_discovered": 175, + "products_by_vendor": { + "Terranova": 60, + "Life Extension": 75, + "NOW Foods": 40 + }, + "products_scraped": 175, + "error_count": 0, + "total_markdown_chars": 980432, + "empty_pages": [], + "errors": [] +} +``` + +### Logs + +A detailed crawl log is appended to `logs/crawl.log` on every run. + +> **Note:** The `data/`, `logs/`, and `reports/` directories are created +> automatically at runtime by `src/constants.py`. They do not need to +> exist beforehand. Consider adding `logs/` and `reports/` to +> `.gitignore` if you don’t want to track generated output. + +## How It Works + +1. **Discover products** — queries the Shopify Storefront API for the + `all-products-1` collection, paginating through all results and + filtering by vendor (Terranova, Life Extension, NOW Foods). +2. **Fetch structured data** — for each product, the Storefront API + returns structured fields: title, vendor, price, and + `descriptionHtml`. +3. **Extract metafields from RSC** — the product detail page embeds + private metafields (`ingredients`, `suggested_use`) inside + `self.__next_f.push(...)` chunks in the React Server Components + payload. These are not exposed via the Storefront API, so they are + parsed from the rendered page’s HTML. +4. **Convert** — all HTML content fragments (description, ingredients, + suggested use) are converted to clean Markdown. Clutter tags + (buttons, forms, inputs, SVGs, scripts, styles, iframes) are + stripped and blank lines are collapsed. +5. **Save** — Markdown is written to `data/.md` with a + title, source URL, and structured metadata header. +6. **Report** — `reports/summary.json` with aggregate statistics and + `reports/product_handles.json` with the full product handle list. + +### HTTP Strategy + +All requests go through a shared `requests.Session` with: + +- **Retry**: up to 4 retries with exponential backoff (factor 1.2) on + HTTP 429, 500, 502, 503, 504. +- **Connection pooling**: 10 connections, 20 max pool size. +- **User-Agent**: identifies the crawler with a reference to healf.com. +- **Concurrency**: products are fetched in parallel using a thread pool + (4 workers by default). + +## CLI Reference + + usage: healf-crawler [-h] [--url URL] [--list-only] + + Healf product crawler + + options: + -h, --help show this help message and exit + --url URL Scrape a single product by its Healf product page URL or + Shopify handle. If omitted, crawls all target products from + the collection listing. + --list-only Only discover and list target product handles, then exit. + +## Configuration + +Key settings in `src/constants.py`: + +| Constant | Default | Description | +|----|----|----| +| `MAX_WORKERS` | `4` | Parallel threads for product fetching | +| `PAGE_SIZE` | `250` | Products per Storefront API page | +| `TARGET_VENDORS` | `Terranova, Life Extension, NOW Foods` | Vendors to filter from the collection | +| `START_URL` | `.../collections/all-products-1` | Healf collection page URL | + +## Development + +``` bash +uv sync --all-extras +uv run ruff format src/ +uv run ruff check src/ +uv run pyright src/ +``` diff --git a/healf-crawler/data/life-extension-advanced-curcumin-elite-turmeric-extract-ginger-turmerones.md b/healf-crawler/data/life-extension-advanced-curcumin-elite-turmeric-extract-ginger-turmerones.md new file mode 100644 index 0000000..57a619d --- /dev/null +++ b/healf-crawler/data/life-extension-advanced-curcumin-elite-turmeric-extract-ginger-turmerones.md @@ -0,0 +1,39 @@ +# Advanced Curcumin Elite™ Turmeric Extract, Ginger & Turmerones + +> Source: https://healf.com/products/life-extension-advanced-curcumin-elite-turmeric-extract-ginger-turmerones + +**Brand:** Life Extension | **Price:** £20.99 + +## Description + +**Key Benefits** + +- Experience a unique blend of turmeric, ginger, and turmerones. +- Formulated for 45x greater absorption than standard curcumin. + +Start your day with a turmeric formula that’s made to go further. Curcumin, the active compound in turmeric, is naturally hard for the body to absorb. Advanced Curcumin Elite™ combines curcumin with fenugreek fibre, making it 45.5 times more bioavailable than standard curcumin—so you get more from every softgel. This carefully crafted blend also features ginger extract and turmerones from turmeric oil, bringing together traditional botanicals in a modern, easy-to-take format. + +Life Extension’s Advanced Curcumin Elite™ uses FenuMAT™ technology, a water-based process that binds curcumin to fenugreek fibre for superior absorption. Responsibly sourced from India, this formula delivers free curcuminoids efficiently—helping you make the most of your daily routine. + +## Ingredients + +Curcumin Elite™ [Proprietary CGM Blend Providing 40% Curcuminoids (200 mg), 3% Turmerones (15 mg) from Turmeric (Rhizome), 30% Galactomannans (150 mg) from Fenugreek (Seed)], Gingerols [from Ginger CO₂ Extract (Root)], Turmerones [from Turmeric Extract Oil (Rhizome)], Extra Virgin Olive Oil, Capsule Shell (Gelatin), Glycerin, Purified Water, Emulsifier (Sunflower Lecithin), Colour (Carob Colour), Beeswax + +## Suggested Use + +Take one (1) softgel daily, or as recommended by a healthcare practitioner. + +Warnings + KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-advanced-milk-thistle.md b/healf-crawler/data/life-extension-advanced-milk-thistle.md new file mode 100644 index 0000000..2487806 --- /dev/null +++ b/healf-crawler/data/life-extension-advanced-milk-thistle.md @@ -0,0 +1,40 @@ +# Advanced Milk Thistle + +> Source: https://healf.com/products/life-extension-advanced-milk-thistle + +**Brand:** Life Extension | **Price:** £19.99 + +## Description + +**Key Benefits** + +- Enhanced absorption for a full spectrum of milk thistle actives. +- Features silymarin and silybin—signature compounds of milk thistle. +- Phospholipid complex supports effective delivery of key ingredients. +- Perfect for those seeking a high-quality botanical supplement. + +Start your wellness routine with a thoughtfully crafted milk thistle formula. Advanced Milk Thistle from Life Extension brings together silymarin, silybin, and isosilybin A and B—compounds found in milk thistle fruit—combined with phospholipids to help support absorption. This unique blend is designed to deliver a premium supplement experience, making it easy to add the benefits of milk thistle to your daily routine. + +Choose Advanced Milk Thistle for a modern approach to traditional botanicals, ideal for those who value quality and innovation in their supplements. + +## Ingredients + +Milk Thistle Phospholipid Proprietary Blend: Milk Thistle Extract (Fruit) [Providing 480 mg Silymarin, 180 mg Silybin, 48 mg Isosilybin A and Isosilybin B], Phospholipids, Siliphos® Phytosome Milk Thistle Extract (Fruit) [Providing 47.52 mg Silybin], Sunflower Oil, Capsule Shell (Gelatin), Glycerin, Purified Water, Colour (Carob Colour), Beeswax + +## Suggested Use + +Take two (2) softgels daily, in divided doses, or as recommended by a healthcare practitioner. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-ampk-metabolic-activator.md b/healf-crawler/data/life-extension-ampk-metabolic-activator.md new file mode 100644 index 0000000..e9346b3 --- /dev/null +++ b/healf-crawler/data/life-extension-ampk-metabolic-activator.md @@ -0,0 +1,40 @@ +# AMPK Metabolic Activator + +> Source: https://healf.com/products/life-extension-ampk-metabolic-activator + +**Brand:** Life Extension | **Price:** £32.99 + +## Description + +**Key Benefits** + +- With calcium to support normal energy-yielding metabolism. +- Features a carefully selected blend of botanicals and minerals. +- Designed for those who want to maintain their daily vitality. +- Non-GMO and made with quality-assured ingredients. + +Start your day with confidence—AMPK Metabolic Activator brings together G. pentaphyllum (Jiaogulan) extract, hesperidin (a citrus flavonoid), and calcium. Calcium contributes to normal energy-yielding metabolism, helping you stay on top of your routine. This thoughtfully crafted formula is ideal for anyone looking to support their energy levels and overall wellbeing with a blend of botanicals and minerals you can trust. + +## Ingredients + +Hesperidin [from Orange Extract (Fruit)], Actiponin® Gynostemma Extract (Leaf), Calcium (as Calcium Carbonate), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid), Croscarmellose Sodium, Capsule Shell (Hydroxypropyl Cellulose), Aqueous Film Coating (Hypromellose, Glycerin, Purified Water), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Vegetable Stearate) + +## Suggested Use + +Take one (1) tablet daily. + + CAUTION: + + Not recommended for pregnant women and persons undergoing antidiabetic and anticoagulant treatment. Consult your physician in case of kidney disorder. + + WARNINGS: + Keep out of reach of children. Do not exceed recommended daily dose. Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. A food supplement should not be used as a substitute for a varied and balanced diet and a healthy lifestyle. Store tightly closed in a cool, dry place. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-bioactive-complete-b-complex.md b/healf-crawler/data/life-extension-bioactive-complete-b-complex.md new file mode 100644 index 0000000..a76c39e --- /dev/null +++ b/healf-crawler/data/life-extension-bioactive-complete-b-complex.md @@ -0,0 +1,44 @@ +# BioActive Complete B-Complex + +> Source: https://healf.com/products/life-extension-bioactive-complete-b-complex + +**Brand:** Life Extension | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Helps unlock energy from your food with thiamine, riboflavin, niacin, B6, biotin, B12, and pantothenic acid—all contributing to normal energy-yielding metabolism. +- Supports your mind and mood—B6, B12, niacin, thiamine, biotin, and folate contribute to normal psychological function and nervous system health. +- Promotes healthy red blood cell formation and homocysteine metabolism with B6, B12, folate, and riboflavin. +- Features bioactive forms of B vitamins for optimal absorption and utilisation. + + + +Give your body the B vitamin essentials it needs to thrive. BioActive Complete B-Complex brings together all eight B vitamins in their most usable forms, so you can feel confident you’re getting comprehensive support. Thiamine, riboflavin, niacin, B6, biotin, B12, and pantothenic acid all contribute to normal energy-yielding metabolism—helping you turn food into fuel and reduce tiredness and fatigue. B6, B12, niacin, thiamine, biotin, and folate support your nervous system and psychological function, while folate and B12 also play a role in normal blood formation. With active forms for better absorption, this formula is designed to fit seamlessly into your daily routine—so you can feel ready for whatever the day brings. + +## Ingredients + +Pantothenic Acid (as D-Calcium Pantothenate), Thiamine (Vitamin B1) (as Thiamine HCl), Niacin (as Niacinamide And Niacin), Vitamin B6 (as Pyridoxine HCl And Pyridoxal 5’-Phosphate), Inositol, Riboflavin (Vitamin B2) (as Riboflavin And Riboflavin 5’-Phosphate), Calcium (as D-Calcium Pantothenate, Dicalcium Phosphate), PABA (Para-Aminobenzoic Acid), Folate (as L-5-Methyltetrahydrofolate Calcium Salt), Vitamin B12 (as Methylcobalamin), Vegetable Cellulose (Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid), Purified Water, Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take two (2) capsules daily with food, or as recommended by a healthcare practitioner. + +Caution +Temporary flushing, itching, rash, or gastric disturbances may occur. + +Warnings +KEEP OUT OF REACH OF CHILDREN + DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-bone-restore-calcium-supplement-with-vitamin-k2.md b/healf-crawler/data/life-extension-bone-restore-calcium-supplement-with-vitamin-k2.md new file mode 100644 index 0000000..a784f9e --- /dev/null +++ b/healf-crawler/data/life-extension-bone-restore-calcium-supplement-with-vitamin-k2.md @@ -0,0 +1,41 @@ +# Bone Restore Calcium Supplement with Vitamin K2 + +> Source: https://healf.com/products/life-extension-bone-restore-calcium-supplement-with-vitamin-k2 + +**Brand:** Life Extension | **Price:** £17.99 + +## Description + +**Key Benefits** + +- Helps maintain normal bones and teeth with calcium and vitamin D3. +- Supports normal calcium absorption and utilisation with vitamin D3. +- Vitamin K2 contributes to normal blood clotting and bone maintenance. +- Includes magnesium, zinc, and manganese to further support bone health. + +Start every day with confidence—Bone Restore with Vitamin K2 is expertly crafted by Life Extension to help you look after your bones for the long term. This advanced formula blends four forms of calcium, plus vitamin D3 to support the normal absorption and use of calcium and phosphorus. Vitamin K2 works alongside to help maintain normal bones and support normal blood clotting. Magnesium, zinc, and manganese are included to further contribute to the maintenance of normal bones and muscle function. With added silicon and boron, this comprehensive blend is designed for those who want to support their bone health as part of a balanced lifestyle. + +## Ingredients + +Calcium (as Carbonate, Citrate Malate, Bisglycinate, Fructoborate), Magnesium (as Magnesium Oxide), Silicon (from Horsetail Extract (Herb)), Boron (Calcium Fructoborate As Patented FruiteX B® OsteoBoron®), Zinc (as Zinc Amino Acid Chelate), Manganese (as Manganese Amino Acid Chelate), Vitamin K2 (as Trans Menaquinone-7), Vitamin D3 (as Cholecalciferol), Vegetable Cellulose (Capsule), Anti-Caking Agent (Stearic Acid), Antioxidant (Ascorbyl Palmitate), Maltodextrin, Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide), Food Starch-Modified + +## Suggested Use + +Take four (4) capsules daily, or as recommended by a healthcare practitioner. +For best results, take in divided doses with food in the morning and evening. +If you are taking a vitamin K antagonist (e.g. warfarin), consult your healthcare practitioner before taking this product + +Warnings +KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-buffered-vitamin-c-powder.md b/healf-crawler/data/life-extension-buffered-vitamin-c-powder.md new file mode 100644 index 0000000..7211c93 --- /dev/null +++ b/healf-crawler/data/life-extension-buffered-vitamin-c-powder.md @@ -0,0 +1,45 @@ +# Buffered Vitamin C Powder + +> Source: https://healf.com/products/life-extension-buffered-vitamin-c-powder + +**Brand:** Life Extension | **Price:** £22.99 + +## Description + +**Key Benefits** + +- Gentle support for your immune system and cell protection. +- Helps maintain normal collagen for skin, bones, and more. +- Buffered with minerals for a smooth, easy-to-take drink. + +Start your day with a boost that’s kind to your stomach. Vitamin C is essential for your body’s natural defences, supporting the normal function of the immune system and helping to protect cells from oxidative stress. It also contributes to normal collagen formation, keeping your skin, bones, and cartilage in good shape, and increases iron absorption for daily vitality. + +Life Extension’s Buffered Vitamin C Powder delivers 400 mg of vitamin C per serving, blended with calcium, magnesium, zinc, and potassium. This combination creates a reduced-acid formula that’s gentle on your digestive system—ideal for those who find regular vitamin C harsh. Simply mix with water for a mild, effervescent drink that fits easily into your routine. + +## Ingredients + +Vitamin C (as Ascorbic Acid), Potassium (as Potassium Carbonate), Calcium (as Calcium Carbonate), Magnesium (as Magnesium Carbonate), Zinc (as Zinc Gluconate) + +## Suggested Use + +Mix one (1) teaspoon of Buffered Vitamin C Powder into a glass of water. + Wait for the fizz to stop before consuming. + The minerals buffer out the normally acidic vitamin C to make a pleasant tasting drink. + To ensure product consistency store tightly closed in a cool, dry place. + + Caution: + High-dose ascorbic acid may cause diarrhea or gastric upset. If this occurs, lower the dose. Those prone to calcium oxalate kidney stones should consult their doctor before using this product. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-curcumin-elite-turmeric-extract.md b/healf-crawler/data/life-extension-curcumin-elite-turmeric-extract.md new file mode 100644 index 0000000..1b89a73 --- /dev/null +++ b/healf-crawler/data/life-extension-curcumin-elite-turmeric-extract.md @@ -0,0 +1,42 @@ +# Curcumin Elite™ Turmeric Extract + +> Source: https://healf.com/products/life-extension-curcumin-elite-turmeric-extract + +**Brand:** Life Extension | **Price:** £22.99 + +## Description + +**Key Benefits** + +- Experience 45x more bioavailable free curcuminoids. +- Enjoy 270x better absorption of total curcuminoids than standard curcumin. +- Advanced delivery system designed for optimal uptake. +- Features a unique blend of turmeric, curcuminoids, and galactomannans from fenugreek. + +Unlock the full potential of turmeric in your daily routine. While turmeric has long been appreciated for its vibrant colour and traditional uses, its key compound—curcumin—can be challenging for the body to absorb. + +Curcumin Elite™ Turmeric Extract is expertly formulated to address this, delivering 45 times more bioavailable free curcuminoids and 270 times better absorption than standard curcumin. This is achieved through a unique system that binds curcuminoids to galactomannans, a natural fibre from fenugreek seeds. + +This innovative approach helps protect curcuminoids during digestion, allowing your body to make the most of every capsule. Add Curcumin Elite™ to your daily routine for a simple way to support your wellbeing with a highly absorbable turmeric extract. + +## Ingredients + +Curcumin Elite™ Proprietary CGM Blend: Providing 40% Curcuminoids ( and 3% Turmerones ( [from Turmeric (Rhizome)], 30% Galactomannans ( [from Fenugreek (Seed)], Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Anti-Caking Agent (Vegetable Stearate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule daily, or as recommended by a healthcare practitioner. + +Warnings: +KEEP OUT OF REACH OF CHILDREN. +DO NOT EXCEED RECOMMENDED DOSE. +Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-extend-release-magnesium.md b/healf-crawler/data/life-extension-extend-release-magnesium.md new file mode 100644 index 0000000..a89590d --- /dev/null +++ b/healf-crawler/data/life-extension-extend-release-magnesium.md @@ -0,0 +1,41 @@ +# Extend-Release Magnesium + +> Source: https://healf.com/products/life-extension-extend-release-magnesium + +**Brand:** Life Extension | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Helps reduce tiredness and fatigue, so you feel ready for the day. +- Supports normal muscle and nervous system function for everyday activity. +- Contributes to the maintenance of healthy bones and teeth. +- Dual-action formula: immediate and extended release for lasting support. + +Start your day with confidence—magnesium is an essential mineral that helps keep you energised and supports your body’s natural balance. Life Extension Extend-Release Magnesium delivers 250 mg of magnesium per serving, using a unique six-hour formula that combines both immediate and extended release forms. This means your body receives a steady supply of magnesium, helping to reduce tiredness and fatigue, maintain healthy bones and teeth, and support normal muscle and nervous system function. Add this easy, once-daily capsule to your routine for reliable, ongoing support—so you can keep moving, thinking, and feeling your best. + +## Ingredients + +Magnesium (as ZümXR® Magnesium Oxide, Magnesium Citrate), Vegetable Cellulose (Capsule), Rice Fiber, Ethylcellulose, Bulking Agent (Microcrystalline Cellulose), Medium Chain Triglycerides, Anti-Caking Agent (Stearic Acid), Oleic Acid, Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule once or twice daily, or as recommended by a healthcare practitioner. + +Caution: If taken in high doses, magnesium may have a laxative effect. If this occurs, divide dosing, reduce intake, or discontinue product. + +WARNINGS: +KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-florassist-r-gi-with-phage-technology.md b/healf-crawler/data/life-extension-florassist-r-gi-with-phage-technology.md new file mode 100644 index 0000000..a5ba2ff --- /dev/null +++ b/healf-crawler/data/life-extension-florassist-r-gi-with-phage-technology.md @@ -0,0 +1,41 @@ +# FLORASSIST® GI with Phage Technology + +> Source: https://healf.com/products/life-extension-florassist-r-gi-with-phage-technology + +**Brand:** Life Extension | **Price:** £24.99 + +## Description + +**Key Benefits** + +- Dual-action formula with carefully chosen strains and a unique bacteriophage blend. +- Advanced dual-encapsulation helps protect ingredients until they reach your gut. +- Each capsule delivers 15 billion CFUs for a comprehensive daily blend. +- Non-GMO and designed for everyday use. + +FLORASSIST® GI with Phage Technology brings together carefully selected strains and a distinctive TetraPhage blend, offering a thoughtful approach to your daily gut routine.  + +Life Extension’s advanced dual-encapsulation technology helps ensure the ingredients reach your gut, where they’re needed most. Each capsule contains 15 billion CFUs, selected for a complete blend. The addition of bacteriophages makes this a unique choice for those looking to support their gut’s natural balance as part of a healthy lifestyle. + +## Ingredients + +Proprietary Probiotic Blend: B. breve Bbr8; L. plantarum 14D; B. animalis Ssp. lactis BLC1; L. paracasei IMC 502; L. Rhamnosus IMC 501; L. Acidophilus LA1; B. longum ssp. longum SP54 (15 Billion CFU), TetraPhage Blend: LH01 - Myoviridae; LL5 - Siphoviridae; T4D - Myoviridae; LL12 - Myoviridae, Glycerin, Vegetable Cellulose (Capsule), Purified Water, Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Vegetable Stearate), Maltodextrin, Anti-Caking Agent (Silicon Dioxide), Corn Starch, Colour (Chlorophyllin) + +## Suggested Use + +Take one (1) capsule daily, or as recommended by a healthcare practitioner. + +Warnings +KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-macuguard-ocular-support-with-saffron.md b/healf-crawler/data/life-extension-macuguard-ocular-support-with-saffron.md new file mode 100644 index 0000000..18a8f77 --- /dev/null +++ b/healf-crawler/data/life-extension-macuguard-ocular-support-with-saffron.md @@ -0,0 +1,40 @@ +# MacuGuard Ocular Support with Saffron + +> Source: https://healf.com/products/life-extension-macuguard-ocular-support-with-saffron + +**Brand:** Life Extension | **Price:** £17.99 + +## Description + +**Key Benefits** + +- Start your day with olive oil, a source of unsaturated fats. +- Features carotenoids—lutein and zeaxanthin—naturally found in the retina. +- Includes saffron extract and natural astaxanthin for a complete blend. +- Convenient softgels make daily eye nutrition simple. + +Give your eyes a thoughtful blend of nutrients. Lutein, trans-zeaxanthin, and meso-zeaxanthin are carotenoids present in high concentrations in the macula, the part of the retina responsible for central vision. This formula also includes saffron spice extract and natural astaxanthin. Phospholipids are added to help with absorption, so you get the most from every softgel. With extra virgin olive oil—a source of unsaturated fats—this supplement fits easily into your daily routine. Enjoy a convenient way to support your eye nutrition, every day. + +## Ingredients + +MacuGuard® proprietary blend:\nMarigold extract (Tagetes erecta) (flower) [providing 10 mg lutein, 4 mg meso -zeaxanthin & zeaxanthin], phospholipids, mixed carotenoids [providing 1.24 mg α-carotene], Saffron extract (stigma), Extra Virgin Olive Oil, Capsule Shell (Gelatin), Glycerin, Sunflower Oil, Beeswax, Purified Water, Palm Oil, Stabiliser (Acacia Gum), Maltodextrin, Colour (Annatto Colour) + +## Suggested Use + +Take one (1) softgel daily, with food, or as recommended by a healthcare practitioner. + This formula is enhanced with phospholipids to increase lutein absorption. + +WARNINGS: +KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-magnesium-caps.md b/healf-crawler/data/life-extension-magnesium-caps.md new file mode 100644 index 0000000..c70c529 --- /dev/null +++ b/healf-crawler/data/life-extension-magnesium-caps.md @@ -0,0 +1,45 @@ +# Magnesium Caps + +> Source: https://healf.com/products/life-extension-magnesium-caps + +**Brand:** Life Extension | **Price:** £8.99 + +## Description + +**Key Benefits** + +- Helps reduce tiredness and fatigue, so you feel ready for the day. +- Supports normal muscle and bone function for an active lifestyle. +- Contributes to the healthy functioning of your nervous system. +- Three forms of magnesium for effective absorption and convenience. + + + +Start strong with magnesium—an essential mineral that’s part of over 300 processes in your body. Magnesium helps keep your energy levels up, supports your muscles and bones, and contributes to a healthy nervous system. If you find it tricky to get enough magnesium from food alone, these easy-to-take capsules can help you meet your daily needs. + +Life Extension Magnesium Caps combine magnesium oxide, citrate, and succinate for a well-rounded approach to absorption. With 500 mg of magnesium per serving, it’s a simple way to support your wellbeing every day. + +## Ingredients + +Magnesium [as Magnesium oxide, citrate, succinate], Vegetable Cellulose (Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule once or twice daily, or as recommended by a healthcare practitioner. + +Caution: If taken in high doses, magnesium may have a laxative effect. If this occurs, divide dosing, reduce intake, or discontinue product. + +WARNINGS: +KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-n-acetyl-l-cysteine.md b/healf-crawler/data/life-extension-n-acetyl-l-cysteine.md new file mode 100644 index 0000000..dfbe8d8 --- /dev/null +++ b/healf-crawler/data/life-extension-n-acetyl-l-cysteine.md @@ -0,0 +1,41 @@ +# N-Acetyl-L-Cysteine + +> Source: https://healf.com/products/life-extension-n-acetyl-l-cysteine + +**Brand:** Life Extension | **Price:** £11.99 + +## Description + +**Key Benefits** + +- Delivers 600 mg of N-acetyl-L-cysteine in every capsule. +- Highly absorbable form of cysteine for everyday support. +- Easy to include in your daily wellbeing routine. +- Non-GMO and suitable for vegetarians. + +Start your day with Life Extension’s N-Acetyl-L-Cysteine (NAC)—a convenient way to add this amino acid to your diet. NAC is a form of cysteine, which is a building block for proteins in the body. This supplement is designed for those who want a simple, reliable addition to their daily wellness habits. + +Each capsule provides 600 mg of NAC, sourced for quality and optimal absorption. Whether you’re looking to support your nutritional intake or maintain a balanced lifestyle, this formula fits seamlessly into your routine. + +## Ingredients + +N-acetyl-L-cysteine, Vegetable Cellulose (Capsule), Anti-Caking Agent (Vegetable Stearate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule one to three times daily, or as recommended by a healthcare practitioner. + +Warnings + KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate-tropical-punch.md b/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate-tropical-punch.md new file mode 100644 index 0000000..8b59966 --- /dev/null +++ b/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate-tropical-punch.md @@ -0,0 +1,42 @@ +# Neuro-Mag Magnesium L Threonate - Tropical Punch + +> Source: https://healf.com/products/life-extension-neuro-mag-magnesium-l-threonate-tropical-punch + +**Brand:** Life Extension | **Price:** £35.99 + +## Description + +**Key Benefits** + +- Supports normal psychological and nervous system function. +- Helps reduce tiredness and fatigue, so you feel ready for the day. +- Contributes to normal energy-yielding metabolism and muscle function. +- Bioavailable magnesium in a delicious, easy-to-mix powder. + +Start your day with a boost: Neuro-Mag Magnesium L-Threonate delivers a highly absorbable form of magnesium, designed to cross the blood-brain barrier. Magnesium contributes to normal psychological function and the healthy functioning of your nervous system, while also helping to reduce tiredness and fatigue. It’s a smart choice for those looking to support their mind and body, all in one go. + +Each serving provides 2000mg of magnesium L-threonate in a vibrant tropical punch flavour. Simply mix with water or juice for a refreshing way to top up your magnesium—perfect for busy lifestyles and anyone seeking a convenient daily routine. + +## Ingredients + +Magnesium (from 2000 mg Magtein® Magnesium L-threonate), Acidity Regulator (Citric Acid), Stabiliser (Gum Acacia), Maltodextrin, Natural Flavours, Sweetener (Stevia Extract), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Mix one (1) scoop daily with water or juice to taste, or as recommended by a healthcare practitioner. + Magnesium L-Threonate has less of a laxative effect than other forms of magnesium. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate.md b/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate.md new file mode 100644 index 0000000..39c9f5f --- /dev/null +++ b/healf-crawler/data/life-extension-neuro-mag-magnesium-l-threonate.md @@ -0,0 +1,39 @@ +# Neuro-Mag Magnesium L-Threonate + +> Source: https://healf.com/products/life-extension-neuro-mag-magnesium-l-threonate + +**Brand:** Life Extension | **Price:** £33.99 + +## Description + +**Key Benefits** + +- Magnesium supports normal psychological and nervous system function. +- Helps reduce tiredness and fatigue, so you feel ready for the day. +- Contributes to normal muscle and bone function for daily wellbeing. +- Highly bioavailable magnesium L-threonate for effective absorption. + +Start each day with support for your mind and body. Neuro-Mag Magnesium L-Threonate uses a form of magnesium that’s designed for effective absorption. Magnesium contributes to normal psychological function and the normal functioning of the nervous system, helping you stay focused and balanced. It also helps reduce tiredness and fatigue, and supports normal muscle and bone function—ideal for your daily routine. With 2000mg of magnesium L-threonate per serving, Life Extension’s Neuro-Mag is a simple way to help meet your magnesium needs and support your overall wellbeing. + +## Ingredients + +Magnesium (from 2000 mg Magtein® magnesium L-threonate), Vegetable Cellulose (Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Vegetable Stearate) + +## Suggested Use + +Take three (3) capsules daily, or as recommended by a healthcare practitioner. Magnesium L-Threonate has less of a laxative effect than other forms of magnesium. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-one-per-day-multivitamin.md b/healf-crawler/data/life-extension-one-per-day-multivitamin.md new file mode 100644 index 0000000..cfd8c36 --- /dev/null +++ b/healf-crawler/data/life-extension-one-per-day-multivitamin.md @@ -0,0 +1,30 @@ +# One-Per-Day Multivitamin + +> Source: https://healf.com/products/life-extension-one-per-day-multivitamin + +**Brand:** Life Extension | **Price:** £22.99 + +## Description + +**Key Benefits** + +- All-in-one formula for daily wellbeing and nutritional balance. +- With B vitamins and magnesium to help reduce tiredness and fatigue. +- Vitamin D3 and magnesium support normal bones and muscle function. +- Vitamin C, zinc, and selenium contribute to the normal function of the immune system. +- Vitamin A, biotin, and zinc help maintain normal skin and vision. +- Highly absorbable forms of essential vitamins and minerals. + +Start your day with confidence—One-Per-Day Multivitamin from Life Extension brings together over 25 essential nutrients in one easy-to-take tablet. This thoughtfully balanced blend is designed to fit seamlessly into your routine, supporting your body’s needs from top to toe. + +With B vitamins, vitamin C, and magnesium to help reduce tiredness and fatigue, you’ll feel ready to take on whatever the day brings. Vitamin D3 and magnesium work together to help maintain normal bones and muscle function, while vitamin C, zinc, and selenium contribute to the normal function of the immune system. Vitamin A, biotin, and zinc help keep your skin and vision in good condition. + +Each tablet features highly absorbable forms of key nutrients, including 5-MTHF folate, L-OptiZinc®, and all four forms of vitamin E. Plant extracts such as marigold and alpha-lipoic acid round out the formula. Free from soy, gluten, and GMOs, One-Per-Day Multivitamin is a simple way to support your daily wellbeing. + +## Ingredients + +Vitamin C (as Ascorbic Acid, Calcium and Niacinamide Ascorbates), Thiamine (Vitamin B1) (as Thiamine HCl), Magnesium (as Magnesium Oxide), Riboflavin (Vitamin B2) (as Riboflavin, Riboflavin 5'-Phosphate), Vitamin E (as D-Alpha Tocopheryl Succinate, D-Alpha Tocopherol), Niacin (as Niacinamide, Niacinamide Ascorbate), Vitamin B6 (as Pyridoxine HCl, Pyridoxal 5'-Phosphate), Pantothenic Acid (as D-Calcium Pantothenate), Inositol, Zinc (as Zinc Citrate, L-OptiZinc Zinc Mono-L-Methionine Sulfate), Alpha Lipoic Acid, Natural Mixed Tocopherols (Providing Gamma, Delta, Alpha, Beta), Bio-Quercetin Proprietary Blend (Providing 35% Quercetin (5 mg) from Japanese Sophora Concentrate (Flower Bud), 30% Galactomannans (4 mg) from Fenugreek (Seed)), Marigold Extract (Tagetes Erecta) (Flower), Apigenin, Boron (as Boron Amino Acid Chelate), Manganese (as Manganese Citrate, Gluconate), Vitamin A (as Beta-Carotene, Acetate), Lycopene (from LycoBeads Natural Tomato Extract (Fruit)), Folate (as L-5-Methyltetrahydrofolate Calcium Salt), Vitamin B12 (as Methylcobalamin), Selenium (as Sodium Selenite, SelenoExcell High Selenium Yeast, Se-Methyl L-Selenocysteine), Iodine (as Potassium Iodide), Molybdenum (as Molybdenum Amino Acid Chelate), Vitamin D3 (as Cholecalciferol), Chromium (as Crominex 3+ Chromium Stabilized With Capros Amla Extract (Fruit), PrimaVie Shilajit), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Dicalcium Phosphate), Food Starch-Modified, Croscarmellose Sodium, Anti-Caking Agent (Stearic Acid), Maltodextrin, Anti-Caking Agent (Vegetable Stearate), Coating (Purified Water, Hypromellose, Glycerin), Anti-Caking Agent (Silicon Dioxide), Emulsifier (Sunflower Lecithin), Sunflower Oil + +## Suggested Use + +$3b diff --git a/healf-crawler/data/life-extension-optimized-ashwagandha.md b/healf-crawler/data/life-extension-optimized-ashwagandha.md new file mode 100644 index 0000000..c927e56 --- /dev/null +++ b/healf-crawler/data/life-extension-optimized-ashwagandha.md @@ -0,0 +1,40 @@ +# Optimized Ashwagandha + +> Source: https://healf.com/products/life-extension-optimized-ashwagandha + +**Brand:** Life Extension | **Price:** £10.99 + +## Description + +**Key Benefits** + +- Features Sensoril®—a clinically studied ashwagandha extract. +- Standardised for active compounds from both root and leaf. +- Vegetarian capsules, non-GMO, and easy to fit into your daily routine. + +Find your sense of balance with ashwagandha, a traditional botanical used for centuries. Life Extension’s Optimized Ashwagandha uses Sensoril®, a premium extract crafted from both root and leaf, standardised for consistency in every capsule. Each serving delivers 125 mg of ashwagandha extract, making it simple to add this time-honoured plant to your day. + +Choose Optimized Ashwagandha for a thoughtful, quality-focused approach to your daily wellbeing. + +## Ingredients + +Sensoril® Ashwagandha Extract (Root and Leaf) [std. to 32% Oligosaccharides, 10% Withanolide Glycoside Conjugates], Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Rice Fiber, Maltodextrin, Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Vegetable Stearate) + +## Suggested Use + +Take one (1) capsule twice daily on an empty stomach, or as recommended by a healthcare practitioner. + +Warnings +KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-optimized-resveratrol-elite.md b/healf-crawler/data/life-extension-optimized-resveratrol-elite.md new file mode 100644 index 0000000..09edb84 --- /dev/null +++ b/healf-crawler/data/life-extension-optimized-resveratrol-elite.md @@ -0,0 +1,40 @@ +# Optimized Resveratrol Elite™ + +> Source: https://healf.com/products/life-extension-optimized-resveratrol-elite + +**Brand:** Life Extension | **Price:** £28.99 + +## Description + +**Key Benefits** + +- Enhanced absorption for greater daily support. +- Features trans-resveratrol and quercetin from botanical sources. +- Formulated with fenugreek-derived galactomannan fibres. + + + +Step up your routine with Optimized Resveratrol Elite™. This advanced formula brings together trans-resveratrol from Japanese knotweed and quercetin from Japanese sophora, both delivered with a unique fenugreek fibre matrix for up to 10x better absorption than standard resveratrol. Designed for those who want to get the most from their supplement, it’s a thoughtful choice for your everyday balance and vitality. + +## Ingredients + +Resveratrol Elite™ Proprietary Blend Providing 18% Trans-Resveratrol (40 mg) [from Japanese Knotweed (root)], 35% Galactomannans (77 mg) [from Fenugreek (Seed)], Bio-Quercetin® Proprietary Blend Providing 35% Quercetin (3 mg) [from Japanese Sophora Concentrate (Flower Bud), 30% Galactomannans (2.7 mg) [from Fenugreek (Seed)], Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Emulsifier (Sunflower Lecithin), Sunflower Oil, Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Vegetable Stearate), Anti-Caking Agent (Calcium Silicate) + +## Suggested Use + +Take one (1) capsule daily, or as recommended by a healthcare practitioner. + +Warnings +KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-pantothenic-acid.md b/healf-crawler/data/life-extension-pantothenic-acid.md new file mode 100644 index 0000000..dcb3199 --- /dev/null +++ b/healf-crawler/data/life-extension-pantothenic-acid.md @@ -0,0 +1,40 @@ +# Pantothenic Acid + +> Source: https://healf.com/products/life-extension-pantothenic-acid + +**Brand:** Life Extension | **Price:** £14.99 + +## Description + +**Key Benefits** + +- Helps unlock energy from your food and supports mental focus. +- With vitamin B5 to contribute to normal energy-yielding metabolism and mental performance. +- Supports the normal synthesis of steroid hormones, vitamin D, and neurotransmitters. +- Includes calcium to help maintain normal muscle function, bones, and teeth. + +Start your day with a little extra support—Pantothenic Acid, also known as vitamin B5, is essential for helping your body turn food into energy and for keeping your mind sharp. It contributes to the reduction of tiredness and fatigue, so you can feel ready for whatever comes your way. Vitamin B5 also plays a role in the normal synthesis and metabolism of steroid hormones, vitamin D, and some neurotransmitters, helping to keep your body in balance. + +Life Extension Pantothenic Acid features a stable, calcium-based form of vitamin B5 for reliable absorption. The added calcium also supports normal muscle function, neurotransmission, and helps maintain healthy bones and teeth. Choose a formula designed for daily wellbeing, crafted with care and quality ingredients. + +## Ingredients + +Pantothenic Acid (as D-Calcium Pantothenate), Calcium (as D-Calcium Pantothenate), Vegetable Cellulose (Capsule), Bulking Agent (Microcrystalline Cellulose), Rice Extract Blend + +## Suggested Use + +Take one (1) capsule daily with meals, or as recommended by a healthcare practitioner. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-skin-restoring-ceramides.md b/healf-crawler/data/life-extension-skin-restoring-ceramides.md new file mode 100644 index 0000000..3ac1941 --- /dev/null +++ b/healf-crawler/data/life-extension-skin-restoring-ceramides.md @@ -0,0 +1,39 @@ +# Skin Restoring Ceramides + +> Source: https://healf.com/products/life-extension-skin-restoring-ceramides + +**Brand:** Life Extension | **Price:** £18.99 + +## Description + +**Key Benefits** + +- Helps maintain your skin’s natural moisture barrier with wheat ceramides. +- Plant-based lipids designed to complement your daily skincare routine. +- Easy, once-daily capsule for everyday use. +- Non-GMO and gluten-free formula. + +Start your day with a little extra care for your skin. Ceramides are natural lipids found in the skin’s outer layer, helping to lock in moisture and support your skin’s protective barrier. As we age, our natural ceramide levels can decline, which may affect skin hydration. Life Extension’s Skin Restoring Ceramides delivers wheat-derived ceramides in a convenient capsule—an easy way to support your skin from within, every day. + +## Ingredients + +Ceratiq® **Wheat (Gluten)** (Triticum Vulgare) Oil Extract (providing Glycolipids, Phytoceramides and Glycosylceramides), Rice Bran Oil, Vegetable Cellulose (Capsule), Anti-Caking Agent (Silicon Dioxide), Antioxidant (Rosemary Extract) + +## Suggested Use + +Take one (1) capsule daily with food or as recommended by a healthcare practitioner. + +Warnings +KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-super-k.md b/healf-crawler/data/life-extension-super-k.md new file mode 100644 index 0000000..df5d35a --- /dev/null +++ b/healf-crawler/data/life-extension-super-k.md @@ -0,0 +1,41 @@ +# Super K + +> Source: https://healf.com/products/life-extension-super-k + +**Brand:** Life Extension | **Price:** £20.99 + +## Description + +**Key Benefits** + +- Supports normal blood clotting with vitamin K1 and K2. +- Helps maintain normal bones for daily strength and mobility. +- Three forms of vitamin K for broad-spectrum support. +- Includes vitamin C to help protect cells from oxidative stress. + +Start your day with confidence—Super K is expertly formulated to help you meet your daily needs for vitamin K and vitamin C. Vitamin K1 and two forms of K2 (MK-4 and MK-7) work together to support normal blood clotting and help maintain normal bones, so you can keep moving and feeling your best. The addition of vitamin C offers extra support by contributing to the protection of cells from oxidative stress. With 2600 mcg of vitamin K in every softgel, Super K makes it simple to get these important nutrients, especially if your diet is low in leafy greens or dairy. Choose Super K for a straightforward way to support your everyday wellbeing. + +## Ingredients + +Vitamin C (as Ascorbyl palmitate), Vitamin K activity\nfrom:\nVitamin K1 (as phytonadione) 1500µg\nVitamin K2 (as menaquinone-4) 1000µg\nVitamin K2 (as trans menaquinone-7) 100µg, Extra Virgin Olive Oil, Capsule Shell (Gelatin), Glycerin, Beeswax, Purified Water, Colour (Carob Colour), Bulking Agent (Microcrystalline Cellulose), Maltodextrin + +## Suggested Use + +Take one (1) softgel daily with food, or as recommended by a healthcare practitioner. + + Caution: If you are taking a vitamin K antagonist (e.g. warfarin), consult your healthcare practitioner before taking this product. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-super-omega-3-plus-epa-dha-fish-oil-sesame-lignans-olive-extract-krill-astaxanthin.md b/healf-crawler/data/life-extension-super-omega-3-plus-epa-dha-fish-oil-sesame-lignans-olive-extract-krill-astaxanthin.md new file mode 100644 index 0000000..f985494 --- /dev/null +++ b/healf-crawler/data/life-extension-super-omega-3-plus-epa-dha-fish-oil-sesame-lignans-olive-extract-krill-astaxanthin.md @@ -0,0 +1,45 @@ +# Super Omega-3 Plus EPA/DHA Fish Oil, Sesame Lignans, Olive Extract, Krill & Astaxanthin + +> Source: https://healf.com/products/life-extension-super-omega-3-plus-epa-dha-fish-oil-sesame-lignans-olive-extract-krill-astaxanthin + +**Brand:** Life Extension | **Price:** £36.99 + +## Description + +**Key Benefits** + +- With DHA to help maintain normal brain function and vision. +- Provides a source of omega-3 fatty acids from fish and krill oil. +- Features polyphenols from olive extract and sesame lignans. +- Enjoy a fresh, natural lemon flavour—no fishy aftertaste. + + + +Start each day with support for your mind and eyes. Super Omega-3 Plus blends EPA and DHA from wild fish and Antarctic krill oil—DHA contributes to the maintenance of normal brain function and vision. Inspired by the Mediterranean diet, this formula also includes olive extract and sesame lignans, bringing together plant polyphenols and marine nutrients in one convenient softgel. The natural lemon flavour ensures a pleasant experience, so you can enjoy the benefits without the fishy taste. + +Life Extension’s advanced blend is designed for those who want to support their wellbeing with a daily source of omega-3s and polyphenols. Make it part of your routine for a simple, effective way to look after yourself. + +## Ingredients + +Pure+™ Wild **Fish Oil** and Antarctic **Krill (Crustaceans)** (Euphausia superba) Oil Concentrates, Polyphen-Oil™ Olive Extract (Fruit and Leaf), **Sesame Seed** Lignan Extract, Natural Astaxanthin (from CO2 Extract of Haematococcus pluvialis Algae), Capsule Shell (Gelatin), Glycerin, Beeswax, Purified Water, Anti-Caking Agent (Silicon Dioxide), Natural Flavour, Extra Virgin Olive Oil, Caramel Colour, Maltodextrin, Antioxidant (Mixed Tocopherols), Antioxidant (Rosemary Extract)\n\n + +## Suggested Use + +Take two (2) softgels twice daily with meals, or as recommended by a healthcare practitioner. + +Caution: +If you are taking anticoagulant or antiplatelet medications, or have a bleeding disorder, consult your healthcare provider before taking this product. + +Warnings: +KEEP OUT OF REACH OF CHILDREN. +DO NOT EXCEED RECOMMENDED DOSE. +Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-super-omega.md b/healf-crawler/data/life-extension-super-omega.md new file mode 100644 index 0000000..3c1f760 --- /dev/null +++ b/healf-crawler/data/life-extension-super-omega.md @@ -0,0 +1,42 @@ +# Super Omega + +> Source: https://healf.com/products/life-extension-super-omega + +**Brand:** Life Extension | **Price:** £17.99 – £33.99 + +## Description + +**Key Benefits** + +- Start your day with a pure source of omega-3 fatty acids. +- With EPA and DHA to help maintain normal blood pressure and triglyceride levels. +- Enriched with olive polyphenols and sesame lignans for a thoughtful daily formula. +- Each serving delivers 2000mg of wild fish oil concentrate. + +Feel confident in your daily routine with Super Omega from Life Extension. This carefully crafted supplement delivers 2000mg of wild fish oil concentrate, providing EPA and DHA—omega-3 fatty acids that contribute to the maintenance of normal blood pressure and normal blood triglyceride levels. The addition of Polyphen-Oil™ olive extract and sesame seed lignan extract brings together a unique blend inspired by the Mediterranean diet. Each serving offers the polyphenol content of over four tablespoons of extra virgin olive oil, while sesame lignans help protect unsaturated fatty acids from oxidation. Super Omega is a simple way to support your everyday wellbeing, especially if you’re looking to add more omega-3s to your diet. + +## Ingredients + +Pure+™ Wild **Fish** Oil Concentrate) 700mg (docosahexaenoic Acid) 500 mg, Polyphen-Oil™ Olive Extract (Fruit and Leaf) [Providing 19.5 mg Polyphenols, 5.2 mg Hydroxytyrosol/tyrosol, 4.4 mg Verbascoside/Oleuropein], **Sesame Seed (Sesame seed)** Lignan Extract, Highly Refined **Fish** Oil Concentrate (from one or more **Anchovy (Fish)**, Jack **Mackerel (Fish)**, **Mackerel (Fish)**, **Sardine (Fish)**), Capsule Shell (Gelatin), Glycerin, Purified Water, Beeswax, Anti-Caking Agent (Silicon Dioxide), Caramel Colour, Natural Flavour, Emulsifier (Sunflower Lecithin), Antioxidant (Mixed Tocopherols), Maltodextrin, Antioxidant (Rosemary Extract) + +## Suggested Use + +Take two (2) softgels twice daily with meals, or as recommended by a healthcare practitioner. + + Caution: + If you are taking anticoagulant or antiplatelet medications, or have a bleeding disorder, consult your healthcare provider before taking this product. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-super-selenium-complex.md b/healf-crawler/data/life-extension-super-selenium-complex.md new file mode 100644 index 0000000..28a8e8b --- /dev/null +++ b/healf-crawler/data/life-extension-super-selenium-complex.md @@ -0,0 +1,38 @@ +# Super Selenium Complex + +> Source: https://healf.com/products/life-extension-super-selenium-complex + +**Brand:** Life Extension | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Helps protect your cells from everyday oxidative stress. +- Supports normal thyroid and immune system function. +- Contributes to healthy hair and nails. +- Supports normal spermatogenesis. + +Start your day with broad-spectrum support from Super Selenium Complex & Vitamin E. Selenium is an essential trace mineral that helps protect your cells from oxidative stress, while also supporting the normal function of your thyroid and immune system. It’s also known for helping to maintain healthy hair and nails, and for its role in normal spermatogenesis. Life Extension® combines three well-absorbed forms of selenium—sodium selenite, L-selenomethionine, and selenium-methyl L-selenocysteine—for comprehensive coverage. Vitamin E is included for its role in protecting cells from oxidative stress, working in harmony with selenium to help you feel your best every day. + +## Ingredients + +Vitamin E (as 20.1 mg D-alpha Tocopheryl Succinate), Selenium (as Se-Methyl L-Selenocysteine, L-Selenomethionine (Yeast Free), Sodium Selenite) Provides: Selenium (Se-Methyl L-Selenocysteine) 100 µg Selenium (L-selenomethionine) 50 µg Selenium (Sodium Selenite) 50 µg, Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Anti-Caking Agent (Dicalcium Phosphate), Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule daily with food, or as recommended by your healthcare practitioner. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-super-ubiquinol-coq10-with-enhanced-mitochondrial-support.md b/healf-crawler/data/life-extension-super-ubiquinol-coq10-with-enhanced-mitochondrial-support.md new file mode 100644 index 0000000..8fd882b --- /dev/null +++ b/healf-crawler/data/life-extension-super-ubiquinol-coq10-with-enhanced-mitochondrial-support.md @@ -0,0 +1,38 @@ +# Super Ubiquinol CoQ10 with Enhanced Mitochondrial Support™ + +> Source: https://healf.com/products/life-extension-super-ubiquinol-coq10-with-enhanced-mitochondrial-support + +**Brand:** Life Extension | **Price:** £44.99 + +## Description + +**Key Benefits** + +- Highly absorbable ubiquinol for effective cellular energy support. +- Enhanced with shilajit for advanced mitochondrial function. +- Designed to fit seamlessly into your daily wellbeing routine. + +Start each day with support for your body’s natural energy production. Coenzyme Q10 (CoQ10) is involved in the process that helps your cells generate energy, and plays a role in mitochondrial function. As we age, our natural CoQ10 levels may decrease. Super Ubiquinol CoQ10 from Life Extension delivers ubiquinol—a form of CoQ10 that’s easier for the body to absorb—combined with shilajit, a botanical complex chosen to complement your daily routine. This thoughtful blend is designed to help you maintain your everyday vitality and keep up with life’s demands. + +## Ingredients + +Ubiquinol (as Kaneka Ubiquinol™), Shilajit Fulvic Acid Complex, Sunflower Oil, Capsule Shell (Gelatin), Glycerin, Purified Water, Beeswax, Emulsifier (Sunflower Lecithin), Colour (Annatto Colour) + +## Suggested Use + +Take one (1) softgel daily with food, or as recommended by a healthcare practitioner. + +Warnings + KEEP OUT OF REACH OF CHILDREN +DO NOT EXCEED RECOMMENDED DOSE +Do not purchase if outer seal is broken or damaged. +When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-vitamin-d3-with-sea-iodine.md b/healf-crawler/data/life-extension-vitamin-d3-with-sea-iodine.md new file mode 100644 index 0000000..a12565c --- /dev/null +++ b/healf-crawler/data/life-extension-vitamin-d3-with-sea-iodine.md @@ -0,0 +1,41 @@ +# Vitamin D3 with Sea-Iodine + +> Source: https://healf.com/products/life-extension-vitamin-d3-with-sea-iodine + +**Brand:** Life Extension | **Price:** £10.99 + +## Description + +**Key Benefits** + +- Supports strong bones and muscle function with vitamin D3. +- Helps your immune system work at its best, every day. +- With iodine to maintain normal thyroid and cognitive function. + +Feel confident in your daily routine with Life Extension’s Vitamin D3 with Sea-Iodine. This thoughtfully balanced formula brings together vitamin D3—essential for the maintenance of normal bones, muscle function, and immune system performance—and iodine from a unique Sea-Iodine™ complex. Vitamin D3 helps your body absorb calcium and phosphorus, supporting bone strength and everyday wellbeing. Iodine contributes to the normal production of thyroid hormones, which play a key role in metabolism and energy, and also supports normal cognitive function. Each capsule delivers 125 mcg (5,000 IU) of vitamin D3 and 1,000 mcg of iodine, making it easy to meet your daily needs. Choose a simple way to help maintain your overall wellbeing, every day. + +## Ingredients + +Iodine [from Sea-Iodine™ Complex Blend (Organic Kelp and Bladderwrack Extracts, Potassium Iodide)], Vitamin D (as Cholecalciferol), Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Maltodextrin, Modified Food Starch, Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Stearic Acid) + +## Suggested Use + +Take one (1) capsule daily with food, or as recommended by a healthcare practitioner. + + Caution: + Individuals consuming more than 50 mcg (2000 IU)/day of vitamin D (from diet and supplements) should periodically obtain a serum 25-hydroxy vitamin D measurement. Do not exceed 10000 IU per day unless recommended by your doctor. Vitamin D supplementation is not recommended for individuals with high blood calcium levels. If you have a thyroid condition or are taking antithyroid medications, do not use without consulting your healthcare practitioner. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/life-extension-vitamin-d3.md b/healf-crawler/data/life-extension-vitamin-d3.md new file mode 100644 index 0000000..75d3f13 --- /dev/null +++ b/healf-crawler/data/life-extension-vitamin-d3.md @@ -0,0 +1,20 @@ +# Vitamin D3 + +> Source: https://healf.com/products/life-extension-vitamin-d3 + +**Brand:** Life Extension | **Price:** £9.99 + +## Description + +**Key Benefits** + +- 5,000 IU of vitamin D3 in each easy-to-swallow softgel. +- Helps maintain normal bones, teeth, and muscle function. +- Supports the normal function of your immune system. +- Contributes to normal blood calcium levels and cell division. + +Start every day with confidence—Vitamin D3 is a vital nutrient your body naturally produces with sunlight, but many of us don’t get enough. This essential vitamin helps your body absorb calcium and phosphorus, supporting strong bones and teeth. It also plays a key role in keeping your muscles working normally and your immune system functioning as it should. Life Extension’s Vitamin D3 softgels deliver a generous 5,000 IU per serving, making it simple to top up your daily intake—especially during the darker months or if you spend more time indoors. Choose a daily routine that helps you stay on track with your wellbeing goals. + +## Ingredients + +Vitamin D3 (as Cholecalciferol), Extra Virgin Olive Oil, Capsule Shell (Gelatin), Medium Chain Triglycerides, Glycerin, Purified Water, Antioxidant (Rosemary Extract) diff --git a/healf-crawler/data/life-extension-vitamins-d-and-k-with-sea-iodine.md b/healf-crawler/data/life-extension-vitamins-d-and-k-with-sea-iodine.md new file mode 100644 index 0000000..9e09d8d --- /dev/null +++ b/healf-crawler/data/life-extension-vitamins-d-and-k-with-sea-iodine.md @@ -0,0 +1,45 @@ +# Vitamins D and K with Sea-Iodine™ + +> Source: https://healf.com/products/life-extension-vitamins-d-and-k-with-sea-iodine + +**Brand:** Life Extension | **Price:** £17.99 + +## Description + +**Key Benefits** + +- Supports strong bones and normal muscle function. +- Helps maintain your immune system’s daily defences. +- Contributes to normal thyroid hormone production and mental focus. +- Promotes normal blood clotting for everyday wellbeing. + + + +Start your day with a blend designed for modern living. Vitamin D3 helps you absorb calcium and supports the maintenance of normal bones and muscles, so you can keep moving with confidence. Vitamin K works alongside vitamin D to maintain normal bones and contributes to normal blood clotting. Sea-Iodine™ delivers iodine from natural kelp and bladderwrack extracts, supporting normal cognitive function, energy-yielding metabolism, and the normal production of thyroid hormones. + +Life Extension® combines 125 mcg (5,000 IU) of vitamin D3, 2,100 mcg of vitamin K, and 1,000 mcg of iodine in a convenient, once-daily capsule—helping you meet your daily needs for these vital nutrients. + +## Ingredients + +Vitamin K Activity from: Vitamin K1 (as Phytonadione) 1000 µg Vitamin K2 (as Menaquinone-4) 1000 µg Vitamin K2 (as Trans Menaquinone-7) 100 µg, Iodine [from Sea-Iodine™ Complex Blend (Organic Kelp and Bladderwrack Extracts, Potassium Iodide)], Vitamin D3 (as Cholecalciferol), Bulking Agent (Microcrystalline Cellulose), Vegetable Cellulose (Capsule), Maltodextrin, Food Starch-Modified, Anti-Caking Agent (Dicalcium Phosphate), Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one (1) capsule once daily with food, or as recommended by a healthcare practitioner. + +Caution: +Individuals consuming more than 50 mcg (2,000 IU)/day of vitamin D (from diet and supplements) should periodically obtain a serum 25-hydroxy vitamin D measurement. Do not exceed 250 mcg per day unless recommended by your doctor. Vitamin D supplementation is not recommended for individuals with high blood calcium levels. If you have a thyroid condition or are taking antithyroid medications, do not use without consulting your healthcare practitioner. If you are taking a vitamin K antagonist (e.g. warfarin), consult your healthcare practitioner before taking this product. + +Warnings: +KEEP OUT OF REACH OF CHILDREN. +DO NOT EXCEED RECOMMENDED DOSE. +Do not purchase if outer seal is broken or damaged. When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/magtein.md b/healf-crawler/data/magtein.md new file mode 100644 index 0000000..432de3c --- /dev/null +++ b/healf-crawler/data/magtein.md @@ -0,0 +1,25 @@ +# Magtein + +> Source: https://healf.com/products/magtein + +**Brand:** NOW Foods | **Price:** £28.79 + +## Description + +**Key Benefits** + +- Magnesium supports normal psychological and nervous system function—ideal for busy minds. +- Helps reduce tiredness and fatigue, so you can keep up with life's demands. +- Contributes to normal muscle function, and helps maintain healthy bones and teeth. +- Plays a role in normal protein synthesis and cell division, supporting your body's daily needs. + +Magtein by NOW Foods features magnesium L-threonate, a form of magnesium designed for effective absorption. Magnesium is an essential mineral that contributes to normal psychological function and the healthy functioning of your nervous system. It also supports energy release, helps reduce tiredness and fatigue, and plays a part in maintaining normal muscle function, bones, and teeth. With Magtein, you can support your wellbeing and keep your body and mind in balance. + +## Ingredients + +Magtein® (Magnesium L-Threonate), Magnesium (Elemental) (From 2,000 mg Magtein® Magnesium L-Threonate), Hypromellose (Cellulose Capsule), Rice Flour, Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 3 capsules daily. +Best when taken in divided doses (take 1 capsule in the morning and take 2 capsules two hours before sleep). diff --git a/healf-crawler/data/neuro-mag-magnesium-l-threonate.md b/healf-crawler/data/neuro-mag-magnesium-l-threonate.md new file mode 100644 index 0000000..e5edf55 --- /dev/null +++ b/healf-crawler/data/neuro-mag-magnesium-l-threonate.md @@ -0,0 +1,39 @@ +# Neuro-Mag Magnesium L-Threonate + +> Source: https://healf.com/products/neuro-mag-magnesium-l-threonate + +**Brand:** Life Extension | **Price:** £26.05 + +## Description + +**Key Benefits** + +- Magnesium supports normal psychological and nervous system function. +- Helps reduce tiredness and fatigue, so you feel ready for the day. +- Contributes to normal muscle and bone function for daily wellbeing. +- Highly bioavailable magnesium L-threonate for effective absorption. + +Start each day with support for your mind and body. Neuro-Mag Magnesium L-Threonate uses a form of magnesium that’s designed for effective absorption. Magnesium contributes to normal psychological function and the normal functioning of the nervous system, helping you stay focused and balanced. It also helps reduce tiredness and fatigue, and supports normal muscle and bone function—ideal for your daily routine. With 2000mg of magnesium L-threonate per serving, Life Extension’s Neuro-Mag is a simple way to help meet your magnesium needs and support your overall wellbeing. + +## Ingredients + +Magnesium (from 2000 mg Magtein® magnesium L-threonate), Vegetable Cellulose (Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Vegetable Stearate) + +## Suggested Use + +Take three (3) capsules daily, or as recommended by a healthcare practitioner. Magnesium L-Threonate has less of a laxative effect than other forms of magnesium. + + Warnings: + KEEP OUT OF REACH OF CHILDREN. + DO NOT EXCEED RECOMMENDED DOSE. + Do not purchase if outer seal is broken or damaged. + When using nutritional supplements, please consult with your physician if you are undergoing treatment for a medical condition or if you are pregnant or lactating. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-adam-mens-multiple-vitamin-softgels.md b/healf-crawler/data/now-foods-adam-mens-multiple-vitamin-softgels.md new file mode 100644 index 0000000..d78ccfb --- /dev/null +++ b/healf-crawler/data/now-foods-adam-mens-multiple-vitamin-softgels.md @@ -0,0 +1,29 @@ +# Adam™ Men's Multiple Vitamin Softgels + +> Source: https://healf.com/products/now-foods-adam-mens-multiple-vitamin-softgels + +**Brand:** NOW Foods | **Price:** £22.99 + +## Description + +**Key Benefits** + +- With zinc to help maintain normal testosterone levels. +- B vitamins and vitamin C help reduce tiredness and fatigue. +- Supports your immune system with vitamins A, C, D, B6, B12, zinc, selenium, copper, and folate. +- Vitamins C and E, plus minerals, help protect cells from oxidative stress. + + +Start your day with confidence—Adam™ Men’s Multiple Vitamin Softgels bring together a carefully balanced mix of vitamins, minerals, and botanicals, designed to fit the needs of modern men. Zinc helps maintain normal testosterone levels and supports fertility and reproduction, while a high-potency B-complex, vitamin C, and folate work to reduce tiredness and keep your energy steady. + +Vitamins A, C, D, B6, B12, zinc, selenium, copper, and folate all contribute to the normal function of your immune system, helping you stay on top of your daily routine. Antioxidant nutrients like vitamins C and E, riboflavin, copper, manganese, selenium, and zinc help protect your cells from oxidative stress. + +Iodine supports normal thyroid and cognitive function, and vitamin D helps maintain normal muscle function, bones, and teeth. Every serving is crafted to help you meet your daily nutritional needs—so you can feel your best, every day. + +## Ingredients + +Vitamin C (from Calcium Ascorbate), Saw Palmetto Extract (Berry) (Serenoa repens) (min. 85% Fatty Acids), Vitamin E (as D-alpha Tocopherol), Calcium (from Calcium Ascorbate, Aquamin® Seaweed Derived Minerals And Calcium Pantothenate), Pantothenic Acid (Vitamin B-5) (from Calcium Pantothenate), Phytosterols (Plant Sterols) (with Beta-Sitosterol), Niacin (Vitamin B-3) (as Niacinamide), Thiamin (Vitamin B-1) (from Thiamin HCl), Riboflavin (Vitamin B-2), Vitamin B-6 (from Pyridoxine HCl and Pyridoxal-5-Phosphate [P-5-P]), Choline (from Choline Bitartrate), Magnesium (from Magnesium Citrate And Aquamin® Seaweed Derived Minerals), Potassium (from Potassium Sulfate), Alpha Lipoic Acid, Grape Seed Extract (Vitis vinifera), Zinc (from Zinc Picolinate), Inositol, CoQ10 (Coenzyme Q10) (Ubiquinone), Vitamin A (60% as Beta-Carotene And 40% As Retinyl Palmitate), Lycopene (from Tomato Extract) (Lycomato6™), Manganese (from Manganese Bisglycinate) (Albion™), Copper (from Copper Bisglycinate) (Albion™), Lutein (from Marigold Flowers Extract) (Tagetes erecta) (FloraGLO®), Folate (as Folic Acid), Iodine (from Potassium Iodide), Selenium (from Selenium Glycinate) (Albion™), Vitamin B-12 (as Methylcobalamin), Chromium (from Chromium Nicotinate Glycinate) (Albion™), Molybdenum (from Molybdenum Glycinate) (Albion™), Vitamin K-2 (as Menaquinone), Vitamin K (as K-1 Phytonadione), Vitamin D (as D-3 Cholecalciferol) 25 mcg (1,000 IU), Softgel Capsule [Bovine Gelatin (BSE-Free) Glycerin, Water, Carob], Pumpkin Seed Oil, Emulsifier (Sunflower Lecithin), Beeswax, Cinnamon Bark Powder + +## Suggested Use + +$37 diff --git a/healf-crawler/data/now-foods-amino-9-essentials-powder.md b/healf-crawler/data/now-foods-amino-9-essentials-powder.md new file mode 100644 index 0000000..a0192d6 --- /dev/null +++ b/healf-crawler/data/now-foods-amino-9-essentials-powder.md @@ -0,0 +1,37 @@ +# Amino-9 Essentials™ Powder + +> Source: https://healf.com/products/now-foods-amino-9-essentials-powder + +**Brand:** NOW Foods | **Price:** £26.99 + +## Description + +**Key Benefits** + +- All nine essential amino acids in one convenient blend. +- Protein contributes to the growth and maintenance of muscle mass. +- Protein helps maintain normal bones for everyday strength. +- Free-form formula designed for easy absorption. + +Start strong with Amino-9 Essentials™ Powder—crafted to deliver the nine essential amino acids your body can’t make on its own. These amino acids are the foundation of protein, which supports your muscles, bones, and the natural processes that keep you moving every day. + +Perfect for those with selective diets or looking for a straightforward way to top up their amino acid intake, this formula features free-form amino acids for quick and efficient absorption. Developed in line with the National Academy of Sciences’ recommendations, Amino-9 Essentials™ Powder is tailored for adults seeking to support protein synthesis and daily wellbeing. + +## Ingredients + +L-Leucine, L-Lysine (from 1,131 mg L-Lysine Monohydrochloride), L-Phenylalanine, L-Valine, L-Threonine, L-Isoleucine, L-Methionine, L-Histidine (from 438 mg L-Histidine Monohydrochloride), L-Tryptophan, Hypromellose (<1%) + +## Suggested Use + +Mix 2 1/4 level teaspoons with 8 oz. of your favourite beverage once daily. Taking with juice or other beverage is recommended due to the naturally bitter taste of free-form amino acids. + + Store in a cool, dry, dark place after opening. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-apple-pectin.md b/healf-crawler/data/now-foods-apple-pectin.md new file mode 100644 index 0000000..72942f7 --- /dev/null +++ b/healf-crawler/data/now-foods-apple-pectin.md @@ -0,0 +1,38 @@ +# Apple Pectin + +> Source: https://healf.com/products/now-foods-apple-pectin + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key Benefits** + +- Supports your daily fibre needs with natural apple pectin. +- Vegan, keto-friendly, and non-GMO for flexible lifestyles. +- Simple capsule form makes fibre intake effortless. +- Ideal for anyone looking to add more soluble fibre to their diet. + +Start your day with a gentle boost—Apple Pectin from NOW® is a natural source of soluble fibre, perfect for those seeking a convenient way to top up their fibre intake. When combined with water, apple pectin forms a soft gel, making it a practical addition to your balanced diet. This vegan, keto-friendly, and non-GMO supplement fits seamlessly into your routine, offering a straightforward option for anyone looking to support their daily wellbeing with plant-based fibre. + +## Ingredients + +Apple Pectin Powder (1,400 mg), Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 2 capsules 1 to 2 times daily with 8-10 oz. of water or juice, preferably 30 minutes before meals. Be sure to consume additional fluids throughout the day. Start with smaller dosages and gradually increase over several weeks. + + Store in a cool, dry place after opening. + + Caution: + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-ashwagandha-450-mg.md b/healf-crawler/data/now-foods-ashwagandha-450-mg.md new file mode 100644 index 0000000..6be320c --- /dev/null +++ b/healf-crawler/data/now-foods-ashwagandha-450-mg.md @@ -0,0 +1,22 @@ +# Ashwagandha - 450 mg + +> Source: https://healf.com/products/now-foods-ashwagandha-450-mg + +**Brand:** NOW Foods | **Price:** £10.99 + +## Description + +**Key Benefits** + +- Rooted in ayurvedic tradition for everyday wellbeing. + +NOW Foods Ashwagandha - 450 mg delivers a pure, plant-based extract in a convenient vegetable capsule. Crafted with care and quality, it’s a simple way to add a classic botanical to your daily routine. + +## Ingredients + +Ashwagandha Extract (Withania Somnifera) (Root And Leaf) (Min. 2.5% Withanolides -, Hypromellose (Cellulose Capsule), Rice Flour, Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 1 capsule 2-3 times daily. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-astaxanthin-4-mg.md b/healf-crawler/data/now-foods-astaxanthin-4-mg.md new file mode 100644 index 0000000..f7ce06b --- /dev/null +++ b/healf-crawler/data/now-foods-astaxanthin-4-mg.md @@ -0,0 +1,35 @@ +# Astaxanthin 4 mg + +> Source: https://healf.com/products/now-foods-astaxanthin-4-mg + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key Benefits** + +- With vitamin E to help protect your cells from oxidative stress. +- Includes extra virgin olive oil, a source of natural polyphenols. +- Easy-to-take softgel for daily wellbeing support. +- Features Zanthin®, a carefully sourced, high-quality astaxanthin. + +Support your daily routine with NOW® Astaxanthin 4 mg—a thoughtful blend of Zanthin® astaxanthin, extra virgin olive oil, and mixed tocopherols (vitamin E). Vitamin E contributes to the protection of cells from oxidative stress, making this formula a smart choice for those looking to maintain their everyday wellbeing. Each softgel delivers 4 mg of astaxanthin in a convenient format, with ingredients selected for quality and purity. Add it to your day for a simple way to look after yourself, inside and out. + +## Ingredients + +Astaxanthin (Zanthin®) (from Haematococcus pluvialis Extract), Vegetarian Softgel Capsule (Modified Cornstarch, Glycerin, Carrageenan, Water), Extra Virgin Olive Oil, Antioxidant (Mixed Tocopherols), Rosemary Leaf Extract + +## Suggested Use + +Take 1 softgel 1 to 2 times daily with food. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-astragalus-500mg.md b/healf-crawler/data/now-foods-astragalus-500mg.md new file mode 100644 index 0000000..7a3a68b --- /dev/null +++ b/healf-crawler/data/now-foods-astragalus-500mg.md @@ -0,0 +1,38 @@ +# Astragalus 500mg + +> Source: https://healf.com/products/now-foods-astragalus-500mg + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key benefits** + +- Delivers 500mg of pure astragalus root in every capsule. +- Features naturally occurring plant compounds from astragalus. +- Includes flavonoids, amino acids, and polyphenols found in the root. + +NOW Foods Astragalus 500mg brings you a time-honoured botanical, valued for generations. Each capsule contains pure astragalus root (Astragalus membranaceus), offering a convenient way to add this traditional plant to your daily routine. With naturally present flavonoids, amino acids, trace minerals, and polyphenols, it’s a simple addition to your balanced lifestyle. + +## Ingredients + +Astragalus Root (Astragalus membranaceus) (1 g), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Stearic Acid (Vegetable Source)) + +## Suggested Use + +Take 2 capsules 2 to 3 times daily, preferably with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-b-12-liquid-b-complex-8-oz.md b/healf-crawler/data/now-foods-b-12-liquid-b-complex-8-oz.md new file mode 100644 index 0000000..af3048b --- /dev/null +++ b/healf-crawler/data/now-foods-b-12-liquid-b-complex-8-oz.md @@ -0,0 +1,43 @@ +# Vitamin B-12 Liquid B-Complex + +> Source: https://healf.com/products/now-foods-b-12-liquid-b-complex-8-oz + +**Brand:** NOW Foods | **Price:** £13.99 + +## Description + +**Key Benefits** + +- With vitamin B12 and B6 to help reduce tiredness and fatigue. +- Supports your nervous system and psychological function with B12, B6, niacin, and vitamin C. +- Contributes to normal red blood cell formation and immune system function with B12, B6, folate, and vitamin C. + +**Comprehensive B vitamin support for your busy lifestyle.** + +NOW Foods Vitamin B-12 Liquid B-Complex brings together key B vitamins and vitamin C in a simple, easy-to-take liquid. Vitamin B12, B6, niacin, and vitamin C all contribute to normal energy-yielding metabolism, helping you stay on top of your day. B12, B6, folate, and vitamin C also support the normal function of your immune system and help reduce tiredness and fatigue. + +**Ideal for plant-based diets and anyone seeking daily nutritional support.** + +B12 is found mainly in animal-based foods, so this supplement is a convenient choice for those following a vegetarian or vegan lifestyle. With a blend of B vitamins and vitamin C, it’s designed to help you feel your best—whatever your day brings. + +## Ingredients + +Pantothenic Acid (from Calcium Pantothenate), Vitamin C (as Ascorbic Acid), Niacin (as Niacinamide) (Flush-Free), Vitamin B-6 (from Pyridoxine HCl), Stevia Extract (Leaf), Riboflavin (Vitamin B-2), Vitamin B-12 (as Cyanocobalamin), Thiamin (from Thiamin HCl) (Vitamin B-1), Folate (200 µg Folic Acid), De-Ionized Water, Glycerin, Sweetener (Xylitol), Acidity Regulator (Malic Acid), Natural Flavours, Potassium Sorbate (as Preservative), Ginger Root, Grapefruit Fiber, Cinnamon Bark Oil + +## Suggested Use + +Shake well. In the morning, take 1/4 teaspoon, hold in mouth for 30 seconds, then swallow. Take with a meal.  + Refrigerate after opening to maximise freshness. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + Xylitol is harmful to pets; seek veterinary care immediately if ingestion is suspected. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-b-50-caps-100-vcaps.md b/healf-crawler/data/now-foods-b-50-caps-100-vcaps.md new file mode 100644 index 0000000..6b70968 --- /dev/null +++ b/healf-crawler/data/now-foods-b-50-caps-100-vcaps.md @@ -0,0 +1,40 @@ +# Vitamin B-50 + +> Source: https://healf.com/products/now-foods-b-50-caps-100-vcaps + +**Brand:** NOW Foods | **Price:** £8.99 – £14.49 + +## Description + +**Key Benefits** + +- Feel energised every day—B vitamins contribute to normal energy-yielding metabolism and help reduce tiredness and fatigue. +- Support your mind and nerves—B vitamins help maintain normal psychological and nervous system function. +- Care for your heart—B6, B12, folate, and choline contribute to normal homocysteine metabolism and heart function. +- Choline supports normal lipid metabolism and helps maintain healthy liver function. + +Bring balance to your routine with a full spectrum of B vitamins. Vitamin B-50 is expertly blended to help you stay energised, focused, and ready for whatever the day brings. With thiamin, riboflavin, niacin, B6, folate, B12, biotin, and pantothenic acid, this complex supports everything from energy release to mental performance and the health of your skin and hair. Choline is included to help maintain normal liver and lipid metabolism. + +Because most B vitamins are water-soluble and not stored in the body (except B12), regular intake helps keep your levels topped up for daily wellbeing. + +## Ingredients + +Thiamin (Vitamin B-1) (from Thiamin HCl), Riboflavin (Vitamin B-2), Niacin (Vitamin B-3) (as Niacinamide), Vitamin B-6 (from Pyridoxine HCl), Pantothenic Acid (from Calcium Pantothenate), Choline (from Choline Bitartrate), PABA (Para-Aminobenzoic Acid), Inositol, Folate (400 µg Folic Acid), Vitamin B-12 (as Cyanocobalamin), Hypromellose (Cellulose Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take one capsule daily with a meal. + Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + This product contains Biotin which may interfere with some blood test results. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-berberine-glucose-support-90-sgels.md b/healf-crawler/data/now-foods-berberine-glucose-support-90-sgels.md new file mode 100644 index 0000000..45e8ed7 --- /dev/null +++ b/healf-crawler/data/now-foods-berberine-glucose-support-90-sgels.md @@ -0,0 +1,36 @@ +# Berberine Glucose Support + +> Source: https://healf.com/products/now-foods-berberine-glucose-support-90-sgels + +**Brand:** NOW Foods | **Price:** £25.99 + +## Description + +**Key Benefits** + +- Plant-based formula with berberine HCl and MCT oil in every softgel. +- Designed for easy absorption and daily convenience. +- Free from gluten, soy, dairy, and other common allergens. + +Feel confident in your daily routine with a supplement crafted for simplicity and quality. Berberine Glucose Support brings together berberine HCl, sourced from Berberis aristata bark, and MCT oil for a plant-based blend in a softgel format. MCT oil is included to help support the absorption of berberine, making it easy to fit into your day. + +Each serving delivers 400mg of berberine HCl, enhanced with MCT oil, and is made without yeast, wheat, gluten, soy, milk, egg, fish, shellfish, or sesame ingredients. Choose a supplement that fits your lifestyle and dietary needs. + +## Ingredients + +MCT Oil (Medium-Chain Triglycerides) (Capric Acid [C10] [from MCT Oil], Berberine HCl (from Berberis aristata Bark), Softgel Capsule (Bovine Gelatin, Glycerin, Water, Caramel Colour), Beeswax, Emulsifier (Sunflower Lecithin) + +## Suggested Use + +Take one softgel capsule three times daily with food. Store in a cool, dry place after opening. + +Caution: For adults only. This product is not intended for long term use, use only as directed. Do not use if pregnant or nursing. Consult a physician if you are taking medication or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-betaine-hcl-648-mg.md b/healf-crawler/data/now-foods-betaine-hcl-648-mg.md new file mode 100644 index 0000000..ec78441 --- /dev/null +++ b/healf-crawler/data/now-foods-betaine-hcl-648-mg.md @@ -0,0 +1,23 @@ +# Betaine HCl 648 mg + +> Source: https://healf.com/products/now-foods-betaine-hcl-648-mg + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key benefits** + +- Delivers 648 mg betaine HCl in each easy-to-take capsule. +- Includes acid-stable protease (300 SAPU) from Aspergillus niger. +- Formulated for vegetarian and plant-based diets. + +NOW Foods Betaine HCl 648 mg brings together betaine hydrochloride and a vegetarian-friendly protease, sourced from Aspergillus niger. Protease is an enzyme naturally found in many living things, helping to break down proteins during food processing. The acid-stable form in this supplement offers a plant-based alternative to animal-derived pepsin, making it a thoughtful choice for those following a vegetarian lifestyle. Each capsule is designed for simple, daily use—an easy way to add these ingredients to your routine. + +## Ingredients + +Betaine HCl, Acid-Stable Protease (300 SAPU) (Fungal Pepsin from Aspergillus niger), Capsule Shell (Hypromellose), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide), Bulking Agent (Microcrystalline Cellulose) + +## Suggested Use + +Take 1-2 capsules at the beginning of each meal. Do not take on an empty stomach.\n\n diff --git a/healf-crawler/data/now-foods-biotin-10mg-10-000mcg-120-vcaps.md b/healf-crawler/data/now-foods-biotin-10mg-10-000mcg-120-vcaps.md new file mode 100644 index 0000000..0c95080 --- /dev/null +++ b/healf-crawler/data/now-foods-biotin-10mg-10-000mcg-120-vcaps.md @@ -0,0 +1,41 @@ +# Biotin 10mg (10,000mcg) + +> Source: https://healf.com/products/now-foods-biotin-10mg-10-000mcg-120-vcaps + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key Benefits** + +- Helps maintain normal hair, skin, and mucous membranes. +- Supports your body's energy-yielding metabolism every day. +- Contributes to normal nervous system and psychological function. + +Feel your best with Biotin 10mg from NOW Foods—your daily companion for energy and self-care. Biotin, also known as Vitamin B7, is an essential B-Complex vitamin that helps your body convert food into energy, so you can keep up with life's demands. + +Biotin is well known for its role in supporting the maintenance of normal hair, skin, and mucous membranes. It also contributes to normal psychological function and the healthy functioning of your nervous system, making it a smart addition to your daily routine. + +Because biotin is water-soluble and not stored in the body, a regular supplement can help you meet your daily needs. Add this easy, extra-strength capsule to your routine and enjoy simple, everyday support for your wellbeing. + +## Ingredients + +Biotin (10,000 µg), Rice Flour, Hypromellose (Cellulose Capsule), Anti-Caking Agent (Silicon Dioxide), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take one capsule daily with a meal. + Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + This product contains Biotin which may interfere with some blood test results. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-biotin-5-000-mcg.md b/healf-crawler/data/now-foods-biotin-5-000-mcg.md new file mode 100644 index 0000000..61028ec --- /dev/null +++ b/healf-crawler/data/now-foods-biotin-5-000-mcg.md @@ -0,0 +1,41 @@ +# Biotin 5,000mcg + +> Source: https://healf.com/products/now-foods-biotin-5-000-mcg + +**Brand:** NOW Foods | **Price:** £4.99 – £10.99 + +## Description + +**Key Benefits** + +- Helps maintain normal hair, skin, and mucous membranes. +- Supports your body's natural energy-yielding metabolism. +- Contributes to normal nervous system and psychological function. + +Feel your best every day with Biotin 5,000mcg from NOW Foods. This essential B vitamin is known for supporting the maintenance of normal hair and skin, while also helping your body convert food into energy—perfect for busy lifestyles. + +Biotin, or Vitamin B7, is water-soluble and plays a vital role in macronutrient metabolism. While you can find it in foods like nuts, whole grains, and egg yolks, cooking can reduce its levels—making supplementation a simple way to help meet your daily needs. + +With regular use, Biotin 5,000mcg supports your natural energy, helps maintain normal psychological function, and keeps your hair and skin looking their best. Add it to your daily routine for easy, everyday wellbeing. + +## Ingredients + +Biotin (5000 µg), Rice Flour, Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one capsule with a meal. +Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + This product contains Biotin which may interfere with some blood test results. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-boron-3mg.md b/healf-crawler/data/now-foods-boron-3mg.md new file mode 100644 index 0000000..50bbd0a --- /dev/null +++ b/healf-crawler/data/now-foods-boron-3mg.md @@ -0,0 +1,38 @@ +# Boron 3mg + +> Source: https://healf.com/products/now-foods-boron-3mg + +**Brand:** NOW Foods | **Price:** £5.49 – £10.99 + +## Description + +**Key benefits** + +- Delivers 3 mg of boron in every capsule. +- Features Albion™ bororganic glycine for quality and consistency. +- Easy-to-take, plant-based capsule for daily use. + +NOW Foods Boron 3mg uses Albion™ bororganic glycine, a patented form of boron found naturally in plant foods. Each capsule offers a convenient way to include this trace mineral in your balanced diet—ideal for those looking to support their everyday wellbeing. + +## Ingredients + +Boron (from 30 mg Bororganic Glycine) (Albion™), Rice Flour, Hypromellose (Cellulose Capsule), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Maltodextrin (non-GMO) + +## Suggested Use + +Take 1 capsule daily with a meal. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-c-1000-rh-no-tr-100-tabs.md b/healf-crawler/data/now-foods-c-1000-rh-no-tr-100-tabs.md new file mode 100644 index 0000000..cf05024 --- /dev/null +++ b/healf-crawler/data/now-foods-c-1000-rh-no-tr-100-tabs.md @@ -0,0 +1,39 @@ +# Vitamin C-1000 Tablets + +> Source: https://healf.com/products/now-foods-c-1000-rh-no-tr-100-tabs + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Helps your immune system function at its best, every day. +- Supports collagen formation for healthy skin, bones, and more. +- Aids iron absorption and helps reduce tiredness and fatigue. + +Start your day with confidence—Vitamin C-1000 is formulated to help your immune system work normally and protect your cells from everyday oxidative stress. With a generous 1,000mg of vitamin C in every tablet, you’re giving your body the support it needs to keep up with life’s demands. + +Vitamin C also plays a key role in collagen formation, which is essential for the normal function of your skin, bones, cartilage, gums, teeth, and blood vessels. Plus, it helps your body absorb iron and contributes to the reduction of tiredness and fatigue—so you can feel your best, whatever your day brings. + +This expertly balanced blend includes rose hips and citrus bioflavonoids, working alongside vitamin C to offer comprehensive daily support. Each tablet is made to NOW Foods’ high standards, rigorously tested for quality and purity, and is a simple, reliable addition to your morning routine. + +## Ingredients + +Vitamin C (as Ascorbic Acid), Rose Hips Powder (Rosa canina)(Fruit), Citrus Bioflavonoid Complex, Bulking Agent (Microcrystalline Cellulose), Vegetarian Coating, Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take one tablet daily. + Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-candida-support.md b/healf-crawler/data/now-foods-candida-support.md new file mode 100644 index 0000000..4936c06 --- /dev/null +++ b/healf-crawler/data/now-foods-candida-support.md @@ -0,0 +1,39 @@ +# Candida Support + +> Source: https://healf.com/products/now-foods-candida-support + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key benefits** + +- Biotin helps your body process macronutrients and supports healthy hair and skin. +- Magnesium helps reduce tiredness and fatigue, and supports your muscles and nervous system. +- Caprylic acid from plant sources, blended for easy daily use. +- Features pau d’arco, black walnut, and oregano oil for a plant-based touch. + +NOW Foods Candida Support brings together biotin, magnesium, caprylic acid, and a selection of plant-based ingredients in one convenient formula. Biotin supports your body’s natural energy-yielding metabolism and helps maintain normal hair and skin. Magnesium contributes to a reduction of tiredness and fatigue, supports normal muscle and nervous system function, and helps keep bones healthy. With added pau d’arco bark, black walnut hull, and oregano oil, this blend is designed for easy daily use—so you can make it a simple part of your wellbeing routine. + +## Ingredients + +Biotin (2 mg), Magnesium (from Magnesium Caprylate), Caprylic Acid (from Magnesium Caprylate), Pau D'Arco (Tabebuia heptaphylla) (Bark), Black **Walnut (Nuts)** (Juglans nigra) (Hull), Oregano Oil Powder Blend [Microcrystalline Cellulose, Oregano Oil (Origanum vulgare), Silicon Dioxide], Hypromellose (Cellulose Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 2 capsules daily with food. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +This product contains Biotin which may interfere with some blood test results. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-carnitine-250mg-60-vcaps.md b/healf-crawler/data/now-foods-carnitine-250mg-60-vcaps.md new file mode 100644 index 0000000..5857d11 --- /dev/null +++ b/healf-crawler/data/now-foods-carnitine-250mg-60-vcaps.md @@ -0,0 +1,35 @@ +# L-Carnitine 250mg + +> Source: https://healf.com/products/now-foods-carnitine-250mg-60-vcaps + +**Brand:** NOW Foods | **Price:** £8.99 + +## Description + +**Key Benefits** + +- Pure, non-animal sourced L-Carnitine for your daily routine. + +Start strong with NOW Foods L-Carnitine 250mg—crafted for those who want to make the most of every workout and active day. L-Carnitine is involved in transporting fatty acids into the mitochondria of your cells, where they are used for energy production. This makes it a smart choice for anyone looking to complement their fitness or wellbeing goals with a trusted, high-quality supplement. + +With a convenient capsule format and a focus on purity, this supplement fits easily into your daily routine—helping you stay on track, every step of the way. + +## Ingredients + +L-Carnitine (Carnipure®) (from 746 mg L-Carnitine Tartrate), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 2 capsules 1 to 3 times daily. + Store in a cool, dry place after opening. + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition (including thyroid disorder). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-castor-oil.md b/healf-crawler/data/now-foods-castor-oil.md new file mode 100644 index 0000000..f3245ee --- /dev/null +++ b/healf-crawler/data/now-foods-castor-oil.md @@ -0,0 +1,23 @@ +# Castor Oil + +> Source: https://healf.com/products/now-foods-castor-oil + +**Brand:** NOW Foods | **Price:** £3.59 – £4.49 + +## Description + +**Key Benefits** + +- Gently nourishes skin and hair with natural moisture. +- Acts as a softening emollient for daily care routines. +- Versatile—use alone or blend into your favourite beauty formulas. + +NOW Foods Castor Oil is cold-pressed from Ricinus communis seeds, delivering a pure, virtually odourless oil ideal for everyday skin and hair care. Its natural emollient qualities help maintain softness and hydration, making it a simple addition to your beauty ritual—whether used on its own or as part of your personalised skincare blends. + +## Ingredients + +Ricinus Communis (Castor) Seed Oil. + +## Suggested Use + +As a skin moisturizer, apply a few drops of oil to the desired area(s) and gently massage in. For soft hair, simply add a few drops to your favorite shampoo prior to washing.\n\nDue to the nature of this oil, cloudiness or particles may sometimes appear.\n\nStore in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-choline-inositol.md b/healf-crawler/data/now-foods-choline-inositol.md new file mode 100644 index 0000000..3017250 --- /dev/null +++ b/healf-crawler/data/now-foods-choline-inositol.md @@ -0,0 +1,36 @@ +# Choline & Inositol + +> Source: https://healf.com/products/now-foods-choline-inositol + +**Brand:** NOW Foods | **Price:** £8.99 + +## Description + +**Key Benefits** + +- Choline supports normal lipid metabolism for everyday wellbeing. +- Helps maintain normal liver function as part of a balanced lifestyle. +- Contributes to normal homocysteine metabolism. + +Start your day with a balanced blend of choline and inositol—two nutrients that work together to support your body’s natural processes. Choline contributes to normal lipid metabolism and helps maintain normal liver function, while also playing a role in homocysteine metabolism. Each serving delivers 250 mg of choline and 250 mg of inositol, making it easy to add these essentials to your daily routine. Choose NOW Foods Choline & Inositol for straightforward, everyday nutritional support. + +## Ingredients + +Choline (from 630 mg Choline Bitartrate), Inositol, Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily, preferably with a meal. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-chromium-picolinate-200-mcg.md b/healf-crawler/data/now-foods-chromium-picolinate-200-mcg.md new file mode 100644 index 0000000..8045a3d --- /dev/null +++ b/healf-crawler/data/now-foods-chromium-picolinate-200-mcg.md @@ -0,0 +1,23 @@ +# Chromium Picolinate 200 mcg + +> Source: https://healf.com/products/now-foods-chromium-picolinate-200-mcg + +**Brand:** NOW Foods | **Price:** £5.99 – £10.49 + +## Description + +**Key benefits** + +- Supports normal macronutrient metabolism with chromium. +- Helps maintain normal blood glucose levels. +- Delivers a precise 200 mcg dose of chromium per serving. + +Bring a little balance to your day with Chromium Picolinate 200 mcg from NOW Foods. Each easy-to-take capsule provides 200 mcg of chromium, an essential trace mineral that contributes to normal macronutrient metabolism—helping your body process carbohydrates, proteins, and fats. Chromium also plays a role in maintaining normal blood glucose levels, making it a straightforward addition to your daily routine. Simple, effective, and designed for everyday wellbeing. + +## Ingredients + +Chromium (From 1,835 µg Chromium Picolinate), Rice Flour, Capsule Shell (Hypromellose) + +## Suggested Use + +Take 1 capsule daily with a meal.\n\n diff --git a/healf-crawler/data/now-foods-clinical-gi-probiotic.md b/healf-crawler/data/now-foods-clinical-gi-probiotic.md new file mode 100644 index 0000000..f33e7da --- /dev/null +++ b/healf-crawler/data/now-foods-clinical-gi-probiotic.md @@ -0,0 +1,40 @@ +# Clinical GI Probiotic + +> Source: https://healf.com/products/now-foods-clinical-gi-probiotic + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +**Key Benefits** + +- Delivers 20 billion CFUs of live bacteria in every serving. +- Features Bifidobacterium lactis HN019™ and 8 complementary strains. +- Formulated to help maintain a balanced gut environment. +- Includes Streptococcus thermophilus, a live yoghurt culture. + +Bring balance to your day with Clinical GI Probiotic™. This high-strength formula combines DNA-verified strains, including the well-studied Bifidobacterium lactis HN019™, to help you feel your best. Each capsule delivers a diverse blend of live cultures, designed for those seeking everyday digestive support. + +With Streptococcus thermophilus, a live yoghurt culture, this blend includes a strain shown to improve lactose digestion of the product in individuals who have difficulty digesting lactose (when present at sufficient levels). Choose Clinical GI Probiotic™ for a simple way to support your daily routine. + +## Ingredients + +Blend Of Probiotic Bacteria (20 Billion CFU): Bifidobacterium lactis HN019 (Predominant Strain) Plus 8 Strains: Lactobacillus Acidophilus (-14), Bifidobacterium lactis (Bl-04), Lactobacillus rhamnosus (Lr-32), Lactobacillus salivarius (Ls-33), Lactobacillus casei (Lc-11), Streptococcus thermophilus (St-21), Bifidobacterium longum (Bl-05), Bifidobacterium bifidum/Bifidobacterium lactis (Bb-02), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1-2 capsules 1 to 2 times daily. + + Store in a cool, dry place to maintain potency. + + Caution: + Consult physician if pregnant/nursing, taking medication (especially immune-suppressing drugs), or have a medical condition (especially if immune system is compromised). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-cocoa-powder-pure-organic.md b/healf-crawler/data/now-foods-cocoa-powder-pure-organic.md new file mode 100644 index 0000000..3e38f19 --- /dev/null +++ b/healf-crawler/data/now-foods-cocoa-powder-pure-organic.md @@ -0,0 +1,35 @@ +# Cocoa Powder Pure Organic + +> Source: https://healf.com/products/now-foods-cocoa-powder-pure-organic + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key benefits** + +- Non-alkalised organic cocoa for a true, robust taste. +- Perfect for both sweet and savoury creations. + +Bring a touch of indulgence to your recipes with Cocoa Powder Pure Organic. Crafted from organic, non-alkalised cocoa beans, this powder delivers a deep, full-bodied cocoa flavour—without added sugar, fat, or preservatives. Enjoy its versatility in baking, desserts, or a comforting hot chocolate. Whether you’re experimenting with new dishes or perfecting old favourites, this pure cocoa powder lets you create with confidence and simplicity. + +## Ingredients + +Organic Cocoa Powder + +## Suggested Use + +1. Place milk, sugar, and cocoa into a pot on medium heat. +2. Allow for mixture to reach a soft boil and whisk until cocoa dissolves. +3. Whisk in vanilla extract. +4. Remove from heat, allow to slightly cool in your favorite mug and enjoy! + + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-coq10-200mg.md b/healf-crawler/data/now-foods-coq10-200mg.md new file mode 100644 index 0000000..75b4687 --- /dev/null +++ b/healf-crawler/data/now-foods-coq10-200mg.md @@ -0,0 +1,23 @@ +# Coq10 200mg + +> Source: https://healf.com/products/now-foods-coq10-200mg + +**Brand:** NOW Foods | **Price:** £20.99 + +## Description + +**Key Benefits** + +- Delivers 200 mg of CoQ10 in every easy-to-take capsule. +- Features the all-trans form of CoQ10, produced by fermentation. +- Pharmaceutical-grade quality for peace of mind. + +Start your day with confidence—NOW Foods Coq10 200mg offers a convenient way to add coenzyme Q10 (ubiquinone) to your daily routine. CoQ10 is a vitamin-like compound found naturally in the body, present in organs such as the heart, liver, and kidneys. Each capsule provides a high-strength 200 mg dose in the all-trans form, crafted through fermentation and made to pharmaceutical-grade standards. The vegetable capsules are designed for easy, everyday use—ideal for those looking to support their wellbeing with a trusted supplement. + +## Ingredients + +Coenzyme Q10 (CoQ10) (Ubiquinone), Rice Flour, Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily with a meal.\n diff --git a/healf-crawler/data/now-foods-d-mannose-urinary-support-500mg.md b/healf-crawler/data/now-foods-d-mannose-urinary-support-500mg.md new file mode 100644 index 0000000..3b3dbf7 --- /dev/null +++ b/healf-crawler/data/now-foods-d-mannose-urinary-support-500mg.md @@ -0,0 +1,38 @@ +# D-Mannose Urinary Support 500mg + +> Source: https://healf.com/products/now-foods-d-mannose-urinary-support-500mg + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +**Key benefits** + +- Delivers 500 mg of D-mannose in every capsule. +- Plant-derived and easy to take each day. +- Metabolised in small amounts, with most excreted naturally. + +NOW Foods D-Mannose Urinary Support 500mg offers a straightforward option for those looking to include D-mannose in their diet. Sourced from a naturally occurring simple sugar, this supplement is designed for easy, consistent use—just one capsule provides a measured amount to fit seamlessly into your daily habits. + +## Ingredients + +Vitamin C (as Ascorbic Acid) (1 g), Citrus Bioflavonoid Complex, Rutin (from Sophora japonica Flower Bud), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 3 capsules 1 to 3 times daily. Take with water or unsweetened juice, such as unsweetened cranberry juice. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-daily-vits-tablets.md b/healf-crawler/data/now-foods-daily-vits-tablets.md new file mode 100644 index 0000000..ded8dfe --- /dev/null +++ b/healf-crawler/data/now-foods-daily-vits-tablets.md @@ -0,0 +1,30 @@ +# Daily Vits™ Tablets + +> Source: https://healf.com/products/now-foods-daily-vits-tablets + +**Brand:** NOW Foods | **Price:** £13.99 + +## Description + +**Key Benefits for Everyday Wellbeing** + +- With vitamin C and B vitamins to help reduce tiredness and fatigue. +- Supports your immune system with vitamins A, C, D, B6, B12, zinc, selenium, copper, folate, and iron. +- Calcium, vitamin D, magnesium, manganese, and zinc help maintain normal bones and teeth. +- Vitamin A, biotin, and zinc contribute to the maintenance of normal skin. + +Start your day with confidence—Daily Vits™ Tablets deliver a carefully balanced blend of essential vitamins and minerals to help you meet your daily nutritional needs. B vitamins, vitamin C, iron, and magnesium work together to support normal energy-yielding metabolism and help reduce tiredness and fatigue, so you can keep up with life’s demands. + +Vitamins A, C, D, B6, B12, zinc, selenium, copper, folate, and iron all play a role in supporting the normal function of your immune system, while vitamin E, C, riboflavin, copper, manganese, selenium, and zinc help protect your cells from oxidative stress. + +With calcium, vitamin D, magnesium, manganese, and zinc to help maintain normal bones and teeth, and vitamin A, biotin, and zinc to support normal skin, Daily Vits™ Tablets are designed to help you feel your best every day. + +## Ingredients + +Calcium [from Calcium Carbonate (Aquamin® Seaweed Derived Minerals)], Magnesium (from Magnesium Oxide And Aquamin® Seaweed Derived Minerals), Vitamin C (as Ascorbic Acid), Potassium (from Potassium Chloride), Vitamin E (as D-alpha Tocopheryl Succinate), Niacin (Vitamin B-3) (as Niacinamide), Zinc (from Zinc Bisglycinate) (Albion™), Pantothenic Acid (Vitamin B-5) (from Calcium Pantothenate), Iron (from Ferrous Bisglycinate) (Ferrochel™), Vitamin B-6 (from Pyridoxine HCI), Manganese (from Manganese Bisglycinate) (Albion™), Riboflavin (Vitamin B-2), Thiamin (Vitamin B-1) (from Thiamin HCl), Vitamin A (100% as Beta-Carotene), Copper (from Copper Bisglycinate) (Albion™), Folate (Folic Acid), Iodine (from Potassium Iodide), Lutein (from Marigold Flowers Extract) (Tagetes erecta) (FloraGLO®), Lycopene (from Tomato Extract), Chromium (from Chromium Picolinate), Selenium (from L-Selenomethionine), Molybdenum (from Sodium Molybdate), Vitamin D (as Ergocalciferol) (400 IU), Vitamin B-12 (as Cyanocobalamin), Bulking Agent (Microcrystalline Cellulose), Croscarmellose Sodium, Anti-Caking Agent (Stearic Acid (Vegetable Source)), Vegetarian Coating [Hypromellose (Cellulose), Stearic Acid (Vegetable Source), Sunflower Lecithin, Triethyl Citrate, Sunflower Oil] (**Gluten**), Anti-Caking Agent (Silicon Dioxide) + +For allergens, see ingredients in Bold. + +## Suggested Use + +Take 1 tablet daily with a meal. diff --git a/healf-crawler/data/now-foods-dandelion-root-500mg.md b/healf-crawler/data/now-foods-dandelion-root-500mg.md new file mode 100644 index 0000000..f72ab8d --- /dev/null +++ b/healf-crawler/data/now-foods-dandelion-root-500mg.md @@ -0,0 +1,39 @@ +# Dandelion Root 500mg + +> Source: https://healf.com/products/now-foods-dandelion-root-500mg + +**Brand:** NOW Foods | **Price:** £5.99 + +## Description + +**Key benefits** + +- Each capsule delivers 500 mg of dandelion root. +- Naturally contains inulin, a plant fibre. +- Provides flavonoids and minerals from the root. + + +Bring a touch of tradition to your daily routine with Dandelion Root 500mg. Sourced from Taraxacum officinale, this botanical has been valued in Native American, European, and Asian herbal practices for generations. Each capsule offers a consistent serving of dried dandelion root, naturally containing inulin, flavonoids, and minerals—making it easy to enjoy this time-honoured plant as part of your balanced lifestyle. + +## Ingredients + +Organic Dandelion Root (Taraxacum officinale), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily as needed. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-dha-500-fish-oil-double-strength-softgels.md b/healf-crawler/data/now-foods-dha-500-fish-oil-double-strength-softgels.md new file mode 100644 index 0000000..5909e2e --- /dev/null +++ b/healf-crawler/data/now-foods-dha-500-fish-oil-double-strength-softgels.md @@ -0,0 +1,26 @@ +# DHA-500 Fish Oil + +> Source: https://healf.com/products/now-foods-dha-500-fish-oil-double-strength-softgels + +**Brand:** NOW Foods | **Price:** £16.99 + +## Description + +#### **Key Benefits** + +- Supports the normal function of your heart with EPA and DHA. +- DHA helps maintain normal brain function and vision. +- Each serving provides 500mg DHA and 250mg EPA. +- A convenient source of omega-3 fatty acids for daily wellbeing. + +Bring balance to your daily routine with NOW Foods DHA-500 Fish Oil Softgels. Each softgel delivers a potent 500mg of DHA and 250mg of EPA—two key omega-3 fatty acids. EPA and DHA contribute to the normal function of the heart, while DHA also supports the maintenance of normal brain function and vision. Simple, effective, and easy to fit into your day. + +## Ingredients + +**Fish Oil** Concentrate (**Anchovies, Sardines** and **Tuna**), Softgel Capsule (Bovine Gelatin [BSE-Free], Glycerin, Enteric Coating [Pharmaceutical Glaze, Ethyl Alcohol, Ammonium Hydroxide, Glycerin, Sunflower Lecithin, Medium Chain Triglycerides], Water), D-alpha Tocopherol (from Sunflower) + +## Suggested Use + +Take 1 softgel 1 to 2 times daily with food. + + Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-double-strength-milk-thistle-300-mg.md b/healf-crawler/data/now-foods-double-strength-milk-thistle-300-mg.md new file mode 100644 index 0000000..48016e2 --- /dev/null +++ b/healf-crawler/data/now-foods-double-strength-milk-thistle-300-mg.md @@ -0,0 +1,24 @@ +# Double Strength Milk Thistle - 300 mg + +> Source: https://healf.com/products/now-foods-double-strength-milk-thistle-300-mg + +**Brand:** NOW Foods | **Price:** £13.99 – £23.99 + +## Description + +**Key Benefits** + +- Botanical blend for everyday balance and support. +- Features milk thistle, dandelion root, and artichoke in a high-strength formula. +- Inspired by time-honoured herbal traditions. +- Easy-to-take capsule fits seamlessly into your routine. + +Double Strength Milk Thistle delivers 240 mg of silymarin, combined with artichoke and dandelion root—three botanicals long valued for their place in traditional wellness practices. This thoughtfully crafted blend is designed for those seeking a simple way to add classic plant ingredients to their day. + +## Ingredients + +Milk Thistle Extract (Silybum marianum) (Fruit/Seed) (Standardized to 240 mg Silymarin Flavonoids - equivalent 80%), Dandelion Root (Taraxacum officinale), Artichoke (Cynara scolymus) (Leaf), Hypromellose (Cellulose Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 capsule 1-3 times daily. diff --git a/healf-crawler/data/now-foods-eucalyptus-essential-oil-blend-organic-roll-on.md b/healf-crawler/data/now-foods-eucalyptus-essential-oil-blend-organic-roll-on.md new file mode 100644 index 0000000..87e23d5 --- /dev/null +++ b/healf-crawler/data/now-foods-eucalyptus-essential-oil-blend-organic-roll-on.md @@ -0,0 +1,34 @@ +# Eucalyptus Essential Oil Blend Organic Roll-On + +> Source: https://healf.com/products/now-foods-eucalyptus-essential-oil-blend-organic-roll-on + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Organic eucalyptus oil blend. +- Strong aromatic profile. +- No synthetic fragrances. + + +Eucalyptus Essential Oil Blend Organic Roll-On delivers a strong aromatic, camphoraceous aroma with clarifying and revitalising attributes. It contains an organic eucalyptus essential oil blend that undergoes analytical testing for identity, purity, and adulteration, contains no synthetic fragrances or added chemicals, and follows NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\* & Eucalyptus Globulus Leaf Oil\*.\n + +\*Certified Organic + +## Suggested Use + +Apply to wrists, chest, neck, or muscles, and breathe in the clarifying and revitalizing scent. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use.\n + +\nIf pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes.\n + +\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-folic-acid-800-mcg.md b/healf-crawler/data/now-foods-folic-acid-800-mcg.md new file mode 100644 index 0000000..8b3bb8a --- /dev/null +++ b/healf-crawler/data/now-foods-folic-acid-800-mcg.md @@ -0,0 +1,25 @@ +# Folic Acid - 800 mcg + +> Source: https://healf.com/products/now-foods-folic-acid-800-mcg + +**Brand:** NOW Foods | **Price:** £5.99 + +## Description + +**Key Benefits** + +- Supports your body’s natural red blood cell formation with folate and vitamin B12. +- Helps maintain normal homocysteine metabolism for everyday wellbeing. +- Contributes to normal psychological function and immune system support. +- Helps reduce tiredness and fatigue, so you can feel your best each day. + +Folic Acid - 800 mcg from NOW Foods combines folate and vitamin B12, both of which play a role in cell division and energy-yielding metabolism—ideal for those looking to support their daily nutritional needs. + +## Ingredients + +Folate (800 µg Folic Acid), Vitamin B12 (as Cyanocobalamin), Bulking Agent (Microcrystalline Cellulose), Stearic Acid (Vegetable Source), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 tablet daily with a meal. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-glutathione-250mg-60-vcaps.md b/healf-crawler/data/now-foods-glutathione-250mg-60-vcaps.md new file mode 100644 index 0000000..100dbbd --- /dev/null +++ b/healf-crawler/data/now-foods-glutathione-250mg-60-vcaps.md @@ -0,0 +1,37 @@ +# Glutathione 250mg + +> Source: https://healf.com/products/now-foods-glutathione-250mg-60-vcaps + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key Benefits** + +- Start each day with reduced-form glutathione for optimal absorption. +- Designed for those looking to support their natural cellular processes. +- Vegan-friendly and free from common allergens for peace of mind. +- Produced in a GMP facility to ensure quality you can trust. + +Support your daily routine with this premium glutathione supplement from NOW Foods. Glutathione is a naturally occurring tripeptide—made from cysteine, glutamic acid, and glycine—present in every cell of the body. This formula delivers glutathione in its reduced, active form, making it easy for your body to absorb and use. + +Whether you’re looking to complement a balanced lifestyle or simply want a convenient way to add this important nutrient to your day, Glutathione 250mg offers a straightforward solution in a vegan capsule, free from common allergens. + +## Ingredients + +Glutathione (Reduced Form), Rice Flour, Hypromellose (Cellulose Capsule), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take one capsule daily, preferably on an empty stomach. Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-glutathione-500mg-60-vcaps.md b/healf-crawler/data/now-foods-glutathione-500mg-60-vcaps.md new file mode 100644 index 0000000..60dd02e --- /dev/null +++ b/healf-crawler/data/now-foods-glutathione-500mg-60-vcaps.md @@ -0,0 +1,36 @@ +# Glutathione 500mg + +> Source: https://healf.com/products/now-foods-glutathione-500mg-60-vcaps + +**Brand:** NOW Foods | **Price:** £11.99 – £45.99 + +## Description + +**Key Benefits** + +- A thoughtful combination of glutathione, milk thistle, and alpha lipoic acid for everyday support. +- Features milk thistle extract, traditionally used to help maintain normal liver function. +- Includes alpha lipoic acid, a compound that plays a role in energy metabolism. + +Start your day with confidence—Glutathione 500mg by NOW Foods brings together three carefully selected ingredients in a highly absorbable, active form. Glutathione is a naturally occurring tripeptide found in every cell, while milk thistle extract is valued for its traditional use in supporting liver health. Alpha lipoic acid is included for its role in the body’s energy processes. + +Each capsule is crafted for quality and purity, making this supplement a simple way to add purposeful plant and nutrient support to your daily routine. + +## Ingredients + +Glutathione (Reduced Form), Milk Thistle Extract (Silybum marianum) (Fruit/Seed) (Standardized to 80 mg Silymarin Flavonoids – equivalent 80%), Alpha Lipoic Acid, Hypromellose (Cellulose Capsule), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one capsule daily, preferably on an empty stomach. Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-glycine-1000mg-100-vcaps.md b/healf-crawler/data/now-foods-glycine-1000mg-100-vcaps.md new file mode 100644 index 0000000..9febf56 --- /dev/null +++ b/healf-crawler/data/now-foods-glycine-1000mg-100-vcaps.md @@ -0,0 +1,37 @@ +# Glycine 1000mg + +> Source: https://healf.com/products/now-foods-glycine-1000mg-100-vcaps + +**Brand:** NOW Foods | **Price:** £8.99 + +## Description + +**Key Benefits** + +- Each capsule delivers 1000mg of pure glycine. +- Glycine is an amino acid that helps build proteins in the body. +- Ideal for anyone looking to supplement their diet with this essential amino acid. + +Start your day with a boost—NOW Foods Glycine 1000mg makes it easy to add this important amino acid to your routine. Glycine is the simplest amino acid, playing a role in the creation of proteins, DNA, and other key compounds your body needs. + +Whether you’re looking to complement your diet or simply want a convenient way to support your nutritional intake, this supplement offers a straightforward solution. Glycine is naturally found in many foods and produced by the body, making this capsule a practical choice for daily wellbeing. + +## Ingredients + +Glycine, Hypromellose (cellulose capsule), Capsule Shell (Hydroxypropyl Cellulose), Stearic Acid (vegetable source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1-3 capsules daily, preferably on an empty stomach. +Store in a cool, dry place after opening. + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-gr8-dophilus.md b/healf-crawler/data/now-foods-gr8-dophilus.md new file mode 100644 index 0000000..2b5a8f8 --- /dev/null +++ b/healf-crawler/data/now-foods-gr8-dophilus.md @@ -0,0 +1,40 @@ +# Gr8-Dophilus + +> Source: https://healf.com/products/now-foods-gr8-dophilus + +**Brand:** NOW Foods | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Eight acid-resistant strains and FOS for daily gut support. +- Free from dairy and gluten—suitable for sensitive diets. +- DNA-verified strains ensure quality and consistency. +- Convenient capsule for easy, everyday use. + +Start your day with a blend designed for balance. Gr8-Dophilus brings together eight well-studied, acid-resistant strains, delivering four billion CFUs in every serving. These strains are selected for their ability to reach your gut, while FOS (fructooligosaccharides) provides nourishment for friendly bacteria. + +With a formula free from dairy and gluten, Gr8-Dophilus is a gentle choice for those with dietary sensitivities. Each batch is DNA-verified for purity and potency, so you can trust what you’re taking. Make it part of your daily routine for a simple way to support your gut’s natural balance. + +## Ingredients + +Probiotic Blend Of 8 Strains (4 Billion CFU): Lactobacillus Acidophilus (-14), Lactobacillus rhamnosus (Lr-32), Bifidobacterium lactis (Bl-04), Lactobacillus salivarius (Ls-33), Lactobacillus casei (Lc-11), Bifidobacterium longum (Bl-05), Streptococcus thermophilus (St-21), Bifidobacterium bifidum (Bb-02), Hypromellose (Cellulose Capsule), FOS (Fructooligosaccharides), Antioxidant (Ascorbic Acid), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily between meals or on an empty stomach. + + Store in a cool, dry place to maintain potency. + + Caution: + Consult physician if pregnant/nursing, taking medication (especially immune-suppressing drugs), or have a medical condition (especially if immune system is compromised). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-green-black-walnut-wormwood-complex-liquid.md b/healf-crawler/data/now-foods-green-black-walnut-wormwood-complex-liquid.md new file mode 100644 index 0000000..c4900a8 --- /dev/null +++ b/healf-crawler/data/now-foods-green-black-walnut-wormwood-complex-liquid.md @@ -0,0 +1,38 @@ +# Green Black Walnut Wormwood Complex Liquid + +> Source: https://healf.com/products/now-foods-green-black-walnut-wormwood-complex-liquid + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key Benefits** + +- Light, fast-absorbing liquid for easy use. +- Features green black walnut hull extract. +- Includes wormwood and clove bud extracts. + +Bring a touch of tradition to your day with Green Black Walnut Wormwood Complex Liquid. This thoughtfully crafted formula blends green black walnut hulls, wormwood, and clove buds—three botanicals long valued in herbal practices. Each ingredient is provided as an extract, making it simple to add to your daily routine. Free from yeast, wheat, gluten, soy, milk, egg, fish, and shellfish, this liquid is suitable for a variety of dietary preferences. + +## Ingredients + +A unique blend of: \ + +## Suggested Use + +Take 1/2 to 2 droppersful 2 times daily in juice or water before meals and/or at bedtime. This product is best used by gradually increasing dosage over a two week period with a one week break before repeating. + + +Store in a cool, dry, dark place after opening. + + +For adults only. Not for pregnant/nursing women. Consult physician if taking medication or have a medical condition. Individuals with kidney or liver dysfunction should avoid taking this supplement. May cause gastrointestinal disturbance. Contains alcohol. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-head-relief-essential-oil-blend-roll-on.md b/healf-crawler/data/now-foods-head-relief-essential-oil-blend-roll-on.md new file mode 100644 index 0000000..038df79 --- /dev/null +++ b/healf-crawler/data/now-foods-head-relief-essential-oil-blend-roll-on.md @@ -0,0 +1,32 @@ +# Head Relief Essential Oil Blend Roll-On + +> Source: https://healf.com/products/now-foods-head-relief-essential-oil-blend-roll-on + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Soothing essential oil blend. +- Roll-on application format. +- No synthetic fragrances. + + +Head Relief Essential Oil Blend Roll-On offers soothing and calming aromatic attributes in a roll-on format. It contains a blended essential oil formulation that undergoes analytical testing for identity, purity, and adulteration, contains no synthetic fragrances or added chemicals, and follows NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\*, Lavandula Angustifolia (Lavender) Oil, Lavandula Latifolia (Spike Lavender) Oil, Anthemis Nobilis Flower Oil, Eucalyptus Globulus Leaf Oil. + +\*Certified Organic\n\n + +## Suggested Use + +Apply to wrists, nape of neck, temples, or other desired area for a soothing, comforting, and calming scent. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes.\n + +\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-hyaluronic-acid-double-strength-100-mg.md b/healf-crawler/data/now-foods-hyaluronic-acid-double-strength-100-mg.md new file mode 100644 index 0000000..3469ad7 --- /dev/null +++ b/healf-crawler/data/now-foods-hyaluronic-acid-double-strength-100-mg.md @@ -0,0 +1,39 @@ +# Hyaluronic Acid Double Strength 100 mg + +> Source: https://healf.com/products/now-foods-hyaluronic-acid-double-strength-100-mg + +**Brand:** NOW Foods | **Price:** £23.99 + +## Description + +**Key Benefits** + +- Delivers 100 mg hyaluronic acid in every serving. +- Features L-proline, a key amino acid. +- Includes alpha lipoic acid and grape seed extract, both plant-derived. + + +Support your daily wellbeing with a formula that brings together hyaluronic acid, L-proline, alpha lipoic acid, and grape seed extract. This blend combines naturally occurring compounds and plant-based ingredients, and is free from soy, milk, egg, fish, shellfish, tree nut, and sesame ingredients. + +## Ingredients + +Vitamin C (as Ascorbic Acid) (1 g), Citrus Bioflavonoid Complex, Rutin (from Sophora japonica Flower Bud), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-inositol-500-mg.md b/healf-crawler/data/now-foods-inositol-500-mg.md new file mode 100644 index 0000000..f0b59a7 --- /dev/null +++ b/healf-crawler/data/now-foods-inositol-500-mg.md @@ -0,0 +1,25 @@ +# Inositol - 500mg + +> Source: https://healf.com/products/now-foods-inositol-500-mg + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Features myo-inositol, the most common form found in nature. +- Easy-to-take, vegan-friendly capsules for everyday use. +- Crafted by NOW Foods, known for quality and care in supplements. +- Ideal for those looking to add inositol to their balanced diet. + +NOW Foods Inositol - 500mg delivers myo-inositol, a naturally occurring compound present in many foods and produced by the body. A straightforward addition to your wellness routine. + +## Ingredients + +Inositol, Rice flour, Hypromellose (Cellulose Capsule), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily as needed. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-l-arginine-1-000-mg.md b/healf-crawler/data/now-foods-l-arginine-1-000-mg.md new file mode 100644 index 0000000..b778f50 --- /dev/null +++ b/healf-crawler/data/now-foods-l-arginine-1-000-mg.md @@ -0,0 +1,24 @@ +# L-Arginine - 1,000 mg + +> Source: https://healf.com/products/now-foods-l-arginine-1-000-mg + +**Brand:** NOW Foods | **Price:** £9.99 – £11.49 + +## Description + +**Key Benefits** + +- Pharmaceutical grade L-Arginine for reliable, everyday quality. +- Delivers a key amino acid, supporting your body's protein needs. + +NOW Foods L-Arginine is made to exacting standards in the USA, using carefully sourced ingredients. Each bottle is crafted from 100% post-consumer recycled resin—so you can feel good about your daily choice. + +## Ingredients + +L-Arginine (from 1,250 mg L-Arginine HCl) (1,000 mg), Bulking Agent (Microcrystalline Cellulose), Capsule Shell (Hydroxypropyl Cellulose), Stearic Acid (Vegetable Source), Croscarmellose Sodium, Anti-Caking Agent (Silicon Dioxide), Vegetarian Coating [Hypromellose (Cellulose), Calcium Carbonate, Glycerin] + +## Suggested Use + +Take 1 tablet twice daily as needed with at least 8 oz. of water. +Take between meals or at bedtime. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-l-carnitine-1000-mg.md b/healf-crawler/data/now-foods-l-carnitine-1000-mg.md new file mode 100644 index 0000000..f7aff45 --- /dev/null +++ b/healf-crawler/data/now-foods-l-carnitine-1000-mg.md @@ -0,0 +1,41 @@ +# L-Carnitine 1000 mg + +> Source: https://healf.com/products/now-foods-l-carnitine-1000-mg + +**Brand:** NOW Foods | **Price:** £29.99 + +## Description + +**Key Benefits** + +- Delivers 1,000 mg L-carnitine in every vegetarian capsule. +- Made with Carnipure® L-carnitine tartrate for quality and purity. +- Formulated without common allergens for peace of mind. + +Bring a simple, plant-based approach to your supplement routine with L-Carnitine 1000 mg from NOW Foods. Each capsule features Carnipure® L-carnitine tartrate, a form of this amino acid found naturally in foods like red meat and dairy. Crafted with carefully chosen ingredients to help maintain product quality, this formula is free from wheat, gluten, soy, milk, egg, fish, shellfish, and tree nuts—making it a versatile choice for a range of dietary needs. + +## Ingredients + +L-Carnitine (Carnipure®) (From 1,493 mg L-Carnitine Tartrate), Bulking Agent (Microcrystalline Cellulose), Capsule Shell (Hydroxypropyl Cellulose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Vegetarian Coating (**Gluten**), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 tablet 1 to 2 times daily. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition (including thyroid disorder). + + +Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-glutamine-1000-mg.md b/healf-crawler/data/now-foods-l-glutamine-1000-mg.md new file mode 100644 index 0000000..642f550 --- /dev/null +++ b/healf-crawler/data/now-foods-l-glutamine-1000-mg.md @@ -0,0 +1,39 @@ +# L-Glutamine 1000 mg + +> Source: https://healf.com/products/now-foods-l-glutamine-1000-mg + +**Brand:** NOW Foods | **Price:** £14.99 + +## Description + +**Key Benefits** + +- Double-strength L-Glutamine—1,000 mg per capsule for daily support. +- Ideal for those with increased nutritional needs. +- Pure, carefully tested ingredients for peace of mind. +- Perfect for active lifestyles and everyday wellbeing. + +Start strong with L-Glutamine 1000 mg from NOW Foods. This conditionally essential amino acid is valued for its role in supporting your body’s natural balance, especially during times of increased demand such as intense activity or busy routines. As the body’s main nitrogen transporter, L-Glutamine helps maintain a healthy nitrogen balance, which is important for overall metabolic function. + +Each capsule delivers a generous 1,000 mg of free-form L-Glutamine—twice the strength of standard formulas. Whether you’re looking to support your daily nutrition or simply want a quality supplement for your active lifestyle, this formula is made with pure ingredients and tested for quality you can trust. + +## Ingredients + +L-Glutamine (Free-Form), Hypromellose (Cellulose Capsule), Capsule Shell (Hydroxypropyl Cellulose), Stearic Acid (Vegetable Source), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily, preferably between meals. + + Store in a cool, dry, dark place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-glutamine-500mg.md b/healf-crawler/data/now-foods-l-glutamine-500mg.md new file mode 100644 index 0000000..63e2bc4 --- /dev/null +++ b/healf-crawler/data/now-foods-l-glutamine-500mg.md @@ -0,0 +1,39 @@ +# L-Glutamine 500mg + +> Source: https://healf.com/products/now-foods-l-glutamine-500mg + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key benefits** + +- Delivers 500 mg L-Glutamine in every capsule +- Features a conditionally essential amino acid +- Formulated without common allergens for peace of mind + +Each vegetarian capsule provides 500 mg of free-form L-glutamine, designed for those looking to add this key amino acid to their daily routine. The formula is free from wheat, gluten, soy, milk, egg, fish, shellfish, tree nut, and sesame ingredients—making it a versatile choice for a range of dietary needs. + +## Ingredients + +L-Glutamine (Free-Form), Hypromellose (Cellulose Capsule), Rice Flour, Antioxidant (Ascorbyl Palmitate) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily, preferably between meals. + + +Store in a cool, dry place after opening. + + +Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-lysine-1-000-mg.md b/healf-crawler/data/now-foods-l-lysine-1-000-mg.md new file mode 100644 index 0000000..79a7d80 --- /dev/null +++ b/healf-crawler/data/now-foods-l-lysine-1-000-mg.md @@ -0,0 +1,36 @@ +# L-Lysine 1,000 mg + +> Source: https://healf.com/products/now-foods-l-lysine-1-000-mg + +**Brand:** NOW Foods | **Price:** £8.99 – £16.99 + +## Description + +**Key Benefits** + +- Delivers L-Lysine, an essential amino acid your body needs every day. +- Supports the building and maintenance of body proteins. +- Formulated for purity and easy absorption in every tablet. + +Start strong with L-Lysine 1,000 mg from NOW Foods—an easy way to top up your daily intake of this essential amino acid. Because your body can’t make L-Lysine on its own, it’s important to get it from your diet or supplements. L-Lysine plays a key role in protein synthesis, helping your body build and maintain healthy tissues. Each tablet is crafted with L-Lysine Hydrochloride for reliable quality and absorption, so you can support your daily nutritional needs with confidence. + +## Ingredients + +L-Lysine (from 1,270 mg L-Lysine Hydrochloride), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide), Stearic Acid (Vegetable Source), Vegetarian Coating, Croscarmellose Sodium, Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 tablet 1 to 2 times daily. + + ​Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-tryptophan-500mg.md b/healf-crawler/data/now-foods-l-tryptophan-500mg.md new file mode 100644 index 0000000..a61ef09 --- /dev/null +++ b/healf-crawler/data/now-foods-l-tryptophan-500mg.md @@ -0,0 +1,38 @@ +# L-Tryptophan 500mg + +> Source: https://healf.com/products/now-foods-l-tryptophan-500mg + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key benefits** + +- Delivers 500 mg of L-Tryptophan in every capsule. +- Essential amino acid—your body can’t make it on its own. +- Formulated without common allergens for peace of mind. + +NOW Foods L-Tryptophan 500mg offers a straightforward way to add this essential amino acid to your day. Each capsule provides 500 mg of free-form L-Tryptophan, a building block your body needs but can only get from food or supplements. Carefully tested for quality and purity, this formula is free from wheat, gluten, soy, milk, egg, fish, shellfish, tree nut, and sesame—making it a versatile choice for a range of dietary needs. + +## Ingredients + +L-Tryptophan (Free-Form) (1 g), Hypromellose (Cellulose Capsule), Rice Flour, Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Stearic Acid (Vegetable Source)) + +## Suggested Use + +Take 1-2 capsules 2 to 3 times daily on an empty stomach, with final dose at bedtime, or as directed by your physician. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication (especially antidepressants such as SSRIs and MAOIs), or have a medical condition. May cause drowsiness. Do not use with alcoholic beverages or while operating heavy machinery. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-tyrosine-500mg.md b/healf-crawler/data/now-foods-l-tyrosine-500mg.md new file mode 100644 index 0000000..78daceb --- /dev/null +++ b/healf-crawler/data/now-foods-l-tyrosine-500mg.md @@ -0,0 +1,35 @@ +# L-Tyrosine 500mg + +> Source: https://healf.com/products/now-foods-l-tyrosine-500mg + +**Brand:** NOW Foods | **Price:** £8.99 + +## Description + +**Key benefits** + +- Each capsule delivers 500 mg of free-form L-Tyrosine. +- Conditionally indispensable amino acid for everyday wellbeing. +- Formulated without common allergens for peace of mind. + +NOW Foods L-Tyrosine 500mg offers a straightforward way to add this amino acid to your day. With a clean, allergen-conscious formula, it’s a versatile choice for a range of dietary needs—no wheat, gluten, soy, milk, egg, fish, shellfish, tree nut, or sesame ingredients included. + +## Ingredients + +L-Tyrosine (Free-Form), Capsule Shell (Hypromellose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily, preferably between meals. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Persons with thyroid disease (hyperthyroidism), melanoma, or those taking MAO inhibitors or other mood altering medications should seek the advice of a physician before consuming this product. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-l-tyrosine-750mg-extra-strength.md b/healf-crawler/data/now-foods-l-tyrosine-750mg-extra-strength.md new file mode 100644 index 0000000..68644b3 --- /dev/null +++ b/healf-crawler/data/now-foods-l-tyrosine-750mg-extra-strength.md @@ -0,0 +1,38 @@ +# L-Tyrosine 750mg Extra Strength + +> Source: https://healf.com/products/now-foods-l-tyrosine-750mg-extra-strength + +**Brand:** NOW Foods | **Price:** £10.99 + +## Description + +**Key Benefits** + +- Delivers 750 mg of L-Tyrosine in every capsule. +- Extra strength formula for convenient daily support. +- Made without common allergens for broad suitability. + +Start your day with the support of L-Tyrosine 750mg Extra Strength from NOW Foods. Each capsule offers a high-strength serving of this conditionally indispensable amino acid, designed for those seeking a simple way to top up their daily intake. Free from wheat, gluten, soy, milk, egg, fish, shellfish, and tree nuts, it fits easily into a variety of lifestyles and dietary preferences. + +## Ingredients + +L-Tyrosine (Free-Form), Cellulose Capsule, Rice Flour, Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily, preferably between meals. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Persons with thyroid disease (hyperthyroidism), melanoma, or those taking MAO inhibitors or other mood altering medications should seek the advice of a physician before consuming this product. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-lavender-essential-oil-blend-organic-roll-on.md b/healf-crawler/data/now-foods-lavender-essential-oil-blend-organic-roll-on.md new file mode 100644 index 0000000..a39fa69 --- /dev/null +++ b/healf-crawler/data/now-foods-lavender-essential-oil-blend-organic-roll-on.md @@ -0,0 +1,32 @@ +# Lavender Essential Oil Blend Organic Roll-On + +> Source: https://healf.com/products/now-foods-lavender-essential-oil-blend-organic-roll-on + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Organic lavender oil blend. +- Roll-on application format. +- No synthetic fragrances. + + +Lavender Essential Oil Blend Organic Roll-On provides calming and soothing aromatic attributes in a roll-on format. It contains an organic lavender essential oil blend that undergoes analytical testing for identity, purity, and adulteration, contains no synthetic fragrances or added chemicals, and follows NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\* & Lavandula Angustifolia (Lavender) Oil\*. + +\*Certi­fied Organic + +## Suggested Use + +Apply to the wrists, nape of neck, temples, or other desired area for a relaxing, calming and comforting scent. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes.\n + +\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-liposomal-vitamin-c-1-000-mg.md b/healf-crawler/data/now-foods-liposomal-vitamin-c-1-000-mg.md new file mode 100644 index 0000000..3430298 --- /dev/null +++ b/healf-crawler/data/now-foods-liposomal-vitamin-c-1-000-mg.md @@ -0,0 +1,37 @@ +# Liposomal Vitamin C 1,000 mg + +> Source: https://healf.com/products/now-foods-liposomal-vitamin-c-1-000-mg + +**Brand:** NOW Foods | **Price:** £18.99 + +## Description + +**Key Benefits** + +- Helps keep your immune system working at its best, thanks to vitamin C. +- Supports normal collagen formation for healthy skin, bones, and more. +- Protects cells from oxidative stress, so you can feel your best every day. +- Liposomal delivery designed for superior absorption and utilisation. + +Start your day with confidence—Liposomal Vitamin C 1,000 mg from NOW Foods delivers vitamin C in a highly absorbable PureWay-C™ liposomal form. Vitamin C contributes to the normal function of the immune system, helping you stay on top of your daily routine. It also supports normal collagen formation, which is essential for the health of your skin, bones, cartilage, gums, teeth, and blood vessels. Plus, vitamin C helps protect your cells from oxidative stress. The liposomal delivery system is designed to enhance absorption and retention, so you get the most from every capsule. Choose a supplement that fits seamlessly into your lifestyle and supports your everyday wellbeing. + +## Ingredients + +Vitamin C (Liposomal PureWay-C™), Hypromellose (Cellulose Capsule), Phospholipids (from Sunflower Lecithin), Rice Flour, Fatty Acids (from Rice Bran), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide), Citrus Bioflavonoids + +## Suggested Use + +Take 2 capsules daily with a meal. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-liquid-chlorophyll.md b/healf-crawler/data/now-foods-liquid-chlorophyll.md new file mode 100644 index 0000000..1944442 --- /dev/null +++ b/healf-crawler/data/now-foods-liquid-chlorophyll.md @@ -0,0 +1,37 @@ +# Liquid Chlorophyll + +> Source: https://healf.com/products/now-foods-liquid-chlorophyll + +**Brand:** NOW Foods | **Price:** £17.99 + +## Description + +**Key Benefits** + +- Enjoy a naturally minty, refreshing taste in every serving. +- Over 90 servings—easy to add to your daily routine. + +Start your day with a cool burst of mint and the vibrant green of Liquid Chlorophyll. This water-soluble formula features sodium copper chlorophyllin, a stable form of chlorophyll sourced from plants and algae. Each teaspoon delivers 100 mg of this plant-derived compound, making it a simple way to bring a touch of nature to your glass. With its crisp flavour and generous serving count, Liquid Chlorophyll is a refreshing addition to your daily habits—perfect for those seeking a plant-based boost. + +## Ingredients + +Sodium Copper Chlorophyllin (Chlorophyll), Sodium (Elemental) (from Sodium Copper Chlorophyllin), Copper (Elemental) (from Sodium Copper Chlorophyllin), Vegetable Glycerin, De-ionized Water, Peppermint Oil, Preservative (Potassium Sorbate) + +## Suggested Use + +Take 1 teaspoon (5 mL) daily in 8 oz. of water or juice. + + Shake well before use. Refrigerate after opening. + + Note: Chlorophyll contains a green pigment that could stain your clothing. Handle with care. Chlorophyll may also stain teeth when taken undiluted. Use only as directed. + + For adults only. Consult a physician if pregnant/nursing, taking medication, or having a medical condition. Keep out of reach of children. When taken orally, chlorophyll may cause diarrhoea or green discolouration of urine or faeces. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-lutein-double-strength-20-mg-veg-capsules.md b/healf-crawler/data/now-foods-lutein-double-strength-20-mg-veg-capsules.md new file mode 100644 index 0000000..7f814ac --- /dev/null +++ b/healf-crawler/data/now-foods-lutein-double-strength-20-mg-veg-capsules.md @@ -0,0 +1,26 @@ +# Lutein Double Strength - 20 mg + +> Source: https://healf.com/products/now-foods-lutein-double-strength-20-mg-veg-capsules + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +#### **Key Benefits** + +- Double strength formula delivers 20 mg lutein per capsule. +- Plant-based lutein, naturally sourced from marigold flowers. +- Simple addition to your daily wellbeing routine. +- Convenient, once-daily capsule for everyday support. + +NOW Foods Lutein Double Strength is made with lutein from marigold flowers, offering a natural and pure source in a high-strength formula. + +## Ingredients + +Lutein (Free Lutein) (from Lutein Esters) (from Marigold Flowers Extract) (Tagetes erecta), Cellulose (Capsule), Stearic Acid (Vegetable Source), Colour (Beet Powder), Antioxidant (Ascorbyl Palmitate) + +## Suggested Use + +Take 1 capsule daily with a fat-containing meal. + + Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-lutein-zeaxanthin-softgels.md b/healf-crawler/data/now-foods-lutein-zeaxanthin-softgels.md new file mode 100644 index 0000000..f31d3de --- /dev/null +++ b/healf-crawler/data/now-foods-lutein-zeaxanthin-softgels.md @@ -0,0 +1,24 @@ +# Lutein & Zeaxanthin + +> Source: https://healf.com/products/now-foods-lutein-zeaxanthin-softgels + +**Brand:** NOW Foods | **Price:** £17.99 + +## Description + +#### **Key Benefits** + +- Start your day with carotenoids sourced from marigold flowers. +- Each softgel delivers 25 mg Lutein and 5 mg Zeaxanthin for easy daily support. +- Simple softgel format fits seamlessly into your routine. +- Designed for everyday wellbeing as part of a balanced lifestyle. + +NOW Foods Lutein & Zeaxanthin Softgels offer a convenient way to add these naturally occurring carotenoids to your diet—ideal for those looking to support their daily wellness journey. + +## Ingredients + +Lutein (from Marigold Flowers Extract) (Tagetes erecta) (Lutemax 2020), Zeaxanthin (from Marigold Flowers Extract) (Tagetes erecta) (Lutemax 2020), Sunflower Oil, Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water], Mixed Tocopherols (from Non-GMO **Soy (Soybeans)** Oil) + +## Suggested Use + +Take 1 softgel daily with a fat-containing meal. diff --git a/healf-crawler/data/now-foods-maca-500-mg.md b/healf-crawler/data/now-foods-maca-500-mg.md new file mode 100644 index 0000000..03098ea --- /dev/null +++ b/healf-crawler/data/now-foods-maca-500-mg.md @@ -0,0 +1,34 @@ +# Maca 500 mg + +> Source: https://healf.com/products/now-foods-maca-500-mg + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Rooted in Peruvian tradition as a nourishing food. + +Bring a touch of the Andes to your daily routine. Maca (Lepidium meyenii) is a root vegetable native to the high-altitude regions of Peru, where it has been enjoyed for generations as a staple food. NOW® Maca delivers 500 mg of pure maca root in every capsule, carefully sourced and sun-dried at elevation before being finely milled and encapsulated. This gentle process preserves the natural qualities of maca, offering you a simple way to experience this time-honoured plant as part of your balanced lifestyle. + +## Ingredients + +Maca (Lepidium meyenii) (Root), Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-maca-750-mg.md b/healf-crawler/data/now-foods-maca-750-mg.md new file mode 100644 index 0000000..9dfc278 --- /dev/null +++ b/healf-crawler/data/now-foods-maca-750-mg.md @@ -0,0 +1,38 @@ +# Maca 750 mg + +> Source: https://healf.com/products/now-foods-maca-750-mg + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key benefits** + +- Delivers 750 mg of concentrated maca root per capsule. +- Gelatinised for easy digestion and absorption. +- Free from common allergens for peace of mind. + +NOW Foods Maca 750 mg features raw, gelatinised maca (Lepidium meyenii) grown high in the Peruvian Andes. The gentle gelatinisation process removes starch, creating a concentrated, vegetarian-friendly powder. Each capsule is crafted to fit seamlessly into your day and is free from yeast, wheat, gluten, soy, milk, egg, fish, shellfish, and tree nut ingredients. + +## Ingredients + +Organic Raw Maca Root (6:1 Concentrate) (Lepidium meyenIi) (Gelatinized - vegetarian) (Equivalent to 4,500 mg of fresh Maca Root), Capsule Shell (Hypromellose), Capsule Shell (Hydroxypropyl Cellulose), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Stearic Acid (Vegetable Source)) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-macadamia-nuts-dry-roasted-sea-salted.md b/healf-crawler/data/now-foods-macadamia-nuts-dry-roasted-sea-salted.md new file mode 100644 index 0000000..cd06e03 --- /dev/null +++ b/healf-crawler/data/now-foods-macadamia-nuts-dry-roasted-sea-salted.md @@ -0,0 +1,35 @@ +# Macadamia Nuts - Dry Roasted & Sea Salted + +> Source: https://healf.com/products/now-foods-macadamia-nuts-dry-roasted-sea-salted + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key benefits** + +- Distinctive buttery flavour in every bite. +- 3g fibre per serving for a wholesome snack. +- Vegan-friendly and simply seasoned with sea salt. + +Enjoy the irresistible taste and texture of NOW Foods’ Macadamia Nuts – Dry Roasted & Sea Salted. Each handful delivers a creamy crunch, lightly finished with sea salt for a moreish treat. With 3g of fibre per serving, these premium nuts are a delicious way to add variety to your snacking or to elevate your favourite recipes. Perfect for plant-based diets and anyone seeking a naturally flavourful bite. + +## Ingredients + +Dry Roasted **Macadamia (Nuts)** **Nuts**, Sea Salt + +## Suggested Use + +NOW Real Food® Macadamias are most often enjoyed as a delicious snack or as a crunchy addition to breads and desserts and make an excellent, savory crust for chicken and seafood dishes. + + +Refrigeration recommended after opening. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-magnesium-citrate.md b/healf-crawler/data/now-foods-magnesium-citrate.md new file mode 100644 index 0000000..820870b --- /dev/null +++ b/healf-crawler/data/now-foods-magnesium-citrate.md @@ -0,0 +1,25 @@ +# Magnesium Citrate + +> Source: https://healf.com/products/now-foods-magnesium-citrate + +**Brand:** NOW Foods | **Price:** £10.99 – £20.99 + +## Description + +**Key Benefits** + +- Helps reduce tiredness and fatigue, so you can keep up with life. +- Supports normal muscle and nervous system function for daily wellbeing. +- Contributes to the maintenance of strong bones and healthy teeth. +- Plays a part in energy-yielding metabolism and psychological balance. + +Magnesium citrate is known for its excellent bioavailability, making it a smart choice for those seeking effective magnesium support. Magnesium also contributes to normal protein synthesis, electrolyte balance, and has a role in cell division—helping you stay on top of your day, every day. + +## Ingredients + +Magnesium (elemental) (from 2,667 mg Magnesium Citrate), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 3 capsules daily, preferably in divided doses with food. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-magnesium-glycinate-180-tabs.md b/healf-crawler/data/now-foods-magnesium-glycinate-180-tabs.md new file mode 100644 index 0000000..813738d --- /dev/null +++ b/healf-crawler/data/now-foods-magnesium-glycinate-180-tabs.md @@ -0,0 +1,38 @@ +# Magnesium Glycinate + +> Source: https://healf.com/products/now-foods-magnesium-glycinate-180-tabs + +**Brand:** NOW Foods | **Price:** £19.99 + +## Description + +**Key Benefits** + +- Helps reduce tiredness and fatigue so you can keep moving. +- Supports normal muscle function and helps maintain strong bones. +- Contributes to the healthy functioning of your nervous system. +- Glycinate form for gentle, effective absorption. + +Start each day with confidence—Magnesium Glycinate from NOW Foods delivers 200mg of highly absorbable magnesium to help you feel energised and balanced. Magnesium contributes to normal energy-yielding metabolism and supports the reduction of tiredness and fatigue, making it a smart choice for busy lifestyles. + +Magnesium also plays a vital role in muscle function, bone maintenance, and the normal functioning of the nervous system. With its gentle glycinate form, this supplement is designed for easy absorption, helping you maintain your natural rhythm and wellbeing—day in, day out. + +## Ingredients + +Magnesium (Elemental) (from 2000 mg Magnesium Bisglycinate (Albion™), Acidity Regulator (Citric Acid), Capsule Shell (Hydroxypropyl Cellulose), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide), Vegetarian Coating [Hypromellose (Cellulose), Sunflower Lecithin, Triethyl Citrate, Sunflower Oil] + +## Suggested Use + +Take 2 tablets 1 to 2 times daily with food. + Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-magnesium-malate-1-000-mg.md b/healf-crawler/data/now-foods-magnesium-malate-1-000-mg.md new file mode 100644 index 0000000..6d4af37 --- /dev/null +++ b/healf-crawler/data/now-foods-magnesium-malate-1-000-mg.md @@ -0,0 +1,39 @@ +# Magnesium Malate 1,000 mg + +> Source: https://healf.com/products/now-foods-magnesium-malate-1-000-mg + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +**Key Benefits** + +- Helps reduce tiredness and fatigue, so you can feel your best. +- Supports normal muscle function and energy-yielding metabolism. +- Contributes to the normal functioning of the nervous system and psychological function. +- Plays a role in maintaining electrolyte balance and normal bones. + +Start your day with confidence—magnesium is an essential mineral that’s involved in over 300 processes in your body. It helps reduce tiredness and fatigue, supports normal muscle function, and contributes to the normal functioning of your nervous system. Magnesium also plays a part in maintaining electrolyte balance, energy-yielding metabolism, and the health of your bones and teeth. + +NOW Foods Magnesium Malate 1,000 mg blends magnesium with malic acid, a natural compound found in fruits, to create a form that’s easy for your body to absorb. Malic acid is known for its role in the Krebs cycle, helping your body turn food into energy. Each serving delivers 1,000 mg of magnesium malate, giving you reliable support for your active lifestyle. + +## Ingredients + +Magnesium (Elemental) (from 1000 mg Magnesium Malate), Capsule Shell (Hydroxypropyl Cellulose), Bulking Agent (Microcrystalline Cellulose), Stearic Acid (Vegetable Source), Croscarmellose Sodium, Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide), Vegetarian Coating [Hypromellose (Cellulose), Calcium Carbonate, Glycerin] + +## Suggested Use + +Take 1 tablet 3 times daily, preferably with food. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-magtein.md b/healf-crawler/data/now-foods-magtein.md new file mode 100644 index 0000000..b53de3c --- /dev/null +++ b/healf-crawler/data/now-foods-magtein.md @@ -0,0 +1,25 @@ +# Magtein + +> Source: https://healf.com/products/now-foods-magtein + +**Brand:** NOW Foods | **Price:** £31.99 + +## Description + +**Key Benefits** + +- Magnesium supports normal psychological and nervous system function—ideal for busy minds. +- Helps reduce tiredness and fatigue, so you can keep up with life's demands. +- Contributes to normal muscle function, and helps maintain healthy bones and teeth. +- Plays a role in normal protein synthesis and cell division, supporting your body's daily needs. + +Magtein by NOW Foods features magnesium L-threonate, a form of magnesium designed for effective absorption. Magnesium is an essential mineral that contributes to normal psychological function and the healthy functioning of your nervous system. It also supports energy release, helps reduce tiredness and fatigue, and plays a part in maintaining normal muscle function, bones, and teeth. With Magtein, you can support your wellbeing and keep your body and mind in balance. + +## Ingredients + +Magtein® (Magnesium L-Threonate) (2 g), Magnesium (Elemental) (from 2,000 mg Magtein® Magnesium L-Threonate), Hypromellose (Cellulose Capsule), Rice Flour, Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 3 capsules daily. +Best when taken in divided doses (take 1 capsule in the morning and take 2 capsules two hours before sleep). diff --git a/healf-crawler/data/now-foods-mannose-cranberry.md b/healf-crawler/data/now-foods-mannose-cranberry.md new file mode 100644 index 0000000..f777927 --- /dev/null +++ b/healf-crawler/data/now-foods-mannose-cranberry.md @@ -0,0 +1,38 @@ +# Mannose Cranberry + +> Source: https://healf.com/products/now-foods-mannose-cranberry + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +**Key benefits** + +- Brings together D-mannose and whole cranberry fruit. +- Features naturally occurring proanthocyanidins (PACs). +- Crafted with a focus on purity and simplicity. + +NOW Foods Mannose Cranberry pairs D-mannose with whole cranberry fruit, offering a unique profile of naturally occurring proanthocyanidins (PACs). This thoughtful blend is free from common allergens—including wheat, gluten, soy, milk, egg, fish, shellfish, and tree nuts—making it a gentle choice for a variety of lifestyles. Enjoy a straightforward formula designed to fit seamlessly into your daily wellbeing routine. + +## Ingredients + +D-Mannose, Cranberry (Vaccinium macrocarpon) (Fruit) [with Proanthocyanidins (PACs)] (**Fish**), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Stearic Acid (Vegetable Source)) + +## Suggested Use + +Take 1-2 capsules twice daily. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-mega-d-3-mk-7.md b/healf-crawler/data/now-foods-mega-d-3-mk-7.md new file mode 100644 index 0000000..a64a29c --- /dev/null +++ b/healf-crawler/data/now-foods-mega-d-3-mk-7.md @@ -0,0 +1,37 @@ +# Mega D-3 & MK-7 + +> Source: https://healf.com/products/now-foods-mega-d-3-mk-7 + +**Brand:** NOW Foods | **Price:** £16.99 – £21.99 + +## Description + +**Key Benefits** + +- Supports the maintenance of normal bones and teeth. +- Helps keep your muscles and immune system working as they should. +- Contributes to normal blood clotting and calcium absorption. + +Feel confident in your daily routine with NOW® Mega D-3 & MK-7. This expertly balanced blend brings together vitamin D-3 and K-2, two essential nutrients that work in harmony to help you stay at your best. Vitamin D-3 contributes to the maintenance of normal bones, teeth, and muscle function, and supports the normal function of your immune system. Vitamin K-2, in the form of MenaQ7® MK-7, helps maintain normal bones and supports normal blood clotting. Together, they help your body absorb and use calcium effectively, so you can keep moving with ease. Choose Mega D-3 & MK-7 for everyday wellbeing, backed by science and trusted by Healf. + +## Ingredients + +Vitamin K2 (as Menaquinone-7) (MK-7) (MenaQ7®) (from Chickpea), Vitamin D (as D3 Cholecalciferol) (from Lanolin) (5,000 IU), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily with a fat-containing meal. + + Store in a cool, dry place after opening. + + Caution: + For adults only. Do not exceed the recommended dose. Consult physician if pregnant/nursing, taking any anti-coagulants (such as warfarin, Coumadin®, heparin), or other medications (especially topical psoriasis medications or thiazide diuretics), or have a medical condition (especially hypercalcemia, kidney disease, or hyperparathyroidism). Discontinue use two weeks prior to surgery. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-methyl-b-12-5000mcg-120-loz.md b/healf-crawler/data/now-foods-methyl-b-12-5000mcg-120-loz.md new file mode 100644 index 0000000..5353f43 --- /dev/null +++ b/healf-crawler/data/now-foods-methyl-b-12-5000mcg-120-loz.md @@ -0,0 +1,42 @@ +# Methyl B-12 5000 mcg + +> Source: https://healf.com/products/now-foods-methyl-b-12-5000mcg-120-loz + +**Brand:** NOW Foods | **Price:** £24.99 + +## Description + +**Key Benefits** + +- Helps you feel less tired—supports normal energy-yielding metabolism. +- Promotes a healthy nervous system and supports mental focus. +- Features methylcobalamin, the active, easily absorbed form of B-12. +- Perfect for vegetarians, vegans, and anyone seeking daily support. + +Start your day with confidence—Methyl B-12 5000 mcg is designed to help you stay energised and focused. With vitamin B-12 and folate, this supplement supports the normal formation of red blood cells and contributes to the reduction of tiredness and fatigue, so you can keep up with life’s demands. + +Vitamin B-12 and folate also play a role in supporting your nervous system, psychological function, and the normal function of the immune system. Because B-12 is mainly found in animal products, this formula is a smart choice for those on a plant-based diet—helping you maintain your energy and wellbeing, every single day. + +## Ingredients + +Vitamin B-12 (as Methylcobalamin) (5,000 µg), Folate [from Quatrefolic® (6S)-5-MTHF Glucosamine Salt] [400 µg (6S)-5-MTHF], Sweetener (Xylitol), Capsule Shell (Hydroxypropyl Cellulose), Bulking Agent (Microcrystalline Cellulose), Acidity Regulator (Citric Acid), Stearic Acid (Vegetable Source), Natural Flavours, Organic Stevia Leaf Extract (Enzyme-Modified Steviol Glycosides), Organic Monk Fruit Extract + +## Suggested Use + +Take one lozenge daily with a meal. + Chew lozenge or hold in mouth until dissolved and swallow. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + Xylitol is harmful to pets; seek veterinary care immediately if ingestion is suspected. + + + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-methyl-folate-1-000-mcg-90-tabs.md b/healf-crawler/data/now-foods-methyl-folate-1-000-mcg-90-tabs.md new file mode 100644 index 0000000..6fd94a4 --- /dev/null +++ b/healf-crawler/data/now-foods-methyl-folate-1-000-mcg-90-tabs.md @@ -0,0 +1,38 @@ +# Methyl Folate 1,000 mcg + +> Source: https://healf.com/products/now-foods-methyl-folate-1-000-mcg-90-tabs + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key Benefits** + +- Folate supports normal cell division and blood formation. +- Helps maintain normal psychological function and immune system activity. +- Contributes to maternal tissue growth during pregnancy. +- Assists in reducing tiredness and fatigue. + +Feel confident in your daily routine with this highly absorbable methyl folate supplement. Folate is essential for normal cell division, blood formation, and psychological function—key processes that help keep you feeling your best every day. + +Whether you’re planning for pregnancy or simply want to support your wellbeing, methyl folate contributes to maternal tissue growth and helps reduce tiredness and fatigue. It’s the active form of folate, ready for your body to use, and ideal for those who may not get enough from diet alone. Choose NOW Foods Methyl Folate 1,000 mcg for reliable, daily support. + +## Ingredients + +Folate [from Quatrefolic® (6S)-5-MTHF Glucosamine Salt] [1, 000 µg (6S)-5-MTHF], Bulking Agent (Microcrystalline Cellulose), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one tablet daily with a meal. + Store in a cool, dry place after opening. + + For adults only. The elderly and individuals with conditions that may impair vitamin B-12 absorption should frequently check vitamin B-12 status when taking this product as high-dose folic acid may mask vitamin B-12 deficiency. Consult physician if pregnant/nursing, taking medication (especially phenobarbital, phenytoin, primidone, and methotrexate), or have a medical condition (especially any condition involving nutrient malabsorption). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-milk-thistle-extract-maximum-strength-750-mg.md b/healf-crawler/data/now-foods-milk-thistle-extract-maximum-strength-750-mg.md new file mode 100644 index 0000000..30f48e1 --- /dev/null +++ b/healf-crawler/data/now-foods-milk-thistle-extract-maximum-strength-750-mg.md @@ -0,0 +1,37 @@ +# Milk Thistle Extract, Maximum Strength, 750 mg + +> Source: https://healf.com/products/now-foods-milk-thistle-extract-maximum-strength-750-mg + +**Brand:** NOW Foods | **Price:** £22.99 + +## Description + +**Key Benefits** + +- High-strength 750mg milk thistle extract per capsule. +- Standardised to 600mg silymarin flavonoids (80%). +- Ideal for those seeking a concentrated herbal supplement. +- Vegan-friendly and free from common allergens. + +Start your day with the support of a time-honoured botanical. NOW® Foods Milk Thistle Extract, Maximum Strength, brings you a potent dose of milk thistle, standardised to deliver 600mg of silymarin flavonoids in every capsule. This carefully crafted formula is designed for those who value quality and consistency in their supplement routine. Produced in a GMP facility and suitable for a range of dietary needs, it’s a simple way to add a trusted plant extract to your daily wellbeing ritual. + +## Ingredients + +Milk Thistle Extract (Silybum marianum) (Fruit/Seed) (Standardized to 600 mg Silymarin Flavonoids - Equivalent 80%), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-mind-that-energy-essential-oil-blend-roll-on.md b/healf-crawler/data/now-foods-mind-that-energy-essential-oil-blend-roll-on.md new file mode 100644 index 0000000..b305b40 --- /dev/null +++ b/healf-crawler/data/now-foods-mind-that-energy-essential-oil-blend-roll-on.md @@ -0,0 +1,30 @@ +# Mind That Energy Essential Oil Blend Roll-On + +> Source: https://healf.com/products/now-foods-mind-that-energy-essential-oil-blend-roll-on + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Minty essential oil blend. +- Roll-on application format. +- No synthetic fragrances. + + +Mind That Energy Essential Oil Blend Roll-On delivers a minty aroma with balancing, centring, and focusing attributes. It contains a blended essential oil formulation that undergoes analytical testing for identity, purity, and adulteration, with no synthetic fragrances or added chemicals, following NOW® Essential Oils quality standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\*, Mentha Piperita (Peppermint) Oil\*, Citrus Limon (Lemon) Peel Oil\*, Boswellia Carterii (Frankincense) Oil, Rosmarinus Officinalis (Rosemary) Leaf Oil\*, Lavandula Angustifolia (Lavender) Oil\*, Santalum Album (Sandalwood) Oil. \n + +\*Organic ingredient + +## Suggested Use + +Apply to wrists, temple, nape of neck, or other desired area and breathe in deeply to refresh and encourage mental focus. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes. diff --git a/healf-crawler/data/now-foods-n-acetyl-cysteine-nac-1000-mg.md b/healf-crawler/data/now-foods-n-acetyl-cysteine-nac-1000-mg.md new file mode 100644 index 0000000..2d68cb4 --- /dev/null +++ b/healf-crawler/data/now-foods-n-acetyl-cysteine-nac-1000-mg.md @@ -0,0 +1,38 @@ +# N-Acetyl-Cysteine (NAC) 1000 MG + +> Source: https://healf.com/products/now-foods-n-acetyl-cysteine-nac-1000-mg + +**Brand:** NOW Foods | **Price:** £19.99 + +## Description + +**Key Benefits** + +- Delivers 1000 mg of N-acetyl cysteine in each serving. +- Provides a stable, sulphur-containing amino acid. +- Formulated without common allergens for broad suitability. + +Start your routine with confidence—N-Acetyl Cysteine (NAC) offers a reliable form of the amino acid cysteine, a sulphur-based building block found in protein structures. This straightforward formula features only NAC as the active ingredient and is carefully crafted without wheat, gluten, soy, milk, egg, fish, shellfish, tree nut, or sesame, making it a versatile choice for a range of dietary needs. + +## Ingredients + +N-Acetyl Cysteine (NAC) (1 g), Bulking Agent (Microcrystalline Cellulose), Capsule Shell (Hydroxypropyl Cellulose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Croscarmellose Sodium, Vegetarian Coating [Hypromellose (Cellulose), Stearic Acid (Vegetable Source), Sunflower Lecithin, Triethyl Citrate, Sunflower Oil] (**Gluten**), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 tablet 1 to 3 times daily. + + +Store in a cool, dry place after opening. + + +​For adults only. Consult physician if pregnant/nursing, taking medication (especially nitroglycerin), or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-nac-600-mg.md b/healf-crawler/data/now-foods-nac-600-mg.md new file mode 100644 index 0000000..6a81205 --- /dev/null +++ b/healf-crawler/data/now-foods-nac-600-mg.md @@ -0,0 +1,25 @@ +# NAC - 600 mg + +> Source: https://healf.com/products/now-foods-nac-600-mg + +**Brand:** NOW Foods | **Price:** £13.99 + +## Description + +**Key Benefits** + +- Supports your daily wellbeing with N-Acetyl Cysteine (NAC). +- Easy-to-take capsules fit seamlessly into busy lifestyles. +- Ideal for those looking to supplement their diet with NAC. +- Crafted by NOW Foods, known for quality and care. + +Each capsule delivers 600 mg of N-Acetyl Cysteine, making it a straightforward choice for anyone seeking to include this ingredient in their supplement routine. NOW Foods ensures every batch meets high standards, so you can feel confident in your daily pick. + +## Ingredients + +N-Acetyl Cysteine (NAC), Selenium (elemental) (from 5 mg L-Selenomethionine), Hypromellose (cellulose capsule), Stearic Acid (Vegetable Source), Citric Acid And Microcrystalline Cellulose + +## Suggested Use + +Take 1 capsule twice daily. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-nac-acetyl-cysteine-600mg.md b/healf-crawler/data/now-foods-nac-acetyl-cysteine-600mg.md new file mode 100644 index 0000000..e7a7540 --- /dev/null +++ b/healf-crawler/data/now-foods-nac-acetyl-cysteine-600mg.md @@ -0,0 +1,45 @@ +# Nac-Acetyl Cysteine 600mg + +> Source: https://healf.com/products/now-foods-nac-acetyl-cysteine-600mg + +**Brand:** NOW Foods | **Price:** £22.99 + +## Description + +**Key Benefits** + +- Helps protect your cells from everyday oxidative stress. +- Supports your immune system with selenium. +- Contributes to normal thyroid function. +- Delivers 600 mg NAC and 25 mcg selenium in every capsule. + +Start your day with a thoughtful blend of NAC and selenium—two nutrients with unique, complementary roles. NAC is a stable form of the amino acid cysteine, while selenium is an essential trace mineral. Selenium contributes to the protection of cells from oxidative stress, supports the normal function of your immune system, and helps maintain normal thyroid function. Each capsule brings you 600 mg of NAC and 25 mcg of selenium, making it a simple addition to your balanced routine. + +## Ingredients + +N-Acetyl Cysteine (NAC), Selenium (Elemental) (From L-Selenomethionine), Capsule Shell (Hypromellose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Acidity Regulator (Citric Acid), Bulking Agent (Microcrystalline Cellulose) + +## Suggested Use + +Take 1 capsule twice daily. + + +Keep freshness packets in bottle until it is empty. Keep bottle tightly closed at all times in between usage. Natural color variation may occur in this product when exposed to air. Speckling in capsule may occur but does not affect product quality. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Do not eat freshness packets enclosed. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-nattokinase-100mg.md b/healf-crawler/data/now-foods-nattokinase-100mg.md new file mode 100644 index 0000000..a2539d3 --- /dev/null +++ b/healf-crawler/data/now-foods-nattokinase-100mg.md @@ -0,0 +1,28 @@ +# Nattokinase 100mg + +> Source: https://healf.com/products/now-foods-nattokinase-100mg + +**Brand:** NOW Foods | **Price:** £16.99 – £26.99 + +## Description + +**Key Benefits** + +- Provides 2,000 FUs per serving. +- Derived from non-GMO natto. +- Enzyme sourced from fermented soy. + + + +Nattokinase 100 mg delivers an enzyme extracted from natto, a traditional Japanese fermented soy food. Each capsule provides 2,000 FUs (Fibrinolytic Units), a measure of enzyme activity. + + +This soy-derived, non-GMO extract is supplied in a simple capsule. Manufactured to GMP quality standards for consistency, it offers a convenient, standardised option for those who choose nattokinase. + +## Ingredients + +Nattokinase (2,000 FU) (Enzyme from **Natto (Soy)** Extract) (**Soy (Soybeans)** Derived), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily on an empty stomach.\n\n diff --git a/healf-crawler/data/now-foods-omega-3-1000mg-100-sgels.md b/healf-crawler/data/now-foods-omega-3-1000mg-100-sgels.md new file mode 100644 index 0000000..ce1636e --- /dev/null +++ b/healf-crawler/data/now-foods-omega-3-1000mg-100-sgels.md @@ -0,0 +1,35 @@ +# Omega-3 Fish Oil + +> Source: https://healf.com/products/now-foods-omega-3-1000mg-100-sgels + +**Brand:** NOW Foods | **Price:** £3.49 – £29.99 + +## Description + +**Key Benefits** + +- With vitamin E to help protect your cells from oxidative stress. +- Non-GMO and molecularly distilled for quality and purity. + +Each Omega-3 Fish Oil softgel delivers 1,000mg of fish oil, plus vitamin E from sunflower to support your cells’ natural defences. Carefully sourced from anchovies, sardines, and tuna, this formula is designed for those seeking a straightforward, high-quality fish oil supplement. The addition of d-alpha tocopherol (vitamin E) helps maintain cell protection, so you can feel good about your daily routine. + +## Ingredients + +**Fish Oil** Concentrate (**Anchovies, Sardines** and **Tuna**) (2,000 mg), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water], D-alpha Tocopherol (from Sunflower) + +## Suggested Use + +Take 2 softgels twice daily with food. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + Store in a cool, dry place after opening. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-omega-3-6-9-1000mg.md b/healf-crawler/data/now-foods-omega-3-6-9-1000mg.md new file mode 100644 index 0000000..79cc528 --- /dev/null +++ b/healf-crawler/data/now-foods-omega-3-6-9-1000mg.md @@ -0,0 +1,40 @@ +# Omega 3-6-9 1000mg + +> Source: https://healf.com/products/now-foods-omega-3-6-9-1000mg + +**Brand:** NOW Foods | **Price:** £9.99 + +## Description + +**Key benefits** + +- With ALA, which contributes to the maintenance of normal blood cholesterol levels. +- Features Omega-3, Omega-6, and Omega-9 fatty acids from natural sources. +- Includes cold-pressed, organic flax seed oil for a pure, gentle approach. + +NOW Foods Omega 3-6-9 1000mg brings together flax seed, evening primrose, canola, black currant, and pumpkin seed oils for a balanced mix of essential fatty acids. Alpha-linolenic acid (ALA), an Omega-3 from flax seed oil, helps maintain normal blood cholesterol levels—making it a smart addition to your daily routine. + +This thoughtfully crafted blend also provides linoleic acid (Omega-6) and oleic acid (Omega-9) from a variety of cold-pressed plant oils. Each easy-to-take softgel offers a convenient way to include these important fatty acids as part of a balanced diet and healthy lifestyle. + +## Ingredients + +L-Tyrosine (Free-Form), Cellulose Capsule, Rice Flour, Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 2 softgels daily with a meal. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if taking medication or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-omega-3-molecularly-distilled-fish-softgels-1000mg-180-120.md b/healf-crawler/data/now-foods-omega-3-molecularly-distilled-fish-softgels-1000mg-180-120.md new file mode 100644 index 0000000..99a09bb --- /dev/null +++ b/healf-crawler/data/now-foods-omega-3-molecularly-distilled-fish-softgels-1000mg-180-120.md @@ -0,0 +1,43 @@ +# Omega-3 Molecularly Distilled Fish Softgels 1000mg 180/120 + +> Source: https://healf.com/products/now-foods-omega-3-molecularly-distilled-fish-softgels-1000mg-180-120 + +**Brand:** NOW Foods | **Price:** £13.99 + +## Description + +**Key Benefits** + +- With EPA and DHA to help maintain normal heart function. +- Delivers 180 mg EPA and 120 mg DHA in every serving. +- Molecularly distilled for exceptional purity and quality. + +Start your day with confidence—Omega-3 Molecularly Distilled Fish Softgels 1000mg 180/120 from NOW Foods provide a concentrated source of fish oil, delivering 180 mg of EPA and 120 mg of DHA per softgel. These essential Omega-3 fatty acids are known to support the normal function of your heart, making them a smart addition to your daily routine. + +Each softgel is molecularly distilled and carefully tested for purity, including screening for PCBs, dioxins, mercury, and other heavy metals. Enjoy a clean, dependable source of Omega-3s as part of a balanced diet and healthy lifestyle. + +## Ingredients + +**Fish Oil (Fish)** Concentrate (**Anchovies (Fish)**, **Sardines (Fish)**, **Tuna (Fish)**) (2 g): Eicosapentaenoic Acid (360 mg) Docosahexaenoic Acid (240 mg) (**Fish**), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water], Antioxidant (D-alpha Tocopherol (from Sunflower)) + +## Suggested Use + +Take 2 softgels twice daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Contains fish oil (anchovies, sardines, tuna) and fish gelatin (tilapia, basa). + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-oralbiotic-1-billion-cfu.md b/healf-crawler/data/now-foods-oralbiotic-1-billion-cfu.md new file mode 100644 index 0000000..d927b8a --- /dev/null +++ b/healf-crawler/data/now-foods-oralbiotic-1-billion-cfu.md @@ -0,0 +1,43 @@ +# OralBiotic, 1 Billion CFU + +> Source: https://healf.com/products/now-foods-oralbiotic-1-billion-cfu + +**Brand:** NOW Foods | **Price:** £14.99 + +## Description + +**Key Benefits** + +- With xylitol and sorbitol to help maintain tooth mineralisation when used instead of sugar. +- Formulated for both adults and children. + + + +Start your day with a fresh approach to oral care. OralBiotic® brings together BLIS K12®, a unique strain of Streptococcus salivarius found naturally in the mouth, and carefully selected sugar replacers. + +Each lozenge is crafted with DNA-verified BLIS K12® and includes xylitol and sorbitol, which contribute to the maintenance of tooth mineralisation when used in place of sugar. The gentle strawberry flavour makes it a pleasant addition to your daily routine. + +NOW® Foods OralBiotic® is suitable for the whole family, offering a simple way to support your oral care habits every day. + +## Ingredients + +Streptococcus salivarius K12 (BLIS K12®) (1 Billion CFU), FOS (Fructooligosaccharides), Sweetener (Xylitol), Sweetener (Sorbitol), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Silicon Dioxide), Stearic Acid (Vegetable Source), Natural Strawberry Flavour, Colour (Beet Powder) + +## Suggested Use + +Adults: Take 2 lozenges 1 to 4 times daily. Children (age 2 & up): Take 2 lozenges 1 to 5 times daily. Allow lozenge to dissolve slowly and completely in mouth and swallow. + + REFRIGERATE TO MAINTAIN POTENCY. Keep lid tightly sealed. Keep freshness packet in bottle. + + Caution: Consult physician if pregnant/nursing, taking medication (especially immune-suppressing drugs), or have a medical condition (especially if immune system is compromised). Because some antibiotics may inactivate S. salivarius, take at least 2 hours before or after taking antibiotic medications. Keep out of reach of children. + + Xylitol is harmful to pets; seek veterinary care immediately if ingestion is suspected. Learn more about pet safety. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-oregano-oil.md b/healf-crawler/data/now-foods-oregano-oil.md new file mode 100644 index 0000000..d86d8e6 --- /dev/null +++ b/healf-crawler/data/now-foods-oregano-oil.md @@ -0,0 +1,36 @@ +# Oregano Oil + +> Source: https://healf.com/products/now-foods-oregano-oil + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key Benefits** + +- Gentle, targeted release with enteric-coated softgels. +- Standardised to 55% carvacrol for consistent quality. +- Blended with ginger and fennel oils for a balanced botanical profile. + +Bring a touch of tradition to your daily routine with NOW® Oregano Oil Softgels. Each softgel delivers a carefully standardised oregano oil, providing at least 55% carvacrol for reliable quality in every dose. The enteric coating helps the oil pass through the stomach and reach the intestines, supporting a comfortable experience without the strong taste of oregano. Blended with ginger and fennel oils, this formula offers a gentle, balanced approach to your everyday wellbeing. + +## Ingredients + +Oregano Oil (Origanum vulgare) (Min. 55% Carvacrol), Fennel Oil (Foeniculum vulgare), Ginger Oil (Zingiber officinale), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water, Enteric Coating, Carob], Extra Virgin Olive Oil + +## Suggested Use + +Take 1 softgel 1 to 3 times daily with food. + + Store in a cool, dry place after opening. + + Caution: For adults only. Do not take this product if you are allergic to oregano, fennel or ginger. Not recommended for pregnant or nursing women. Consult physician if taking medication or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-organic-inulin-prebiotic-pure-powder.md b/healf-crawler/data/now-foods-organic-inulin-prebiotic-pure-powder.md new file mode 100644 index 0000000..bc82695 --- /dev/null +++ b/healf-crawler/data/now-foods-organic-inulin-prebiotic-pure-powder.md @@ -0,0 +1,41 @@ +# Organic Inulin Prebiotic Pure Powder + +> Source: https://healf.com/products/now-foods-organic-inulin-prebiotic-pure-powder + +**Brand:** NOW Foods | **Price:** £9.49 + +## Description + +**Key benefits** + +- 3.3 g fibre per serving—easy to add to your day. +- Pure organic inulin (FOS) from blue agave. +- Mildly sweet and low glycaemic—versatile for food and drinks. + +Discover a gentle, plant-based fibre with NOW Foods Organic Inulin Prebiotic Pure Powder. Sourced from organic blue agave, this soluble fibre blends smoothly into your favourite recipes, hot drinks, or smoothies. Each level teaspoon delivers 3.3 grams of fibre, helping you meet your daily needs as part of a balanced diet. With its naturally mild sweetness and low glycaemic impact, it’s an effortless way to support your wellbeing every day. + +## Ingredients + +Organic Inulin (FOS) (from Blue Agave) + +## Suggested Use + +Take 1 level teaspoon 1 to 3 times daily. Mix into your favorite beverage or food. Begin with 1 teaspoon a day and slowly increase dosage to limit GI discomfort. + + +Store in a cool, dry place after opening. + + +For adults only. May cause mild transient GI discomfort. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Do not eat freshness packet enclosed. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-organic-monk-fruit-liquid.md b/healf-crawler/data/now-foods-organic-monk-fruit-liquid.md new file mode 100644 index 0000000..1d5e4b8 --- /dev/null +++ b/healf-crawler/data/now-foods-organic-monk-fruit-liquid.md @@ -0,0 +1,25 @@ +# Organic Monk Fruit Liquid + +> Source: https://healf.com/products/now-foods-organic-monk-fruit-liquid + +**Brand:** NOW Foods | **Price:** £10.99 + +## Description + +**Key benefits** + +- Made with 100% organic monk fruit extract. +- Delivers up to 200 times the sweetness of sugar. +- Zero-calorie way to add sweetness to drinks and recipes. + +NOW Foods Organic Monk Fruit Liquid is your go-to for a naturally sweet taste—without the calories. Just a few drops bring vibrant sweetness to your favourite teas, coffees, smoothies, or baking, all while keeping flavours clean and simple. Enjoy a plant-based alternative to sugar that blends smoothly and leaves minimal aftertaste, so you can sweeten your routine with confidence. + +## Ingredients + +De-ionized Water, Certied Organic Monk Fruit (Luo Han Guo) Extract, 11% Organic Cane Alcohol + +## Suggested Use + +Use to naturally sweeten your favorite beverages and foods. Sweeten to taste using 5 to 8 drops.\n + +\nShake well before using. diff --git a/healf-crawler/data/now-foods-pantothenic-acid-500-mg.md b/healf-crawler/data/now-foods-pantothenic-acid-500-mg.md new file mode 100644 index 0000000..679454f --- /dev/null +++ b/healf-crawler/data/now-foods-pantothenic-acid-500-mg.md @@ -0,0 +1,37 @@ +# Pantothenic Acid 500 mg + +> Source: https://healf.com/products/now-foods-pantothenic-acid-500-mg + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Supports your natural energy with pantothenic acid (vitamin B5). +- Helps reduce tiredness and fatigue, so you can stay on top form. +- Contributes to normal mental performance and focus. +- Plays a role in the normal synthesis and metabolism of steroid hormones, vitamin D, and some neurotransmitters. + +Start your day with confidence—pantothenic acid, also known as vitamin B5, is found in nearly every living cell and is essential for helping your body convert food into energy. NOW® Foods Pantothenic Acid 500mg is expertly formulated to support your normal energy-yielding metabolism and help reduce tiredness and fatigue. With authorised claims for mental performance and the normal synthesis of steroid hormones, vitamin D, and neurotransmitters, this daily supplement is a simple way to help you feel your best. Each capsule is designed for easy absorption, so you can meet your daily needs with ease. + +## Ingredients + +Pantothenic Acid (Vitamin B-5) (from Calcium Pantothenate), Calcium (from Calcium Pantothenate), Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 1 capsule daily with a meal. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-peppermint-essential-oil-blend-organic-roll-on.md b/healf-crawler/data/now-foods-peppermint-essential-oil-blend-organic-roll-on.md new file mode 100644 index 0000000..680db40 --- /dev/null +++ b/healf-crawler/data/now-foods-peppermint-essential-oil-blend-organic-roll-on.md @@ -0,0 +1,32 @@ +# Peppermint Essential Oil Blend Organic Roll-On + +> Source: https://healf.com/products/now-foods-peppermint-essential-oil-blend-organic-roll-on + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Organic peppermint oil blend. +- Strong mint aroma profile. +- No synthetic fragrances. + + +Peppermint Essential Oil Blend Organic Roll-On delivers a strong mint aroma with energising and invigorating attributes. It contains an organic peppermint essential oil blend that undergoes analytical testing for identity, purity, and adulteration, contains no synthetic fragrances or added chemicals, and follows NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\* & Mentha Piperita (Peppermint) Oil\*. + +\*Certified Organic\n\n + +## Suggested Use + +Apply to wrists, nape of neck, temples, or other desired area and experience its energizing, invigorating scent. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes.\n + +\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-peppermint-gels.md b/healf-crawler/data/now-foods-peppermint-gels.md new file mode 100644 index 0000000..3968763 --- /dev/null +++ b/healf-crawler/data/now-foods-peppermint-gels.md @@ -0,0 +1,38 @@ +# Peppermint Gels + +> Source: https://healf.com/products/now-foods-peppermint-gels + +**Brand:** NOW Foods | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Blended with peppermint, ginger, and fennel oils for daily balance. +- Enteric-coated softgels deliver the oils where you need them most. +- Inspired by traditional herbal practices and modern convenience. + +Bring a touch of tradition to your routine with these thoughtfully crafted softgels. Each capsule combines peppermint, ginger, and fennel oils—botanicals valued for generations in culinary and herbal traditions. The enteric coating helps the capsule travel through the stomach before releasing its contents, so you can enjoy these time-honoured ingredients as part of your daily wellbeing ritual. + +## Ingredients + +Peppermint Oil (Mentha piperita), Fennel Oil (Foeniculum vulgare), Ginger Oil (Zingiber officinale), Softgel Capsule (Bovine Gelatin (BSE-Free), Glycerin, Enteric Coating (Pharmaceutical Glaze, Carboxymethylcellulose Sodium, Ammonium Bicarbonate, Microcrystalline Cellulose, Sunflower Oil, Silicon Dioxide), Water, Carob), Organic Olive Oil + +## Suggested Use + +Take 1-2 softgels 1 to 3 times daily, 30 minutes before meals. + + +Store in a cool, dry place after opening. + + +For adults only. Do not take this product if you are allergic to peppermint, fennel or ginger. Not recommended for pregnant or nursing women. Consult physician if taking medication, if suffering from liver or kidney disease, or have any other medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-peppermint-oil.md b/healf-crawler/data/now-foods-peppermint-oil.md new file mode 100644 index 0000000..fa803b7 --- /dev/null +++ b/healf-crawler/data/now-foods-peppermint-oil.md @@ -0,0 +1,29 @@ +# Peppermint Oil + +> Source: https://healf.com/products/now-foods-peppermint-oil + +**Brand:** NOW Foods | **Price:** £5.99 + +## Description + +**Pure peppermint oil for a refreshing boost** + +- 100% pure peppermint oil for versatile use. +- Steam-distilled from aerial plant parts for quality and freshness. +- Invigorating mint aroma to enliven your space. + +Experience the crisp, cooling scent of NOW Foods Peppermint Oil. Carefully steam-distilled from the aerial parts of Mentha piperita, this essential oil brings a clean, vibrant mint fragrance to your home. Perfect for diffusers or blending with other oils like rosemary and cinnamon, it’s an easy way to refresh your environment and uplift your senses—any time you need a natural pick-me-up. + +## Ingredients + +Pure peppermint oil. + +## Suggested Use + +For aromatherapy use. For all other uses, carefully dilute with a carrier oil such as jojoba, grapeseed, olive, or almond oil prior to use. Please consult an essential oil book or other professional reference source for suggested dilution ratios.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store our high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nKeep out of reach of children. Avoid contact with skin or eyes. If pregnant or nursing, consult your healthcare practitioner before using.\n + +\nNatural essential oils are highly concentrated and should be used with care. diff --git a/healf-crawler/data/now-foods-phosphatidyl-serine.md b/healf-crawler/data/now-foods-phosphatidyl-serine.md new file mode 100644 index 0000000..5aaae45 --- /dev/null +++ b/healf-crawler/data/now-foods-phosphatidyl-serine.md @@ -0,0 +1,40 @@ +# Phosphatidyl Serine + +> Source: https://healf.com/products/now-foods-phosphatidyl-serine + +**Brand:** NOW Foods | **Price:** £18.99 + +## Description + +**Key Benefits** + +- With choline to help maintain normal liver function, lipid metabolism, and homocysteine metabolism. +- Features phosphatidyl serine, a key building block of cell membranes. +- Designed for those seeking to support their daily wellbeing and cellular health. +- Vegan-friendly and soy-derived for plant-based lifestyles. + +Start each day with support for your body’s natural balance. Phosphatidyl serine is a vital phospholipid found in neural membranes, where it plays a structural role in cell membranes. NOW® Phosphatidyl Serine combines this important nutrient with choline, which contributes to the maintenance of normal liver function, normal lipid metabolism, and normal homocysteine metabolism. + +This thoughtful blend is ideal for anyone looking to support their daily wellbeing and cellular health, all in a convenient, vegan-friendly capsule. + +## Ingredients + +Choline (from Choline Bitartrate), Phosphatidylserine, Inositol, Cellulose, Hypromellose (Cellulose Capsule), Anti-Caking Agent (Silicon Dioxide), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 capsule 1 to 3 times daily, preferably with food. + + Store in a cool, dry place after opening. + + Caution: + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-probiotic-10-25-billion-cfu.md b/healf-crawler/data/now-foods-probiotic-10-25-billion-cfu.md new file mode 100644 index 0000000..93065e6 --- /dev/null +++ b/healf-crawler/data/now-foods-probiotic-10-25-billion-cfu.md @@ -0,0 +1,23 @@ +# Probiotic-10 25 Billion CFU + +> Source: https://healf.com/products/now-foods-probiotic-10-25-billion-cfu + +**Brand:** NOW Foods | **Price:** £15.99 – £26.99 + +## Description + +**Key Benefits** + +- Brings together 10 diverse probiotic strains for everyday balance. +- Formulated with acid-resistant strains to reach your gut where they're needed. + +NOW Foods Probiotic-10 25 Billion CFU delivers a broad spectrum of live cultures, including Lactobacillus and Bifidobacterium strains, chosen for their ability to naturally colonise the human digestive tract. This daily supplement is crafted to help you maintain a balanced gut environment, supporting your wellbeing from the inside out. + +## Ingredients + +Blend of 10 Strains of Probiotic Bacteria (25 Billion CFU): Lactobacillus Acidophilus (-14), Bifidobacterium lactis (BI-04), Lactobacillus plantarum (Lp-115), Lactobacillus casei (Lc-11), Lactobacillus rhamnosus (Lr-32), Lactobacillus paracasei (Lpc-37), Bifidobacterium breve (Bb-18), Streptococcus thermophilus (St-21), Lactobacillus salivarius (Ls-33), Bifidobacterium longum (BI-05), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), FOS (Fructooligosaccharides), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1-2 times daily between meals or on an empty stomach. +Store in a cool, dry place to maintain potency. diff --git a/healf-crawler/data/now-foods-probiotic-10-50-billion-cfu.md b/healf-crawler/data/now-foods-probiotic-10-50-billion-cfu.md new file mode 100644 index 0000000..da51687 --- /dev/null +++ b/healf-crawler/data/now-foods-probiotic-10-50-billion-cfu.md @@ -0,0 +1,39 @@ +# Probiotic-10 50 Billion CFU + +> Source: https://healf.com/products/now-foods-probiotic-10-50-billion-cfu + +**Brand:** NOW Foods | **Price:** £24.99 + +## Description + +**Key Benefits** + +- 10-strain blend for everyday digestive support. +- Includes Streptococcus thermophilus, a live culture used in yoghurt. +- Acid-resistant, DNA-verified strains for reliable delivery. + +Probiotic-10 50 Billion CFU brings together 10 carefully selected strains of live bacteria, including Streptococcus thermophilus, a culture commonly found in yoghurt. Each capsule is designed to deliver high-potency, acid-resistant probiotics that reach your gut where they’re needed most. + +Live cultures in yoghurt or fermented milk improve lactose digestion of the product in individuals who have difficulty digesting lactose. Probiotic-10 is produced to high quality standards, making it a simple choice for those looking to support their daily routine with a trusted probiotic blend. + +## Ingredients + +Blend of 10 Strains of Probiotic Bacteria (50 Billion CFU): Lactobacillus Acidophilus (-14), Bifidobacterium lactis (Bl-04), Lactobacillus plantarum (Lp-115), Lactobacillus casei (Lc-11), Lactobacillus rhamnosus (Lr-32), Lactobacillus paracasei (Lpc-37), Bifidobacterium breve (Bb-18), Streptococcus thermophilus (St-21), Lactobacillus salivarius (Ls-33), Bifidobacterium longum (Bl-05), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), FOS (Fructooligosaccharides), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily between meals or on an empty stomach. + + Store in a cool, dry place to maintain potency. + + Caution: +Consult physician if pregnant/nursing, taking medication (especially immune-suppressing drugs), or have a medical condition (especially if immune system is compromised). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-psyllium-husk-500mg.md b/healf-crawler/data/now-foods-psyllium-husk-500mg.md new file mode 100644 index 0000000..10563ac --- /dev/null +++ b/healf-crawler/data/now-foods-psyllium-husk-500mg.md @@ -0,0 +1,46 @@ +# Psyllium Husk 500mg + +> Source: https://healf.com/products/now-foods-psyllium-husk-500mg + +**Brand:** NOW Foods | **Price:** £11.49 – £22.49 + +## Description + +**Key benefits** + +- Each serving delivers 1.1g of natural fibre. +- Made from whole psyllium seed husks for plant-based goodness. +- Contains both soluble and insoluble fibre for versatile support. + +NOW Foods Psyllium Husk 500mg offers a simple way to add more fibre to your day. Sourced from the outer husk of the Plantago ovata seed, these capsules provide a blend of soluble and insoluble fibre—ideal for those looking to top up their fibre intake. + +With 1.1 grams of fibre in every 3-capsule serving, it’s a convenient choice for anyone seeking an easy, mess-free alternative to powders. Just add to your daily routine and enjoy plant-based fibre, wherever life takes you. + +## Ingredients + +Psyllium (Seed Husk) (1.5 g), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Stearic Acid (Vegetable Source)) + +## Suggested Use + +Take 3 capsules with 8 oz. glass of liquid, 2 to 3 times daily. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Notice: This product should be taken with at least a full glass of liquid. Taking this product without enough liquid may cause choking. Do not take this product if you have difficulty in swallowing. + + +May contain traces of sesame. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-psyllium-husk-powder.md b/healf-crawler/data/now-foods-psyllium-husk-powder.md new file mode 100644 index 0000000..9b23b31 --- /dev/null +++ b/healf-crawler/data/now-foods-psyllium-husk-powder.md @@ -0,0 +1,41 @@ +# Psyllium Husk Powder + +> Source: https://healf.com/products/now-foods-psyllium-husk-powder + +**Brand:** NOW Foods | **Price:** £20.49 + +## Description + +**Key benefits** + +- 6 g of soluble fibre in every serving. +- Psyllium helps maintain normal bowel function. +- Mixes smoothly into food or drink. + +Each serving of Psyllium Husk Powder delivers 7 grams of fibre—6 grams soluble and 1 gram insoluble—making it a convenient choice for topping up your fibre intake. When stirred into water or juice, it forms a gentle gel-like texture. Enjoy as part of a balanced diet to help support normal bowel function. Simple, versatile, and easy to add to your daily routine. + +## Ingredients + +Psyllium (Seed Husk) + +## Suggested Use + +Vigorously mix 1 level tablespoon daily into at least 12 oz. of water or juice and consume immediately. Be sure to drink plenty of additional fluids throughout the day. Start with smaller amounts and gradually increase over several weeks. + + +Store in a cool, dry place after opening. + + +This product should be taken with at least a full glass of liquid. Taking this product without enough liquid may cause choking. Do not take this product if you have difficulty in swallowing. + + +May contain traces of sesame. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-psyllium-husk-whole.md b/healf-crawler/data/now-foods-psyllium-husk-whole.md new file mode 100644 index 0000000..e45fd22 --- /dev/null +++ b/healf-crawler/data/now-foods-psyllium-husk-whole.md @@ -0,0 +1,38 @@ +# Psyllium Husk Whole + +> Source: https://healf.com/products/now-foods-psyllium-husk-whole + +**Brand:** NOW Foods | **Price:** £9.99 – £10.99 + +## Description + +**Key benefits** + +- Delivers 6g soluble fibre in every serving. +- Supports normal bowel function with natural psyllium. +- Made simply from whole psyllium husks. + +Each serving of Psyllium Husk Whole offers 7 grams of fibre—6 grams soluble and 1 gram insoluble. When mixed with liquid, these husks form a gentle, gel-like texture. Getting enough fibre each day helps support normal bowel function, making this a practical choice for anyone looking to add more fibre to their diet. Stir into water, juice, or your favourite foods for a simple, natural fibre boost as part of your daily routine. + +## Ingredients + +Psyllium (Seed Husk) + +## Suggested Use + +Vigorously mix 1-2 level tablespoons daily into at least 12 oz. of water or juice and consume immediately. Be sure to drink plenty of additional fluids throughout the day. Start with smaller amounts and gradually increase over several weeks. + + +Store in a cool, dry place after opening + + +This product should be taken with at least a full glass of liquid. Taking this product without enough liquid may cause choking. Do not take this product if you have difficulty in swallowing. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-pumpkin-seed-oil-1000mg.md b/healf-crawler/data/now-foods-pumpkin-seed-oil-1000mg.md new file mode 100644 index 0000000..ebab703 --- /dev/null +++ b/healf-crawler/data/now-foods-pumpkin-seed-oil-1000mg.md @@ -0,0 +1,35 @@ +# Pumpkin Seed Oil 1000mg + +> Source: https://healf.com/products/now-foods-pumpkin-seed-oil-1000mg + +**Brand:** NOW Foods | **Price:** £10.99 + +## Description + +**Key benefits** + +- Features naturally occurring fatty acids and phytosterols. +- Cold-pressed and solvent-free for a clean, gentle extraction. +- Crafted from premium, non-GMO pumpkin seeds. + +NOW Foods Pumpkin Seed Oil 1000mg brings you the goodness of Cucurbita pepo seeds in a convenient softgel. Each serving delivers 2g of pure pumpkin seed oil, carefully extracted to preserve its natural profile. Enjoy a simple, plant-based addition to your day—made with quality and care, and nothing unnecessary added. + +## Ingredients + +Pumpkin Seed Oil (Cucurbita pepo) (2 g), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water] + +## Suggested Use + +Take 2 softgels 1 to 2 times daily with food. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-quercetin-with-bromelain.md b/healf-crawler/data/now-foods-quercetin-with-bromelain.md new file mode 100644 index 0000000..13bc8fc --- /dev/null +++ b/healf-crawler/data/now-foods-quercetin-with-bromelain.md @@ -0,0 +1,40 @@ +# Quercetin with Bromelain + +> Source: https://healf.com/products/now-foods-quercetin-with-bromelain + +**Brand:** NOW Foods | **Price:** £22.99 – £38.99 + +## Description + +**Key benefits** + +- Combines quercetin, a naturally occurring plant flavonoid. +- Features bromelain, an enzyme sourced from pineapple. +- Brings together botanicals and enzymes in one simple capsule. + +Quercetin with Bromelain by NOW Foods blends two well-known natural compounds in a convenient daily supplement. Quercetin is a plant flavonoid found in many fruits and vegetables, while bromelain is a pineapple-derived enzyme. This thoughtful pairing offers a straightforward way to add both botanical and enzyme ingredients to your day—ideal for those seeking a plant-based addition to their wellness routine. + +Enjoy the simplicity of a formula designed to fit seamlessly into your lifestyle, with quality ingredients you can trust. + +## Ingredients + +Quercetin, Bromelain (2400 GDU/g), Bulking Agent (Microcrystalline Cellulose), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 2 capsules 20 minutes before meals, twice daily. Persons with sensitive stomachs may prefer to take capsules with food. + + +Store in a cool, dry place after opening. + + +For adults only. Do not use this product if you have a pineapple allergy. Quercetin may interact with a variety of medications; consult physician before using this product if taking prescription drugs. Consult physician if pregnant/nursing, or have a medical condition (especially kidney dysfunction). Keep out of the reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-saccharomyces-boulardii.md b/healf-crawler/data/now-foods-saccharomyces-boulardii.md new file mode 100644 index 0000000..7994bb9 --- /dev/null +++ b/healf-crawler/data/now-foods-saccharomyces-boulardii.md @@ -0,0 +1,40 @@ +# Saccharomyces Boulardii + +> Source: https://healf.com/products/now-foods-saccharomyces-boulardii + +**Brand:** NOW Foods | **Price:** £11.99 + +## Description + +**Key Benefits** + +- Formulated with Saccharomyces boulardii yeast for everyday balance. +- Delivers 10 billion CFU per serving for consistent daily intake. +- Designed to remain stable through the digestive system. + +Start your day with a unique yeast supplement crafted for digestive harmony. Saccharomyces boulardii is valued for its ability to stay stable as it passes through the stomach, making it a reliable choice for your daily routine. + +Each capsule provides 10 billion CFU of this well-studied yeast strain. Unlike many bacteria-based blends, Saccharomyces boulardii is a yeast, offering a distinct approach to daily gut support. Produced in a GMP-certified facility, this supplement is a simple way to add a trusted yeast to your wellness journey. + +## Ingredients + +Saccharomyces boulardii (10 Billion CFU) (Saccharomyces cerevisiae var. boulardii I-3799), Hypromellose (Cellulose Capsule), Organic Inulin (FOS) (Fructooligosaccharides), Thickener (Guar Gum) + +## Suggested Use + +Take 1-2 capsules 2 to 3 times daily between meals as needed. + + +REFRIGERATE TO MAINTAIN POTENCY. + + +Consult physician if pregnant/nursing, taking medication (especially immune-suppressing drugs), or have a medical condition (especially if immune system is compromised). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-saw-palmetto-extract-320-mg.md b/healf-crawler/data/now-foods-saw-palmetto-extract-320-mg.md new file mode 100644 index 0000000..8e6560a --- /dev/null +++ b/healf-crawler/data/now-foods-saw-palmetto-extract-320-mg.md @@ -0,0 +1,40 @@ +# Saw Palmetto Extract 320 mg + +> Source: https://healf.com/products/now-foods-saw-palmetto-extract-320-mg + +**Brand:** NOW Foods | **Price:** £24.49 + +## Description + +**Key benefits** + +- Features standardised saw palmetto berry extract for consistency. +- Blended with cold-pressed pumpkin seed oil to retain natural plant compounds. +- Delivers naturally occurring fatty acids from both botanicals. + +NOW Foods’ Saw Palmetto Extract 320 mg with Pumpkin Seed Oil brings together two respected botanicals in a convenient softgel. The saw palmetto berries are carefully standardised to ensure a consistent profile of fatty acids, while the pumpkin seed oil is cold-pressed to help preserve its original plant goodness. + +This thoughtful blend is inspired by traditional practices and crafted for those who appreciate plant-based nutrition. Enjoy an easy way to add these botanicals to your daily routine—no fuss, just straightforward support from nature’s own ingredients. + +## Ingredients + +Saw Palmetto Berry Extract (Serenoa repens) (Standardised To 85-95% Fatty Acids) (USPlus®), Pumpkin Seed Oil (Cucurbita pepo) (Cold Pressed), Vegetarian Softgel Capsule (Modified Corn Starch, Glycerin, Carrageenan, Water) + +## Suggested Use + +Take 2 softgel twice daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-seasonal-defense-essential-oil-blend-roll-on.md b/healf-crawler/data/now-foods-seasonal-defense-essential-oil-blend-roll-on.md new file mode 100644 index 0000000..8a62650 --- /dev/null +++ b/healf-crawler/data/now-foods-seasonal-defense-essential-oil-blend-roll-on.md @@ -0,0 +1,32 @@ +# Seasonal Defense Essential Oil Blend Roll-On + +> Source: https://healf.com/products/now-foods-seasonal-defense-essential-oil-blend-roll-on + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- Sweet, camphoraceous aroma. +- Blended essential oil formula. +- No synthetic fragrances. + + +Seasonal Defense Essential Oil Blend Roll-On delivers a sweet and camphoraceous aroma with uplifting, freshening, and cleansing attributes. It contains a blended essential oil formulation that undergoes analytical testing for identity, purity, and adulteration, with no synthetic fragrances or added chemicals, following NOW® Essential Oils quality standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\*, Citrus Sinensis (Orange) Peel Oil\*, Eugenia Caryophyllus (Clove) Bud Oil, Eucalyptus Globulus Leaf Oil\*, Rosmarinus Officinalis (Rosemary) Leaf Oil\*, Cinnamomum Zeylanicum (Cinnamon) Bark Oil, Elettaria Cardamomum (Cardamom) Seed Oil, Cedrus Atlantica (Cedarwood Atlas) Wood Oil. + +\*Organic ingredient + +## Suggested Use + +Apply to chest, wrists, or other desired pulse points for an energizing and cleansing aroma. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes. \n + +\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-selenium-100-mcg-tablets.md b/healf-crawler/data/now-foods-selenium-100-mcg-tablets.md new file mode 100644 index 0000000..cedd91c --- /dev/null +++ b/healf-crawler/data/now-foods-selenium-100-mcg-tablets.md @@ -0,0 +1,26 @@ +# Selenium - 100 mcg + +> Source: https://healf.com/products/now-foods-selenium-100-mcg-tablets + +**Brand:** NOW Foods | **Price:** £3.99 + +## Description + +#### **Key Benefits** + +- Helps your immune system function at its best +- Supports normal thyroid activity for daily balance +- Protects cells from everyday oxidative stress +- Contributes to healthy hair and nails + +Bring a little extra support to your routine with NOW Foods' Selenium. This essential trace mineral, found naturally in foods like Brazil nuts and seafood, contributes to normal immune and thyroid function, helps maintain healthy hair and nails, and protects your cells from oxidative stress. Selenium also plays a role in normal spermatogenesis. A simple way to help you feel your best, every day. + +## Ingredients + +Selenium (Elemental) (from 20 mg L-Selenomethionine), Bulking Agent (Microcrystalline Cellulose), Stearic Acid (Vegetable Source), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1 tablet 1 to 2 times daily with food. + + Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-selenium-200-mcg-veg-capsules.md b/healf-crawler/data/now-foods-selenium-200-mcg-veg-capsules.md new file mode 100644 index 0000000..df93622 --- /dev/null +++ b/healf-crawler/data/now-foods-selenium-200-mcg-veg-capsules.md @@ -0,0 +1,26 @@ +# Selenium - 200 mcg + +> Source: https://healf.com/products/now-foods-selenium-200-mcg-veg-capsules + +**Brand:** NOW Foods | **Price:** £5.99 – £10.99 + +## Description + +#### **Key Benefits** + +- Helps your immune system function at its best, thanks to selenium. +- Supports normal thyroid activity for everyday balance. +- Protects your cells from oxidative stress, helping you feel your best. +- Contributes to the maintenance of normal hair and nails. + +NOW Foods' Selenium delivers this essential trace mineral in a convenient capsule—ideal for anyone looking to support their daily wellbeing. Selenium is naturally found in foods like Brazil nuts, seafood, and wheat germ, but this supplement makes it easy to get a consistent amount every day. + +## Ingredients + +Selenium (Elemental) (from 40 mg L-Selenomethionine), Rice Flour, Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 1 capsule daily with a meal. + + Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-slippery-elm-400mg.md b/healf-crawler/data/now-foods-slippery-elm-400mg.md new file mode 100644 index 0000000..baf8006 --- /dev/null +++ b/healf-crawler/data/now-foods-slippery-elm-400mg.md @@ -0,0 +1,40 @@ +# Slippery Elm 400mg + +> Source: https://healf.com/products/now-foods-slippery-elm-400mg + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key benefits** + +- Features the inner bark of slippery elm, a traditional plant ingredient. +- Rich in natural plant mucilage for a gentle, soothing texture. +- Rooted in centuries of traditional herbal use. + +NOW Foods Slippery Elm 400mg brings you the inner bark of Ulmus rubra, a tree long respected by Native North Americans and early settlers. Also known as red elm, this botanical has been valued for generations as both a food and a traditional preparation. + +The bark’s natural mucilage forms a smooth, gel-like consistency when mixed with water, making it a gentle addition to your supplement routine. Enjoy a simple, plant-based way to connect with a classic ingredient, trusted through the ages for its place in traditional practices. + +## Ingredients + +Slippery Elm (Ulmus rubra) (Bark), Hypromellose (Cellulose Capsule), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Bulking Agent (Microcrystalline Cellulose) + +## Suggested Use + +Take 2 capsules 1 to 3 times daily. + + +Store in a cool, dry place after opening. + + +For adults only. Pregnant or nursing women: do not use unless recommended by your physician. Consult physician if taking medication or have a medical condition. Keep out of reach of children.​ + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-sunflower-lecithin-1200mg.md b/healf-crawler/data/now-foods-sunflower-lecithin-1200mg.md new file mode 100644 index 0000000..6fa85a1 --- /dev/null +++ b/healf-crawler/data/now-foods-sunflower-lecithin-1200mg.md @@ -0,0 +1,40 @@ +# Sunflower Lecithin 1200mg + +> Source: https://healf.com/products/now-foods-sunflower-lecithin-1200mg + +**Brand:** NOW Foods | **Price:** £9.49 – £17.49 + +## Description + +**Key Benefits** + +- Delivers phosphatidyl choline, a key building block for cell membranes. +- Contains naturally occurring phosphatidyl inositol and ethanolamine. +- Offers essential fatty acids from non-GMO sunflower seeds. + +Support your daily routine with Sunflower Lecithin 1200mg—a simple way to add plant-based phospholipids to your diet. Each softgel provides phosphatidyl choline, a major component of cell membranes, along with other naturally present nutrients like phosphatidyl inositol, ethanolamine, and essential fatty acids. + +Made from non-GMO sunflower seeds and completely free from soy, these softgels are crafted for those seeking a clean, sunflower-based alternative. Enjoy a straightforward addition to your nutrition, produced to high quality standards by NOW Foods. + +## Ingredients + +Sunflower Lecithin (2.4 g) (Phosphatidyl Choline, 360 mg), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water], Organic Extra Virgin Olive Oil + +## Suggested Use + +Take 2 softgels daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-sunflower-lecithin-powder.md b/healf-crawler/data/now-foods-sunflower-lecithin-powder.md new file mode 100644 index 0000000..f0a6b19 --- /dev/null +++ b/healf-crawler/data/now-foods-sunflower-lecithin-powder.md @@ -0,0 +1,40 @@ +# Sunflower Lecithin Powder + +> Source: https://healf.com/products/now-foods-sunflower-lecithin-powder + +**Brand:** NOW Foods | **Price:** £16.99 + +## Description + +**Key Benefits for Everyday Wellbeing** + +- With choline to support normal liver and lipid metabolism. +- Contains phosphatidyl inositol and ethanolamine—naturally present in sunflower seeds. +- Plant-based phospholipids for easy, everyday nourishment. + +Bring balance to your daily routine with Sunflower Lecithin Powder—a natural source of choline, which contributes to normal homocysteine metabolism, normal lipid metabolism, and the maintenance of normal liver function. This powder also provides phosphatidyl inositol, phosphatidyl ethanolamine, and essential fatty acids, all from non-GMO sunflower seeds. + +Free from soy and easy to mix, it blends smoothly into smoothies, shakes, or your favourite recipes. Enjoy a simple, plant-based way to add lecithin to your day—mild in taste and made for modern living. + +## Ingredients + +Emulsifier (Sunflower Lecithin Powder) + +## Suggested Use + +Take 1 1/3 tablespoons daily, preferably with a meal. Mix in juice or shakes, or sprinkle on food. + + +Store in a cool, dry place after opening. + + +Do not eat freshness packet enclosed. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-super-enzymes-capsules.md b/healf-crawler/data/now-foods-super-enzymes-capsules.md new file mode 100644 index 0000000..9daeca5 --- /dev/null +++ b/healf-crawler/data/now-foods-super-enzymes-capsules.md @@ -0,0 +1,40 @@ +# Super Enzymes Capsules + +> Source: https://healf.com/products/now-foods-super-enzymes-capsules + +**Brand:** NOW Foods | **Price:** £13.99 – £25.99 + +## Description + +**Key Benefits** + +- With betaine to help maintain normal homocysteine metabolism. +- Features a broad spectrum of enzymes for your daily digestive needs. +- Blended to complement a balanced diet and active lifestyle. +- Produced in a GMP-certified facility for quality you can trust. + +Support your daily nutrition with a thoughtful enzyme blend. NOW® Super Enzymes brings together betaine and a range of enzymes to help you get the most from every meal. Bromelain (from pineapple) and papain (from papaya) work to break down proteins into smaller components. Pancreatin provides amylase, protease, and lipase—enzymes that help process carbohydrates, proteins, and fats. + +Ox bile extract supplies bile acids, which act as natural emulsifiers for fats. Betaine HCl is included to contribute to normal homocysteine metabolism, supporting your body’s natural processes. + +NOW® Super Enzymes is crafted with high-quality, globally sourced ingredients and produced in a GMP-certified facility, making it a reliable choice for your daily routine. + +## Ingredients + +Betaine HCl, Pancreatin 11X Supplying: Amylase 37, 000 USP Units Protease 37, 000 USP Units Lipase 2, 960 USP Units, Ox Bile Extract (min. 45% Total Cholic Acids), **Papaya Fruit Powder (Sulphites)**, Bromelain (from Pineapple) (120 GDU), Acid Stable Protease (Aspergillopepsin) (50 SAPU), Papain (from Papaya) (100,000 FCC PU), Cellulase (10 CU), Bulking Agent (Microcrystalline Cellulose), Gelatin (Capsule), Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule with a meal. + + Store in a cool, dry place after opening. Caution: + ​For adults only. Consult physician if pregnant/nursing, taking medication (especially blood thinners), or have a medical condition (including allergy to papaya, pineapple). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-super-enzymes-tablets.md b/healf-crawler/data/now-foods-super-enzymes-tablets.md new file mode 100644 index 0000000..aee7ab1 --- /dev/null +++ b/healf-crawler/data/now-foods-super-enzymes-tablets.md @@ -0,0 +1,40 @@ +# Super Enzymes Tablets + +> Source: https://healf.com/products/now-foods-super-enzymes-tablets + +**Brand:** NOW Foods | **Price:** £15.99 + +## Description + +**Key Benefits** + +- Broad-spectrum enzyme blend for daily support. +- Includes bromelain from pineapple and papain from papaya. +- Features naturally sourced ingredients in a convenient tablet. + +Start your day with a thoughtful combination of enzymes and botanicals. Super Enzymes Tablets from NOW Foods bring together bromelain, papain, ox bile extract, pepsin, and pancreatin—delivering amylase, protease, and lipase in one easy-to-take formula. + +Enzymes are proteins that play a role in everyday bodily processes. This blend offers a simple way to include a variety of enzymes in your daily routine, crafted with quality-tested ingredients for peace of mind. A straightforward choice for those seeking a broad enzyme complex to complement their lifestyle. + +## Ingredients + +N-Acetyl Cysteine (NAC) (1 g), Bulking Agent (Microcrystalline Cellulose), Capsule Shell (Hydroxypropyl Cellulose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Croscarmellose Sodium, Vegetarian Coating [Hypromellose (Cellulose), Stearic Acid (Vegetable Source), Sunflower Lecithin, Triethyl Citrate, Sunflower Oil] (**Gluten**), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 tablet with a meal. + + +Store in a cool, dry place after opening. + + +​For adults only. Consult physician if pregnant/nursing, taking medication (especially blood thinners), or have a medical condition (including allergy to papaya, pineapple). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-sweet-almond-oil-pure-unscented-moisturizing-oil.md b/healf-crawler/data/now-foods-sweet-almond-oil-pure-unscented-moisturizing-oil.md new file mode 100644 index 0000000..e3803cd --- /dev/null +++ b/healf-crawler/data/now-foods-sweet-almond-oil-pure-unscented-moisturizing-oil.md @@ -0,0 +1,27 @@ +# Sweet Almond Oil (Pure Unscented Moisturizing Oil) + +> Source: https://healf.com/products/now-foods-sweet-almond-oil-pure-unscented-moisturizing-oil + +**Brand:** NOW Foods | **Price:** £3.99 – £8.99 + +## Description + +**Key Benefits** + +- Brings a silky, soft feel to your skin—naturally. +- Lightweight texture absorbs quickly, leaving no greasy residue. +- Perfect as a carrier oil for your favourite blends. + +Experience simple, everyday nourishment with Sweet Almond Oil (Prunus amygdalus dulcis). This pure, unscented oil glides on easily and is suitable for most skin types, helping your skin feel smooth and refreshed. Use it on your face, body, or for massage—its gentle touch makes it a versatile addition to your routine. Sweet Almond Oil is also a trusted base for customising essential oil blends. Natural cloudiness or fine particles may appear, a sign of its unrefined quality and purity. + +## Ingredients + +Prunus Amygdalus Dulcis (Sweet Almond) Oil. + +## Suggested Use + +For body, work several drops between palms and massage into the desired area. For face, after cleansing, massage 3-5 drops into skin, paying particular attention to the area around your eyes.\n + +\nStore in a cool, dry place after opening.\n + +\nAvoid direct contact with eyes. Do not apply to broken or irritated skin. Discontinue use and consult a healthcare practitioner if skin sensitivity occurs. diff --git a/healf-crawler/data/now-foods-take-a-zen-ten-essential-oil-blend-roll-on.md b/healf-crawler/data/now-foods-take-a-zen-ten-essential-oil-blend-roll-on.md new file mode 100644 index 0000000..206b2c2 --- /dev/null +++ b/healf-crawler/data/now-foods-take-a-zen-ten-essential-oil-blend-roll-on.md @@ -0,0 +1,30 @@ +# Take A Zen Ten Essential Oil Blend Roll-On + +> Source: https://healf.com/products/now-foods-take-a-zen-ten-essential-oil-blend-roll-on + +**Brand:** NOW Foods | **Price:** £4.99 + +## Description + +**Key Benefits** + +- Floral and citrus aroma. +- Blended essential oil formula. +- No synthetic fragrances. + + +Take A Zen Ten Essential Oil Blend Roll-On delivers a floral and citrus aroma with calming, relaxing, and soothing attributes. It contains a blended essential oil formulation that undergoes analytical testing for identity, purity, and adulteration, contains no synthetic fragrances or added chemicals, and follows NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\*, Lavandula Angustifolia (Lavender) Oil\*, Citrus Sinensis (Orange) Peel Oil\*, Citrus Reticulata (Tangerine) Peel Oil, Pogostemon Cablin (Patchouli) Oil\*, Cananga Odorata (Ylang Ylang Complete) Flower Oil, Anthemis Nobilis (Chamomile) Flower Oil, Santalum Album (Sandalwood) Oil. + +\*Organic ingredient + +## Suggested Use + +Apply to soles of feet, back of neck, or pulse points at bedtime and when a dose of soothing calm is needed throughout the day. Reapply as desired. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes.\n\nEssential oils should be used with care. diff --git a/healf-crawler/data/now-foods-taurine-500mg.md b/healf-crawler/data/now-foods-taurine-500mg.md new file mode 100644 index 0000000..7a908f6 --- /dev/null +++ b/healf-crawler/data/now-foods-taurine-500mg.md @@ -0,0 +1,40 @@ +# Taurine 500mg + +> Source: https://healf.com/products/now-foods-taurine-500mg + +**Brand:** NOW Foods | **Price:** £6.99 + +## Description + +**Key Benefits** + +- 500 mg of free-form taurine in every easy-to-take capsule. +- Vegan-friendly and free from common allergens for peace of mind. +- Made in a GMP-certified facility for trusted quality. +- Designed for daily use to fit your routine. + +Start your day with a straightforward amino acid supplement. Each capsule delivers 500 mg of free-form taurine, a naturally occurring compound found throughout the body. Unlike other amino acids, taurine isn’t used to build proteins, but it plays a role in many everyday processes. It’s considered “conditionally essential” – meaning your body may need more at certain times. + +NOW Foods Taurine 500mg is crafted for those seeking a simple, allergen-conscious option. Every batch is produced in a GMP-certified facility, so you can trust the quality and purity in every capsule. + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + +## Ingredients + +Taurine (Free-Form), Rice Flour, Hypromellose (Cellulose Capsule) + +## Suggested Use + +Take 1 capsule 1 to 4 times daily with water, preferably between meals. +Store in a cool, dry place after opening. + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-taurine-double-strength-1-000-mg.md b/healf-crawler/data/now-foods-taurine-double-strength-1-000-mg.md new file mode 100644 index 0000000..dd215a5 --- /dev/null +++ b/healf-crawler/data/now-foods-taurine-double-strength-1-000-mg.md @@ -0,0 +1,37 @@ +# Taurine, Double Strength, 1,000 mg + +> Source: https://healf.com/products/now-foods-taurine-double-strength-1-000-mg + +**Brand:** NOW Foods | **Price:** £8.49 + +## Description + +**Key Benefits** + +- Double strength taurine for your everyday wellbeing. +- Conditionally essential amino acid, especially during times of increased need. +- Delivers 1,000 mg of taurine per capsule—simple and convenient. +- Free from common allergens including wheat, gluten, soy, milk, egg, fish, shellfish, and tree nuts. + +Start strong with NOW® Taurine 1,000 mg—your go-to for a high-strength amino acid boost. Taurine is a conditionally essential amino acid, meaning your body may need more during periods of stress or increased demand. Unlike other amino acids, taurine isn’t used to build proteins, but it plays a key role in supporting your body’s natural balance. Each capsule delivers a double-strength serving, making it easy to add to your daily routine. Ideal for those looking to supplement their diet with taurine as part of a balanced lifestyle. + +## Ingredients + +Taurine (Free-Form), Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily with juice or water, preferably between meals. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication (including anti-hypertensive and diuretic medications), or have a medical condition (including hypotension). Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-tea-tree-essential-oil-blend-organic-roll-on.md b/healf-crawler/data/now-foods-tea-tree-essential-oil-blend-organic-roll-on.md new file mode 100644 index 0000000..0b1be97 --- /dev/null +++ b/healf-crawler/data/now-foods-tea-tree-essential-oil-blend-organic-roll-on.md @@ -0,0 +1,30 @@ +# Tea Tree Essential Oil Blend Organic Roll-On + +> Source: https://healf.com/products/now-foods-tea-tree-essential-oil-blend-organic-roll-on + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Organic tea tree oil blend. +- Roll-on application format. +- No synthetic fragrances. + + +Tea Tree Essential Oil Blend Organic Roll-On delivers a potent, warm, spicy aroma in a ready-to-use roll-on. It contains an organic tea tree essential oil blend that undergoes analytical testing for identity, purity, and adulteration, with no synthetic fragrances or added chemicals, and it aligns with NOW® Essential Oils’ cruelty-free standards. + +## Ingredients + +Simmondsia Chinensis (Jojoba) Seed Oil\* & Melaleuca Alternifolia (Tea Tree) Leaf Oil\*.\n + +\n\*Certified Organic + +## Suggested Use + +Apply to targeted areas of skin to spot treat for purification and cleansing. Reapply as desired throughout the day. Excessive pressure to rollerball may result in oil leakage.\n + +\nAfter using essential oils, immediately close caps tightly to prevent any oxidation. For best results, please store this high-quality essential oils at room temperature and in the original bottle. You should avoid storing the oils near any kind of heat, which includes cabinets over stovetops, areas with direct sunlight, and areas with excessive humidity like bathrooms.\n + +\nFor external use only. Do not apply to broken or irritated skin. If skin sensitivity occurs, discontinue use. If pregnant, nursing, or taking medications, consult your healthcare practitioner before using. Keep out of reach of children and pets. Avoid contact with eyes. diff --git a/healf-crawler/data/now-foods-tea-tree-oil.md b/healf-crawler/data/now-foods-tea-tree-oil.md new file mode 100644 index 0000000..ea0097b --- /dev/null +++ b/healf-crawler/data/now-foods-tea-tree-oil.md @@ -0,0 +1,27 @@ +# Tea Tree Oil + +> Source: https://healf.com/products/now-foods-tea-tree-oil + +**Brand:** NOW Foods | **Price:** £4.99 + +## Description + +**Key Benefits** + +- 100% pure tea tree oil, steam distilled for quality and potency. +- Brings a fresh, spicy aroma to your daily routine. +- Versatile for diffusers, personal care, or blends when diluted. + +Experience the crisp, invigorating scent of NOW Foods Tea Tree Oil. Sourced from Melaleuca alternifolia leaves and steam distilled for purity, this essential oil is a favourite for those looking to add a natural touch to their home or self-care rituals. Use it in your diffuser to create a revitalising atmosphere, or blend with a carrier oil for personal care. Every drop captures the plant’s natural character in a concentrated, easy-to-use form. + +## Ingredients + +Melaleuca Alternifolia (Tea Tree) Leaf Oil. + +## Suggested Use + +For aromatherapy use. For all other uses, carefully dilute with a carrier oil such as jojoba, grapeseed, or almond prior to use. Please consult an essential oil book or other professional reference source for suggested dilution ratios.\n + +\nNatural essential oils are highly concentrated and should be used with care.\n + +\nKeep out of reach of children. Avoid contact with eyes. If pregnant or nursing, consult your healthcare practitioner before using. Not for internal use.\n diff --git a/healf-crawler/data/now-foods-theanine-200mg.md b/healf-crawler/data/now-foods-theanine-200mg.md new file mode 100644 index 0000000..34d3ced --- /dev/null +++ b/healf-crawler/data/now-foods-theanine-200mg.md @@ -0,0 +1,41 @@ +# L-Theanine 200mg + +> Source: https://healf.com/products/now-foods-theanine-200mg + +**Brand:** NOW Foods | **Price:** £14.99 + +## Description + +**Key Benefits** + +- 200mg L-theanine per capsule for a convenient daily routine. +- With inositol for a balanced, gentle formula. +- Caffeine-free—ideal for day or night use. +- Vegan and made without common allergens. + +Step into a moment of calm with NOW Foods L-Theanine 200mg. Each capsule delivers a high-strength dose of L-theanine, an amino acid naturally found in green tea and mushrooms, designed for those seeking a mindful addition to their day. This formula is enhanced with inositol, offering a thoughtful blend for your daily routine. + +Enjoy a supplement that fits seamlessly into your lifestyle—caffeine-free, vegan, and suitable for a variety of dietary needs. With twice the L-theanine of standard formulas, it’s a simple way to support your sense of balance, whenever you need it most. + +NOW Foods L-Theanine 200mg is crafted for quality and purity, making it a reliable choice for those looking to add a little calm to their day. + +## Ingredients + +L-Theanine, Inositol, Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily as needed, preferably on an empty stomach. + +Store in a cool, dry place after opening. + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-tmg-betaine-1000mg-tabs.md b/healf-crawler/data/now-foods-tmg-betaine-1000mg-tabs.md new file mode 100644 index 0000000..258cbe2 --- /dev/null +++ b/healf-crawler/data/now-foods-tmg-betaine-1000mg-tabs.md @@ -0,0 +1,44 @@ +# TMG Betaine 1000mg Tabs + +> Source: https://healf.com/products/now-foods-tmg-betaine-1000mg-tabs + +**Brand:** NOW Foods | **Price:** £13.99 + +## Description + +**Key Benefits for Everyday Balance** + +- Delivers 1,000 mg trimethylglycine (TMG) per tablet. +- Features a naturally occurring compound found in foods. +- High-strength, quality-assured formula from NOW Foods. +- Contributes to normal homocysteine metabolism. + +Bring balance to your day with TMG Betaine 1000mg Tabs from NOW Foods. Each tablet provides a robust 1,000 mg of trimethylglycine—also known as betaine anhydrous—a compound naturally present in many foods. + +TMG is valued as a source of three methyl groups, supporting natural biochemical processes in the body. With an authorised claim, betaine contributes to normal homocysteine metabolism, making this supplement a simple way to support your daily nutrition. + +## Ingredients + +Trimethylglycine (TMG) (Betaine Anhydrous) (3 g), Bulking Agent (Microcrystalline Cellulose), Capsule Shell (Hydroxypropyl Cellulose), Vegetarian Coating (**Gluten**), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Croscarmellose Sodium, Anti-Caking Agent (Magnesium Stearate (Vegetable Source)) + +## Suggested Use + +Take 1-3 tablets twice daily, preferably with food. + + +Store in a cool, dry place after opening. + + +​For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Keep the bottle tightly closed at all times in between usage. Keep the freshness packet in bottle. This product is very sensitive to moisture/humidity which may affect product stability. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-ubiquinol-coqh-cf.md b/healf-crawler/data/now-foods-ubiquinol-coqh-cf.md new file mode 100644 index 0000000..93f0587 --- /dev/null +++ b/healf-crawler/data/now-foods-ubiquinol-coqh-cf.md @@ -0,0 +1,36 @@ +# Ubiquinol CoQH-CF + +> Source: https://healf.com/products/now-foods-ubiquinol-coqh-cf + +**Brand:** NOW Foods | **Price:** £21.99 + +## Description + +**Key Benefits** + +- Supports your body’s natural energy production every day. +- Bioavailable formula designed for optimal absorption. + +Start each day with confidence—Ubiquinol CoQH-CF delivers the active, easily absorbed form of CoQ10, a compound present in every cell. CoQ10 plays a vital role in the process that helps your cells produce energy, so you can feel ready for whatever’s ahead. This formula features d-limonene to enhance solubility and support better uptake in the digestive system. Crafted to high-quality standards by NOW Foods, it’s a simple way to help maintain your natural vitality. + +Choose Ubiquinol CoQH-CF for a daily boost to your cellular energy routine. + +## Ingredients + +Ubiquinol (Kaneka Ubiquinol™) (Reduced Form CoQ10), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water, Caramel Colour], D-Limonene, Other Additive (Caprylic Acid), Other Additive (Capric Acid), Alpha Lipoic Acid + +## Suggested Use + +Take 1 softgel twice daily with food. + + Caution: +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-uc-ii-r-type-ii-collagen.md b/healf-crawler/data/now-foods-uc-ii-r-type-ii-collagen.md new file mode 100644 index 0000000..fa0ee63 --- /dev/null +++ b/healf-crawler/data/now-foods-uc-ii-r-type-ii-collagen.md @@ -0,0 +1,39 @@ +# UC-II® Type II Collagen + +> Source: https://healf.com/products/now-foods-uc-ii-r-type-ii-collagen + +**Brand:** NOW Foods | **Price:** £34.99 + +## Description + +**Key Benefits** + +- Undenatured type II collagen—naturally present in cartilage. +- Derived from chicken sternum cartilage for quality and consistency. +- Features calcium, which supports normal muscle function, bones, and teeth. +- Includes potassium to help maintain normal muscle function and blood pressure. +- Once-daily capsule for simple, everyday use. + +Start your day with UC-II® Type II Collagen from NOW Foods—a convenient way to add undenatured type II collagen to your daily routine. This formula delivers 40 mg of undenatured type II collagen per capsule, sourced from chicken sternum cartilage and produced using a standardised process to help ensure quality. + +Collagen is the main structural protein found in cartilage, forming part of your body’s natural connective tissue framework. With added Aquamin® seaweed minerals, you’ll also get calcium and potassium—two essential minerals. Calcium contributes to normal muscle function and is needed for the maintenance of normal bones and teeth. Potassium supports normal muscle function and helps maintain normal blood pressure. All in a simple, once-daily capsule—designed to fit seamlessly into your wellbeing routine. + +## Ingredients + +Aquamin® (Seaweed Derived Minerals) (Lithothamnium spp.) (Whole Plant), Calcium (from Aquamin®), UC-II® Standardised Chicken Cartilage (Providing 10 mg Total Collagen, Including Undenatured Type II Collagen), Hypromellose (Cellulose Capsule), Bulking Agent (Microcrystalline Cellulose), Corn Starch (non-GMO), Potassium Chloride (Stabiliser), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily at bedtime on an empty stomach. + + +​For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-180-sgels.md b/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-180-sgels.md new file mode 100644 index 0000000..bb939a1 --- /dev/null +++ b/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-180-sgels.md @@ -0,0 +1,35 @@ +# Ultra Omega - 3 Fish Oil + +> Source: https://healf.com/products/now-foods-ultra-omega-3-fish-oil-180-sgels + +**Brand:** NOW Foods | **Price:** £30.99 + +## Description + +**Key Benefits** + +- Support your heart every day—EPA and DHA contribute to normal heart function. +- Help maintain healthy blood pressure and triglyceride levels with DHA and EPA. +- A convenient source of omega-3 fatty acids for your daily routine. + +Feel confident in your daily wellbeing with NOW Foods’ Ultra Omega 3-D Fish Oil. Each softgel delivers 500 mg EPA and 250 mg DHA—omega-3s that support the normal function of your heart, and help maintain healthy blood pressure and triglyceride levels. A simple way to help you feel your best, every day. + +## Ingredients + +**Fish Oil** Concentrate (**Anchovies** and **Sardines**) (1,000 mg), Softgel Capsule (**Fish Gelatin** [**Tilapia and Basa**], Glycerin, Water), Lemon Oil, D-alpha Tocopherol (from Sunflower) + +## Suggested Use + +Take one softgel daily with a meal. + Store in a cool, dry place after opening. + + For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-bovine-gelatin.md b/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-bovine-gelatin.md new file mode 100644 index 0000000..46583b1 --- /dev/null +++ b/healf-crawler/data/now-foods-ultra-omega-3-fish-oil-bovine-gelatin.md @@ -0,0 +1,46 @@ +# Ultra Omega-3 Fish Oil (Bovine Gelatin) + +> Source: https://healf.com/products/now-foods-ultra-omega-3-fish-oil-bovine-gelatin + +**Brand:** NOW Foods | **Price:** £16.99 – £32.99 + +## Description + +**Key Benefits** + +- High-strength formula: 500 mg EPA and 250 mg DHA per softgel. +- With EPA and DHA to support normal heart function. +- DHA helps maintain normal brain function. +- Odour-controlled, enteric-coated softgels for a fresh experience. + +Start your day with confidence—Ultra Omega-3 Fish Oil from NOW Foods delivers a concentrated source of long-chain omega-3s, including 500 mg EPA and 250 mg DHA in every softgel. EPA and DHA work together to support the normal function of your heart, while DHA also helps maintain normal brain function—ideal for busy lifestyles. + +Each batch is molecularly distilled and rigorously tested for purity, so you can trust you’re getting a clean, reliable supplement. The odour-controlled, enteric-coated softgels make it easy to add these essential fatty acids to your daily routine—no fishy aftertaste, just straightforward support for your wellbeing. + +## Ingredients + +Fish Oil Concentrate, (Omega-3 Fatty Acids: Eicosapentaenoic Acid (EPA), Docosahexaenoic Acid (DHA)), Softgel Capsule [bovine gelatin (BSE-free), glycerin, enteric coating (pharmaceutical glaze, ethyl alcohol, ammonium hydroxide, glycerin, sunflower lecithin, medium-chain triglycerides), water] and d-alpha Tocopherol (from sunflower).\n + +\nContains fish (anchovies, sardines).\n + +## Suggested Use + +Take 1 softgel 1 to 2 times daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +Contains fish (anchovies, sardines). + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-valerian-root-500mg.md b/healf-crawler/data/now-foods-valerian-root-500mg.md new file mode 100644 index 0000000..766aaaa --- /dev/null +++ b/healf-crawler/data/now-foods-valerian-root-500mg.md @@ -0,0 +1,41 @@ +# Valerian Root 500mg + +> Source: https://healf.com/products/now-foods-valerian-root-500mg + +**Brand:** NOW Foods | **Price:** £12.99 + +## Description + +**Key benefits** + +- Delivers 500 mg of pure valerian root per capsule. +- Features Valeriana officinalis, a time-honoured botanical. +- Inspired by generations of traditional herbal use. + +NOW Foods Valerian Root 500mg brings you a single-ingredient supplement crafted from Valeriana officinalis. This plant has been appreciated in herbal traditions for centuries, making it a straightforward choice for those seeking a classic botanical as part of their daily routine. Each capsule contains 500 mg of valerian root, simply formulated for ease and consistency. + +## Ingredients + +Valerian (Valeriana officinalis) (Root) (1 g), Hypromellose (Cellulose Capsule) + +## Suggested Use + +Take 2 capsules prior to bedtime as needed. + + +Store in a cool, dry place after opening. + + +For adults only. Do not use if pregnant or nursing. Consult physician if taking medication or have a medical condition. Keep out of reach of children. This product may cause drowsiness. Do not operate a vehicle or heavy machinery following consumption of valerian. + + +WARNING: Consuming this product can expose you to chemicals, including lead, which are known to the State of California to cause birth defects or other reproductive harm. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-vitamin-a-10-000-iu.md b/healf-crawler/data/now-foods-vitamin-a-10-000-iu.md new file mode 100644 index 0000000..10c2a42 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-a-10-000-iu.md @@ -0,0 +1,24 @@ +# Vitamin A - 10,000 IU + +> Source: https://healf.com/products/now-foods-vitamin-a-10-000-iu + +**Brand:** NOW Foods | **Price:** £3.99 + +## Description + +**Key Benefits** + +- Helps maintain normal vision, skin, and immune system function—ideal for everyday wellbeing. +- Supports the upkeep of normal mucous membranes, keeping your body’s natural barriers in check. +- Plays a part in normal iron metabolism and cell specialisation, helping your body work as it should. + +Each softgel delivers 3,000 mcg of vitamin A (10,000 IU) in a form designed for easy absorption—making it simple to add this essential nutrient to your daily routine. + +## Ingredients + +Vitamin A (from Retinyl Palmitate and **Fish** Liver Oil), Softgel Capsule [bovine gelatin (BSE-free), glycerin, water], Organic Extra Virgin Olive Oil + +## Suggested Use + +Take 1 softgel daily with a meal. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-vitamin-c-1000-immune-system-support-veg-capsules.md b/healf-crawler/data/now-foods-vitamin-c-1000-immune-system-support-veg-capsules.md new file mode 100644 index 0000000..ccda845 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-c-1000-immune-system-support-veg-capsules.md @@ -0,0 +1,41 @@ +# Vitamin C-1000 Immune System Support Veg Capsules + +> Source: https://healf.com/products/now-foods-vitamin-c-1000-immune-system-support-veg-capsules + +**Brand:** NOW Foods | **Price:** £7.99 – £15.99 + +## Description + +**Key benefits** + +- Delivers 1000 mg of vitamin C in every capsule. +- Supports the normal function of your immune system. +- Helps maintain healthy skin, bones, cartilage, gums, and teeth through normal collagen formation. +- Contributes to protecting your cells from oxidative stress and helps reduce tiredness and fatigue. + +NOW Foods Vitamin C-1000 Immune System Support brings together a high-strength dose of vitamin C with citrus bioflavonoids and rutin for a well-rounded daily routine. Vitamin C is known to support your immune system, help form collagen for healthy skin and joints, and protect your cells from everyday oxidative stress. It also plays a role in energy-yielding metabolism and supports the normal functioning of your nervous system. + +With regular use, vitamin C can help reduce tiredness and fatigue, while also increasing iron absorption from your diet. This convenient formula is designed to fit easily into your day, helping you feel your best—whatever life brings. + +## Ingredients + +Vitamin C (as Ascorbic Acid) (1 g), Citrus Bioflavonoid Complex, Rutin (from Sophora japonica Flower Bud), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-vitamin-c-1000-sustained-release-tablets.md b/healf-crawler/data/now-foods-vitamin-c-1000-sustained-release-tablets.md new file mode 100644 index 0000000..77f9b64 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-c-1000-sustained-release-tablets.md @@ -0,0 +1,33 @@ +# Vitamin C-1000 Sustained Release Tablets + +> Source: https://healf.com/products/now-foods-vitamin-c-1000-sustained-release-tablets + +**Brand:** NOW Foods | **Price:** £7.99 – £15.99 + +## Description + +**Key Benefits** + +- Delivers 1000 mg vitamin C in a sustained-release tablet. +- Supports your immune system, every day. +- Contributes to collagen formation for skin, bones, cartilage, gums, and blood vessels. +- Helps protect your cells from oxidative stress. +- Contributes to reduced tiredness and fatigue. + +Enjoy steady, all-day vitamin C with NOW Foods Vitamin C-1000 Sustained Release Tablets. Each tablet provides 1000 mg of vitamin C, plus rose hips for a classic botanical touch. + +Vitamin C supports your immune system and helps your body form collagen—essential for healthy skin, bones, cartilage, gums, and blood vessels. It also helps protect your cells from oxidative stress and supports normal energy-yielding metabolism, so you can feel your best throughout the day. + +This sustained-release formula is designed to help maintain consistent vitamin C levels, making it an easy way to support your daily routine and overall wellbeing. + +## Ingredients + +Saw Palmetto Berry Extract (Serenoa repens) (Standardised To 85-95% Fatty Acids) (USPlus®), Pumpkin Seed Oil (Cucurbita pepo) (Cold Pressed), Vegetarian Softgel Capsule (Modified Corn Starch, Glycerin, Carrageenan, Water) + +## Suggested Use + +Take 1 tablet daily.\n + +\nThis product is designed to release over an extended period of time.\n + +\nStore in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-vitamin-c-powder-8-oz.md b/healf-crawler/data/now-foods-vitamin-c-powder-8-oz.md new file mode 100644 index 0000000..3e5638d --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-c-powder-8-oz.md @@ -0,0 +1,24 @@ +# Vitamin C Crystals Powder + +> Source: https://healf.com/products/now-foods-vitamin-c-powder-8-oz + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Supports your immune system and helps protect cells from oxidative stress. +- Promotes normal collagen formation for healthy skin, bones, and more. +- Helps increase iron absorption and reduces tiredness and fatigue. +- Pure, pharmaceutical grade powder—simply stir into your favourite drinks. + +Start your day with a simple step towards feeling your best. Vitamin C Crystals Powder from NOW Foods delivers pure ascorbic acid in a versatile, easy-to-mix form—perfect for adding to water, juice, or smoothies. + +With vitamin C to support your immune system and help protect your cells from oxidative stress, this powder fits seamlessly into your daily routine. It also contributes to normal collagen formation, supporting the healthy function of your skin, bones, cartilage, gums, teeth, and blood vessels. + +Each serving provides a high-strength 1,100mg dose of vitamin C, helping to increase iron absorption and reduce tiredness and fatigue—so you can take on whatever the day brings. + +## Ingredients + +Vitamin C (Ascorbic Acid) (1100 mg) diff --git a/healf-crawler/data/now-foods-vitamin-d-3-1000-iu.md b/healf-crawler/data/now-foods-vitamin-d-3-1000-iu.md new file mode 100644 index 0000000..b62b3a3 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-d-3-1000-iu.md @@ -0,0 +1,41 @@ +# Vitamin D-3 1000 IU + +> Source: https://healf.com/products/now-foods-vitamin-d-3-1000-iu + +**Brand:** NOW Foods | **Price:** £9.49 + +## Description + +**Key Benefits for Everyday Wellbeing** + +- Delivers 1000 IU of vitamin D3 in each easy-to-take softgel. +- Supports the maintenance of normal bones and teeth. +- Helps maintain normal muscle function. +- Contributes to the normal function of the immune system. + +Feel confident in your daily routine with Vitamin D-3 1000 IU from NOW Foods. This essential nutrient helps your body absorb and use calcium and phosphorus, supporting normal blood calcium levels and the maintenance of strong bones and teeth. + +Vitamin D3 also plays a role in keeping your muscles working as they should and contributes to the normal function of your immune system. Ideal for those with limited sun exposure, this convenient softgel helps you maintain healthy vitamin D levels all year round. + +## Ingredients + +Vitamin D (as D3 Cholecalciferol) (from Lanolin) (1,000 IU), Extra Virgin Olive Oil, Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water], Safflower Oil + +## Suggested Use + +Take 1 softgel daily with a meal. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-vitamin-d-3-2-000-iu.md b/healf-crawler/data/now-foods-vitamin-d-3-2-000-iu.md new file mode 100644 index 0000000..73de9d9 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-d-3-2-000-iu.md @@ -0,0 +1,24 @@ +# Vitamin D-3 2,000 IU + +> Source: https://healf.com/products/now-foods-vitamin-d-3-2-000-iu + +**Brand:** NOW Foods | **Price:** £2.69 – £8.99 + +## Description + +**Key Benefits** + +- Helps maintain normal bones and teeth—your foundation for everyday movement. +- Supports normal muscle function, so you can stay active and strong. +- Contributes to the normal function of your immune system, helping you feel your best all year round. + +Discover a simple way to top up your vitamin D with NOW Foods' 2,000 IU Vitamin D-3. Each easy-to-take softgel delivers a highly absorbable form of this essential nutrient, designed to fit seamlessly into your daily routine. + +## Ingredients + +Vitamin D (as D3 Cholecalciferol) (from Lanolin) (2,000 IU), Safflower Oil, Extra Virgin Olive Oil, Softgel Capsule (Bovine Gelatin, Glycerin, Water) + +## Suggested Use + +Take 1 softgel daily with a meal. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-vitamin-d-3-5-000-iu.md b/healf-crawler/data/now-foods-vitamin-d-3-5-000-iu.md new file mode 100644 index 0000000..d3a68f6 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-d-3-5-000-iu.md @@ -0,0 +1,24 @@ +# Vitamin D-3 5,000 IU + +> Source: https://healf.com/products/now-foods-vitamin-d-3-5-000-iu + +**Brand:** NOW Foods | **Price:** £6.99 – £12.99 + +## Description + +**Key Benefits** + +- Helps maintain normal bones and teeth, so you can stay active every day. +- Supports normal muscle function—ideal for your daily movement and strength. +- Contributes to the normal function of your immune system, helping you feel your best year-round. + +Experience the difference of NOW Foods' high potency Vitamin D-3 5,000 IU. This easy-to-take softgel delivers vitamin D in a highly absorbable form, designed to fit seamlessly into your routine and help you maintain healthy bones, muscles, teeth, and immune function. + +## Ingredients + +Vitamin D (as D₃ Cholecalciferol) (from Lanolin) (5,000 IU), Extra Virgin Olive Oil, Softgel Capsule (Bovine Gelatin [BSE-Free], Glycerin, Water), Safflower Oil + +## Suggested Use + +Take 1 softgel daily with a healthy fat-containing meal. +Store in a cool, dry place after opening. diff --git a/healf-crawler/data/now-foods-vitamin-d-3-k-2-1000-iu-45-mcg.md b/healf-crawler/data/now-foods-vitamin-d-3-k-2-1000-iu-45-mcg.md new file mode 100644 index 0000000..032e4fa --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-d-3-k-2-1000-iu-45-mcg.md @@ -0,0 +1,41 @@ +# Vitamin D-3 & K-2 1000 IU / 45 mcg + +> Source: https://healf.com/products/now-foods-vitamin-d-3-k-2-1000-iu-45-mcg + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Delivers 1000 IU vitamin D3 and 45 mcg vitamin K2 in every capsule. +- Helps maintain normal bones, teeth, and muscle function. +- Supports normal absorption and use of calcium and phosphorus. +- Contributes to normal blood calcium levels and blood clotting. + +Start each day with a blend designed for bone and dental support. Vitamin D-3 & K-2 1000 IU / 45 mcg combines two essential nutrients that work together to help you maintain normal bones. Vitamin D3 supports the absorption and use of calcium and phosphorus, helps keep blood calcium levels in check, and contributes to the maintenance of normal bones, teeth, and muscle function. Vitamin K2 complements vitamin D3 by supporting normal blood clotting and helping to maintain normal bones. + +With 25 mcg (1000 IU) of vitamin D3 from lanolin and 45 mcg of vitamin K2 (MK-4) in each capsule, this convenient formula fits easily into your daily routine—ideal for those looking to support their bone health and keep moving with confidence. + +## Ingredients + +Vitamin K2 (as Menaquinone-4) (MK-4), Vitamin D (as D3 Cholecalciferol) (from Lanolin) (1,000 IU), Rice Flour, Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule 1 to 2 times daily with food. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking any anti-coagulant (such as warfarin, coumadin, heparin) or other medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-vitamin-k-2-100mcg-100-vcaps.md b/healf-crawler/data/now-foods-vitamin-k-2-100mcg-100-vcaps.md new file mode 100644 index 0000000..fbbfe0c --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-k-2-100mcg-100-vcaps.md @@ -0,0 +1,38 @@ +# Vitamin K-2 100mcg + +> Source: https://healf.com/products/now-foods-vitamin-k-2-100mcg-100-vcaps + +**Brand:** NOW Foods | **Price:** £9.99 + +## Description + +**Key Benefits** + +- Supports normal blood clotting with vitamin K2. +- Helps maintain healthy bones as part of your daily routine. +- Features biologically active K2 for easy absorption. +- Convenient capsule for everyday wellbeing. + +Start your day with confidence—Vitamin K-2 100mcg from NOW Foods is designed to fit seamlessly into your routine. Vitamin K2 contributes to normal blood clotting and helps maintain normal bones, making it a smart choice for those looking to support their everyday wellbeing. This formula uses the MK-4 form of vitamin K2, chosen for its bioavailability and ease of absorption. Enjoy simple, effective support in a capsule you can trust. + +With a focus on quality and purity, this supplement is made without common allergens and is produced in a GMP facility. Choose Vitamin K-2 100mcg for reliable, daily support—just what you need for your wellbeing. + +## Ingredients + +Alfalfa Powder (Aerial Parts), Vitamin K2 (as Menaquinone-4) (MK-4), Hypromellose (Cellulose Capsule), Antioxidant (Ascorbyl Palmitate), Rice Flour, Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily with a meal. + Store in a cool, dry place after opening. + + For adults only. Do not use if pregnant, nursing, or allergic or contraindicated to aspirin. Consult physician if taking medication (especially blood thinners such as warfarin, Coumadin®, heparin and aspirin) or have a medical condition. Discontinue use two weeks prior to surgery or if stomach upset occurs. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-vitamin-k-2-mk7-100-mcg.md b/healf-crawler/data/now-foods-vitamin-k-2-mk7-100-mcg.md new file mode 100644 index 0000000..d2ad609 --- /dev/null +++ b/healf-crawler/data/now-foods-vitamin-k-2-mk7-100-mcg.md @@ -0,0 +1,40 @@ +# Vitamin K-2 (Mk7) 100 mcg + +> Source: https://healf.com/products/now-foods-vitamin-k-2-mk7-100-mcg + +**Brand:** NOW Foods | **Price:** £10.99 – £21.99 + +## Description + +**Key Benefits** + +- Delivers 100 mcg of vitamin K2 (MK-7) in every capsule. +- Supports the maintenance of normal bones, every day. +- Helps keep normal blood clotting working as it should. + +Feel confident in your daily routine with NOW Foods Vitamin K-2 (MK-7) 100 mcg. This formula features MenaQ7®, a carefully researched form of vitamin K2 sourced from chickpeas. Vitamin K is known to contribute to the maintenance of normal bones and to normal blood clotting—key factors for everyday wellbeing. The MK-7 form is retained in the body longer than vitamin K1, making it a convenient choice for ongoing support. + +Made without soy or common allergens, this easy-to-take veg capsule is a simple way to help maintain your vitamin K intake as part of a balanced diet. + +## Ingredients + +Vitamin K2 (as Menaquinone-7) (MK-7) (MenaQ7®), Rice Flour, Capsule Shell (Hypromellose), Maltodextrin, Antioxidant (Ascorbyl Palmitate), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 capsule daily with a meal. + + +Store in a cool, dry place after opening. + + +For adults only. Consult physician if pregnant/nursing, taking medication (especially anti-coagulant drugs such as warfarin, Coumadin®, heparin), or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-xyliwhite-coconut-oil-toothpaste-gel-mint-flavor.md b/healf-crawler/data/now-foods-xyliwhite-coconut-oil-toothpaste-gel-mint-flavor.md new file mode 100644 index 0000000..9aa56be --- /dev/null +++ b/healf-crawler/data/now-foods-xyliwhite-coconut-oil-toothpaste-gel-mint-flavor.md @@ -0,0 +1,28 @@ +# XyliWhite™ Coconut Oil Toothpaste Gel - Mint Flavor + +> Source: https://healf.com/products/now-foods-xyliwhite-coconut-oil-toothpaste-gel-mint-flavor + +**Brand:** NOW Foods | **Price:** £4.99 + +## Description + +**Key Benefits** + +- With xylitol and sorbitol to help maintain tooth mineralisation when used instead of sugar. +- Natural mint and coconut oil for a fresh, clean mouthfeel. +- Fluoride-free and gentle on enamel for everyday use. +- Suitable for both adults and children. + +Start and end your day with a naturally clean smile. XyliWhite™ Coconut Oil Toothpaste Gel from NOW Foods is crafted with 25% xylitol and a blend of coconut oil and natural mint, offering a gentle, fluoride-free option for your daily oral care routine. Xylitol and sorbitol, when used instead of sugar, contribute to the maintenance of tooth mineralisation—helping you care for your teeth with every brush. The smooth gel texture and refreshing mint flavour leave your mouth feeling revitalised, while coconut oil and papain provide a gentle cleanse. Free from harsh chemicals, this toothpaste gel is designed for the whole family to enjoy a fresh, confident clean. + +## Ingredients + +Xylitol, Glycerin, Hydrated Silica, Water, Sorbitol, Cocos Nucifera (Coconut) Oil (10%), Sodium Coco-Sulfate, Natural Coconut Flavor, Xanthan Gum, Potassium Sorbate, Sorbic Acid, Papain, Menthol, Sodium Bicarbonate, Sodium Carbonate, Melaleuca Alternifolia (Tea Tree) Leaf Oil. + +## Suggested Use + +Adults and children 2 years and older: Apply XyliWhite™ toothpaste gel on to a soft bristle toothbrush. Brush thoroughly after meals, at least twice a day, or as directed by your dentist.\n + +\nXylitol is harmful to pets; seek veterinary care immediately if ingestion is suspected. Learn more about pet safety.\n + +\nWARNING: Ingestion of Xylitol, in any product is a medical emergency if consumed by pets, especially dogs, ferrets and rabbits. If you suspect your pet ingested xylitol by either observing this happen or finding evidence of a chewed container or product, and the animal is acting normal, you should attempt to give animal(s) a small meal and at the same time, immediately seek medical attention. If you have evidence that they ingested a product that contains xylitol and the animal(s) is not acting normal you should seek medical attention immediately without giving the animal any food. diff --git a/healf-crawler/data/now-foods-xyliwhite-mint-baking-soda-toothpaste-6-4-oz.md b/healf-crawler/data/now-foods-xyliwhite-mint-baking-soda-toothpaste-6-4-oz.md new file mode 100644 index 0000000..e76ed92 --- /dev/null +++ b/healf-crawler/data/now-foods-xyliwhite-mint-baking-soda-toothpaste-6-4-oz.md @@ -0,0 +1,25 @@ +# XyliWhite™ Platinum Mint Toothpaste Gel with Baking Soda + +> Source: https://healf.com/products/now-foods-xyliwhite-mint-baking-soda-toothpaste-6-4-oz + +**Brand:** NOW Foods | **Price:** £3.99 + +## Description + +**Key Benefits** + +- With 25% xylitol to help maintain tooth mineralisation when used instead of sugar. +- Baking soda and peppermint gently clean and leave your breath feeling fresh. +- Vegetarian, vegan, and fluoride-free for a gentle daily routine. + +Start and end your day with a refreshing clean. XyliWhite™ Platinum Mint Toothpaste Gel from NOW Foods features 25% xylitol, which helps maintain tooth mineralisation when used in place of sugar. Baking soda works alongside natural peppermint to gently clean your teeth and keep your breath feeling fresh. This fluoride-free formula is made with pure, vegetarian, and vegan-friendly ingredients—free from SLS, gluten, and parabens—making it a gentle choice for the whole family. + +## Ingredients + +Water, xylitol (25%), hydrated silica, sodium bicarbonate, glycerin, sorbitol, natural peppermint flavor, sodium coco-sulfate, chondrus crispus (carrageenan), potassium sorbate, papain, sodium carbonate, melaleuca alternifolia (tea tree) leaf oil. + +## Suggested Use + +Adults and children 2 years and older: Apply XyliWhite™ toothpaste gel on to a soft bristle toothbrush. Brush thoroughly after meals at least twice a day, or as directed by your dentist. + +WARNING: Ingestion of Xylitol, in any product is a veterinary medical emergency if consumed by pets, especially dogs, ferrets and rabbits. If you suspect your pet ingested xylitol by either observing this happen or finding evidence of a chewed container or product, and the animal is acting normal, you should attempt to give animal(s) a small meal and at the same time, immediately seek veterinary medical attention. If you have evidence that they ingested a product that contains xylitol and the animal(s) is not acting normal you should seek veterinary medical attention immediately without giving the animal any food. diff --git a/healf-crawler/data/now-foods-xyliwhite-refreshmint-toothpaste-gel-6-4-oz.md b/healf-crawler/data/now-foods-xyliwhite-refreshmint-toothpaste-gel-6-4-oz.md new file mode 100644 index 0000000..a9aff34 --- /dev/null +++ b/healf-crawler/data/now-foods-xyliwhite-refreshmint-toothpaste-gel-6-4-oz.md @@ -0,0 +1,25 @@ +# XyliWhite™ Refreshmint Toothpaste Gel + +> Source: https://healf.com/products/now-foods-xyliwhite-refreshmint-toothpaste-gel-6-4-oz + +**Brand:** NOW Foods | **Price:** £3.99 + +## Description + +**Key Benefits** + +- With 25% xylitol and sorbitol to help maintain tooth mineralisation when used instead of sugar. +- Gently cleans teeth and leaves your breath feeling minty fresh. +- Vegetarian, vegan, and fluoride-free for everyday peace of mind. + +Start and end your day with a refreshing clean. XyliWhite™ Refreshmint Toothpaste Gel from NOW Foods features 25% xylitol and added sorbitol, which support the maintenance of tooth mineralisation when used in place of sugar. The lively blend of peppermint and spearmint oils delivers a crisp, cool taste, while tea tree oil and papain gently care for your smile. Free from SLS, gluten, and parabens, this vegan-friendly formula is a gentle choice for the whole family. + +## Ingredients + +Water, xylitol (25%), hydrated silica, glycerin, sorbitol, sodium bicarbonate, sodium carbonate, sodium coco-sulfate, carrageenan (Chondrus crispus), tea tree (Melaleuca alternifolia) leaf oil, peppermint (Mentha piperita) oil, spearmint (Mentha viridis) oil, papain, potassium sorbate. + +## Suggested Use + +Adults and children 2 years and older: Apply XyliWhite™ toothpaste gel on to a soft bristle toothbrush. Brush thoroughly after meals at least twice a day, or as directed by your dentist. + +WARNING: Ingestion of Xylitol, in any product is a veterinary medical emergency if consumed by pets, especially dogs, ferrets and rabbits. If you suspect your pet ingested xylitol by either observing this happen or finding evidence of a chewed container or product, and the animal is acting normal, you should attempt to give animal(s) a small meal and at the same time, immediately seek veterinary medical attention. If you have evidence that they ingested a product that contains xylitol and the animal(s) is not acting normal you should seek veterinary medical attention immediately without giving the animal any food. diff --git a/healf-crawler/data/now-foods-zinc-gluconate-50-mg.md b/healf-crawler/data/now-foods-zinc-gluconate-50-mg.md new file mode 100644 index 0000000..3a8e447 --- /dev/null +++ b/healf-crawler/data/now-foods-zinc-gluconate-50-mg.md @@ -0,0 +1,37 @@ +# Zinc 50mg + +> Source: https://healf.com/products/now-foods-zinc-gluconate-50-mg + +**Brand:** NOW Foods | **Price:** £3.99 – £8.99 + +## Description + +**Key Benefits** + +- Zinc supports your immune system and helps protect cells from oxidative stress. +- Contributes to the maintenance of normal skin, hair, and nails. +- Helps maintain normal cognitive function and vision. +- Formulated with zinc gluconate for effective absorption and daily balance. + +Feel confident in your daily routine with NOW Foods Zinc 50mg. Each tablet delivers a high-strength dose of zinc gluconate, designed for effective absorption and to help you meet your nutritional needs. Zinc is essential for the normal function of your immune system, supports healthy skin, hair, and nails, and contributes to normal cognitive function and vision. It also helps protect your cells from oxidative stress and plays a role in normal DNA synthesis and cell division. + +If your diet is limited or you’re looking to fill nutritional gaps, this quality zinc supplement offers reliable support for your everyday wellbeing. + +## Ingredients + +Zinc (Elemental) (from 403 mg Zinc Gluconate), Bulking Agent (Microcrystalline Cellulose), Vegetarian Coating, Anti-Caking Agent (Magnesium Stearate (Vegetable Source)), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take one tablet daily with a meal. Store in a cool, dry place after opening. + +Caution: For adults only. This product is not intended for long term use, use only as directed. Do not use if pregnant or nursing. Consult a physician if you are taking medication or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-zinc-glycinate.md b/healf-crawler/data/now-foods-zinc-glycinate.md new file mode 100644 index 0000000..ea4e793 --- /dev/null +++ b/healf-crawler/data/now-foods-zinc-glycinate.md @@ -0,0 +1,39 @@ +# Zinc Glycinate + +> Source: https://healf.com/products/now-foods-zinc-glycinate + +**Brand:** NOW Foods | **Price:** £10.99 + +## Description + +**Key Benefits** + +- With zinc to support the normal function of your immune system and help protect cells from oxidative stress. +- Helps maintain normal skin, hair, and nails—so you can feel your best every day. +- Contributes to normal cognitive function and vision for daily clarity. +- Highly absorbable chelated zinc for effective, reliable support. + +Give your body the essential mineral it needs with NOW® Zinc Glycinate Softgels. Zinc plays a vital role in many everyday processes, from supporting your immune system to helping maintain healthy skin, hair, and nails. It also contributes to normal cognitive function, vision, and the protection of cells from oxidative stress. Because your body doesn’t store zinc, a regular, quality source is key. + +Each softgel delivers 30 mg of highly bioavailable zinc in a chelated form—bound to glycine for better absorption—plus 250 mg of cold-pressed pumpkin seed oil. This thoughtful blend is designed for easy, daily use, helping you stay on top of your wellbeing with a single, easy-to-swallow softgel. + +## Ingredients + +Pumpkin Seed Oil (Cold Pressed), Zinc (Elemental) (from 150 mg Zinc Bisglycinate) (TRAACS™), Softgel Capsule [Bovine Gelatin (BSE-Free), Glycerin, Water, Carob], Beeswax, Emulsifier (**Soy (Soybeans)** Lecithin) + +## Suggested Use + +Take 1 softgel daily with a meal. + + Store in a cool, dry place after opening. + + Caution: For adults only. Consult physician if pregnant/nursing, taking medication, or have a medical condition. Keep out of reach of children. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/now-foods-zinc-picolinate-50-mg-veg-capsules.md b/healf-crawler/data/now-foods-zinc-picolinate-50-mg-veg-capsules.md new file mode 100644 index 0000000..207b223 --- /dev/null +++ b/healf-crawler/data/now-foods-zinc-picolinate-50-mg-veg-capsules.md @@ -0,0 +1,24 @@ +# Zinc Picolinate - 50 mg + +> Source: https://healf.com/products/now-foods-zinc-picolinate-50-mg-veg-capsules + +**Brand:** NOW Foods | **Price:** £5.99 – £9.99 + +## Description + +#### **Key Benefits** + +- Supports your immune system with easily absorbed zinc. +- Helps maintain healthy skin, hair, and nails for daily confidence. +- Contributes to normal cognitive function and clear vision. +- Plays a part in fertility, reproduction, and cell protection. + +Zinc Picolinate is a form of zinc selected for its excellent absorption, helping your body make the most of this essential mineral. Zinc contributes to the protection of cells from oxidative stress, supports normal metabolism and protein synthesis, and helps maintain healthy bones—making it a simple way to support your daily routine. + +## Ingredients + +Zinc (elemental) (from 270 mg Zinc Picolinate), Rice Flour, Hypromellose (Cellulose Capsule), Stearic Acid (Vegetable Source) + +## Suggested Use + +Take 1 capsule daily with a meal. diff --git a/healf-crawler/data/now-foods-zinc-transporters-tablets.md b/healf-crawler/data/now-foods-zinc-transporters-tablets.md new file mode 100644 index 0000000..5e0601a --- /dev/null +++ b/healf-crawler/data/now-foods-zinc-transporters-tablets.md @@ -0,0 +1,31 @@ +# Zinc Transporters Tablets + +> Source: https://healf.com/products/now-foods-zinc-transporters-tablets + +**Brand:** NOW Foods | **Price:** £7.99 + +## Description + +**Key Benefits** + +- Provides zinc, which contributes to normal immune system function. +- Zinc contributes to the maintenance of normal skin, hair and nails. +- Zinc contributes to normal cognitive function. +- Zinc contributes to the protection of cells from oxidative stress. + + +Zinc Transporters Tablets provide 22 mg of elemental zinc per tablet, supplied through a blend of zinc gluconate, zinc monomethionine, zinc picolinate and zinc bisglycinate. This formulation delivers zinc in multiple commonly used forms within a single daily serving. + + +Zinc is an essential mineral that contributes to the normal function of the immune system and plays a role in maintaining normal skin, hair and nails. It also contributes to normal cognitive function and normal macronutrient metabolism, supporting key processes involved in everyday health. + + +Zinc further contributes to the protection of cells from oxidative stress and to normal DNA synthesis, reflecting its role at a cellular level. This tablet format offers a straightforward way to supplement zinc intake as part of a balanced diet. + +## Ingredients + +Zinc (Elemental) (From Zinc Gluconate, L-OptiZinc® Monomethionine, Zinc Picolinate, Zinc Bisglycinate (Albion™)), Bulking Agent (Microcrystalline Cellulose), Anti-Caking Agent (Stearic Acid (Vegetable Source)), Acidity Regulator (Citric Acid), Anti-Caking Agent (Silicon Dioxide) + +## Suggested Use + +Take 1 tablet daily with a meal.\n\n diff --git a/healf-crawler/data/terranova-antioxidant-nutrient-complex.md b/healf-crawler/data/terranova-antioxidant-nutrient-complex.md new file mode 100644 index 0000000..ed9efd2 --- /dev/null +++ b/healf-crawler/data/terranova-antioxidant-nutrient-complex.md @@ -0,0 +1,39 @@ +# Antioxidant Nutrient Complex + +> Source: https://healf.com/products/terranova-antioxidant-nutrient-complex + +**Brand:** Terranova | **Price:** £13.49 – £17.99 + +## Description + +**Key Benefits** + +- Supports your cells with nutrients that help protect against oxidative stress. +- Botanical-rich formula designed for daily vitality and balance. +- Vegan-friendly and free from additives or fillers. +- Includes vitamin C, zinc, copper, selenium, and manganese to support normal immune function and energy-yielding metabolism. + +Start your day with confidence—Terranova Antioxidant Nutrient Complex is expertly crafted to fit seamlessly into your routine. This blend features the unique Magnifood Complex, combining stabilised rice bran, green barley grass, turmeric, acai, sea buckthorn, and more, all fresh freeze-dried to help preserve their natural properties. + +With nutrients like vitamin C, vitamin E, zinc, copper, manganese, and selenium, this formula contributes to the protection of cells from oxidative stress, supports the normal function of your immune system, and helps maintain energy-yielding metabolism. Enjoy a clean, plant-focused supplement that’s as vibrant as your lifestyle. + +## Ingredients + +MAGNIFOOD COMPLEX, Stabilized Rice Bran, Green Barley Grass [Hordeum vulgare] (fresh freeze dried – ORGANIC), Sea Buckthorn Berry [Hippophae rhamnoides] (fresh freeze dried), Turmeric Root [Curcuma longa] (fresh freeze dried – ORGANIC), Acai Berry [Euterpe oleracea] (fresh freeze dried – ORGANIC), Green Tea Leaf [Camellia sinensis], Blackberry [Rubus fruticosus] (fresh freeze dried – ORGANIC), Watercress [Nasturtium officinale] (fresh freeze dried – ORGANIC), Pomegranate Arils [Punica granatum] (fresh freeze dried – ORGANIC), Kale [Brassica oleracea var acephala] (fresh freeze dried – ORGANIC), Cranberry [Vaccinium macrocarpon] (fresh freeze dried – ORGANIC), Vitamin C (as Ca, Mg, Zn ascorbate), Vitamin E (d-alpha tocopheryl succinate), L-Glutathione, Larch Tree Arabinogalactan [Larix laricina], Zinc (as ascorbate), Natural Beta Carotene/Mixed Carotenoids, Manganese (as bisglycinate chelate\* TRAACS™), Copper (as gluconate), Selenium (as selenomethionine), Vegetarian Capsule Shell (hydroxypropyl methylcellulose), Contains barley grass – consult physician if coeliac. + +## Suggested Use + +As a food supplement for adults, take 1 or 2 capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. Do not exceed stated dose unless directed by a healthcare practitioner. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-b-complex-w-vitamin-c-50s.md b/healf-crawler/data/terranova-b-complex-w-vitamin-c-50s.md new file mode 100644 index 0000000..660417f --- /dev/null +++ b/healf-crawler/data/terranova-b-complex-w-vitamin-c-50s.md @@ -0,0 +1,37 @@ +# B-Complex with Vitamin C + +> Source: https://healf.com/products/terranova-b-complex-w-vitamin-c-50s + +**Brand:** Terranova | **Price:** £9.99 – £16.99 + +## Description + +**Key Benefits** + +- Feel energised every day—B vitamins and vitamin C help reduce tiredness and fatigue. +- Support your mind and mood—B vitamins and magnesium contribute to normal psychological and nervous system function. +- Care for your skin—biotin, niacin, and vitamin C help maintain normal skin. +- Formulated for optimal absorption with the MAGNIFOOD botanical complex. + +Terranova B-Complex with Vitamin C brings together essential B vitamins, vitamin C, and a carefully selected blend of botanicals. This formula is designed to help you feel your best—supporting energy-yielding metabolism, mental performance, and skin health. With nutrients like vitamin B12, B6, niacin, and magnesium, it helps reduce tiredness and supports your nervous system, while vitamin C and biotin contribute to healthy skin. The unique MAGNIFOOD complex features botanicals such as rhodiola, ashwagandha, and green oat seed, chosen to complement the vitamins and enhance absorption. + +Suitable for vegans and free from artificial additives. + +## Ingredients + +MAGNIFOOD COMPLEX 540mg PROVIDING: Stabilized Rice Bran 250mg Rhodiola Root Extract [Rhodiola rosea] (freeze dried aqueous extract) 50mg Siberian Ginseng [Eleutherococcus senticosus] 50mg Ashwagandha Root [Withania somnifera] 50mg Green Oat Seed [Avena sativa] (fresh freeze dried – ORGANIC) 25mg Alfalfa Flower & Leaf [Medicago sativa] (fresh freeze dried – ORGANIC) 25mg Parsley Leaf [Petroselinum crispum] (fresh freeze dried – ORGANIC) 25mg Dandelion Leaf [Taraxacum officinale] (fresh freeze dried – ORGANIC) 25mg Beet Root & Greens Juice [Beta vulgaris] (fresh freeze dried – ORGANIC) 20mg Pumpkin Seed [Cucurbita pepo] 20mg AND Vitamin C (as Ca, Mg ascorbate) 250mg Magnesium (as oxide, citrate, ascorbate) 50mg Pantothenic Acid (as calcium pantothenate) 30mg Inositol 30mg Niacin (as niacinamide) 25mg Calcium (as carbonate, citrate, ascorbate) 25mg Vitamin B6 (as pyridoxine hydrochloride) 20mg Vitamin B1 (as thiamin mononitrate) 20mg Vitamin B2 (riboflavin) 20mg Choline (as bitartrate) 15mg Folate (as calcium L-methylfolate) 200ug Vitamin B12 (as methylcobalamin) 50ug Biotin (as prep.) 50ug. + +## Suggested Use + +As a food supplement for adults, take 1 or 2 capsules of Terranova B-Complex with Vitamin C daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-coq10-30mg-complex.md b/healf-crawler/data/terranova-coq10-30mg-complex.md new file mode 100644 index 0000000..7166ab4 --- /dev/null +++ b/healf-crawler/data/terranova-coq10-30mg-complex.md @@ -0,0 +1,37 @@ +# CoQ10 30mg Complex + +> Source: https://healf.com/products/terranova-coq10-30mg-complex + +**Brand:** Terranova | **Price:** £12.99 – £24.99 + +## Description + +**Key Benefits** + +- Formulated with CoQ10 to support your body’s natural energy production. +- Features Terranova’s Magnifood blend for a holistic approach to wellbeing. +- Includes botanicals like acai berry and sea buckthorn, fresh freeze-dried for optimal potency. +- Vegetarian-friendly capsule for easy daily use. + +Start your day with a little extra support—Terranova CoQ10 30mg Complex brings together coenzyme Q10, a key component in the body’s energy process, with a thoughtfully selected blend of botanicals. CoQ10 is found in every cell, especially in the mitochondria, where it helps your body convert food into energy. The Magnifood Complex combines stabilised rice bran, acai berry, sea buckthorn, artichoke leaf, and larch tree arabinogalactan, all fresh freeze-dried to help preserve their natural properties. This unique formula is designed for those looking to maintain their everyday wellbeing, with a vegetarian capsule that fits easily into your routine. + +## Ingredients + +MAGNIFOOD COMPLEX, Stabilized Rice Bran, Acai Berry [Euterpe Oleracea] (fresh freeze dried – ORGANIC), Sea Buckthorn Berry [Hippophae Rhamnoides] (fresh freeze dried), Artichoke Leaf [Cynara Scolymus] (fresh freeze dried – ORGANIC), CoQ10 (coenzyme Q10 – as ubiquinone), Larch Tree Arabinogalactan [Larix Laricina], Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking anti-coagulant (blood-thinning) drug, anti-hypertensive drugs or any other prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-digestive-enzyme-complex-100s.md b/healf-crawler/data/terranova-digestive-enzyme-complex-100s.md new file mode 100644 index 0000000..8a5fccf --- /dev/null +++ b/healf-crawler/data/terranova-digestive-enzyme-complex-100s.md @@ -0,0 +1,33 @@ +# Digestive Enzyme Complex + +> Source: https://healf.com/products/terranova-digestive-enzyme-complex-100s + +**Brand:** Terranova | **Price:** £13.49 – £20.99 + +## Description + +**Key Benefits** + +- Features a broad spectrum of enzymes to help break down proteins, fats, and carbohydrates. +- Includes the unique MAGNIFOOD blend with botanicals and whole foods. + +Terranova Digestive Enzyme Complex brings together carefully selected enzymes and plant-based ingredients, crafted to complement your everyday diet. The MAGNIFOOD complex combines botanicals and phytonutrient-rich foods, supporting a balanced approach to digestive care. + +## Ingredients + +MAGNIFOOD COMPLEX 450mg PROVIDING: Fennel Seed [Foeniculum vulgare] 100mg Green Barley Grass [Hordeum vulgare] 100mg Stabilized Rice Bran 100mg Ginger Rhizome/Root [Zingiber officinale] (fresh freeze dried -ORGANIC) 50mg Artichoke Leaf [Cynara scolymus] (fresh freeze dried – ORGANIC) 50mg Cardamom Pod [Elettaria cardamomum] 25mg Gentian Root [Gentiana lutea] 25mg AND Protease (A. oryzae) 14,690 HUT 27.6mg Amylase (A. oryzae) 2,545 DU 16.9mg Lactase (A. oryzae) 727 ALU 7.3mg Glucoamylase (A. niger) 6.5 AGU 7.3mg Alpha Galactosidase (A. niger) 109 GalU 7.3mg Protease (A. niger) 36 SAPU 6.8mg Invertase (S. cervisiae) 291 SU 3.3mg Lipase (C. rugosa) 349 FIP 1.9mg Glucoamylase (R. oryzae) 0.72 AGU 1.1mg Lipase (A. niger) 7.27 FIP 0.15mg Lipase (R. oryzae) 7.27 FIP 0.15mg. + +## Suggested Use + +As a food supplement for adults, take 1 Terranova Digestive Enzyme Complex capsule daily with small meals or 1 or 2 capsules daily with large meals. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-digestive-enzyme-with-microflora.md b/healf-crawler/data/terranova-digestive-enzyme-with-microflora.md new file mode 100644 index 0000000..cbfa967 --- /dev/null +++ b/healf-crawler/data/terranova-digestive-enzyme-with-microflora.md @@ -0,0 +1,37 @@ +# Digestive Enzyme with Microflora + +> Source: https://healf.com/products/terranova-digestive-enzyme-with-microflora + +**Brand:** Terranova | **Price:** £14.99 – £28.49 + +## Description + +**Key Benefits** + +- Plant-based enzymes to help break down proteins, fats, and carbohydrates. +- Botanicals like fennel seed, ginger, and artichoke leaf complement your daily routine. +- Includes microflora and prebiotic fibres for a balanced formula. +- Suitable for vegetarians and vegans. + +Start every meal with confidence. Terranova Digestive Enzyme with Microflora blends a broad spectrum of plant-based enzymes with carefully selected botanicals, including fennel seed, ginger, and artichoke leaf. These ingredients work together to support the natural digestive process, helping you get the most from your food. The addition of microflora and prebiotic fibres rounds out this thoughtful formula, making it a gentle choice for daily wellbeing. + +## Ingredients + +MAGNIFOOD COMPLEX, Fennel Seed [Foeniculum Vulgare] (ORGANIC), Ginger Rhizome/Root [Zingiber Officinale] (fresh freeze dried-ORGANIC), Burdock Root [Arctium Lappa] (fresh freeze dried-ORGANIC), Stabilized Rice Bran, Cardamom Pod [Elettaria Cardamomum] (ORGANIC), Artichoke Leaf [Cynara Scolymus] (fresh freeze dried-ORGANIC), DIGESTIVE ENZYME COMPLEX, Protease (A. oryzae), Amylase (A. oryzae), Lactase (A. oryzae), Glucoamylase (A. niger), Alpha Galactosidase (A. niger), Protease (A. niger), Invertase (S. cervisiae), Lipase (C. rugosa), Glucoamylase (R. oryzae), Lipase (A. niger), Lipase (R. oryzae), FOS (fructo-oligosaccharides), Larch Tree Arabinogalactan (Larix laricina), MICROFLORA COMPLEX, Lactiplantibacillus plantarum (Rosell-1012), Lacticaseibacillus paracasei (Rosell-215), Lacticaseibacillus rhamnosus (Rosell-11), Lactobacillus acidophilus/helveticus (Rosell-52), Bifidobacterium lactis (CHR Hansen BB-12), Vegetarian Capsule Shell (hydroxypropyl methylcellulose), \*\*Contains traces of soya + +## Suggested Use + +As a food supplement for adults, take 1 capsule with or at the beginning of a small meal and 1 or 2 capsules with or at the beginning of a large meal. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / REFRIGERATE AFTER OPENING + +Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding, or in those with a history of stomach or duodenal ulcers, unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-easy-iron-20mg-complex-50s.md b/healf-crawler/data/terranova-easy-iron-20mg-complex-50s.md new file mode 100644 index 0000000..f49ab3a --- /dev/null +++ b/healf-crawler/data/terranova-easy-iron-20mg-complex-50s.md @@ -0,0 +1,35 @@ +# Easy Iron 20mg Complex + +> Source: https://healf.com/products/terranova-easy-iron-20mg-complex-50s + +**Brand:** Terranova | **Price:** £6.99 – £11.99 + +## Description + +**Key benefits for daily vitality** + +- Iron supports your immune system and helps keep you feeling your best. +- Helps reduce tiredness and fatigue, so you can stay on top of your day. +- Contributes to normal cognitive function and energy-yielding metabolism. +- Synergistic botanicals in the MAGNIFOOD complex support gentle iron absorption. + +Terranova Easy Iron 20mg Complex is crafted to help you get the most from your iron supplement. The unique MAGNIFOOD blend—featuring rose hips, stabilised rice bran, green barley grass, and organic acai berry—works alongside iron bisglycinate, a gentle form that’s easy on the stomach. Iron contributes to normal formation of red blood cells and haemoglobin, supports oxygen transport in the body, and plays a role in cell division. With this thoughtful combination, you can support your energy, focus, and overall wellbeing—every single day. + +## Ingredients + +MAGNIFOOD COMPLEX 275mg PROVIDING: Rose Hips [Rosa canina] 100mg Stabilised Rice Bran 100mg Green Barley Grass [Hordeum vulgare] 50mg Acai Berry [Euterpe oleracea] (fresh freeze dried – ORGANIC) 25mg AND Iron (as bisglycinate [non-constipating]) 20mg. + +## Suggested Use + +As a food supplement for adults, take 1 Terranova Easy Iron 20mg Complex capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-full-spectrum-multivitamin-complex-100s.md b/healf-crawler/data/terranova-full-spectrum-multivitamin-complex-100s.md new file mode 100644 index 0000000..6c43de6 --- /dev/null +++ b/healf-crawler/data/terranova-full-spectrum-multivitamin-complex-100s.md @@ -0,0 +1,36 @@ +# Full-Spectrum Multivitamin Complex + +> Source: https://healf.com/products/terranova-full-spectrum-multivitamin-complex-100s + +**Brand:** Terranova | **Price:** £13.99 – £26.99 + +## Description + +**Key Benefits** + +- With vitamin C and vitamin D to support the normal function of your immune system. +- Includes B vitamins, iron, and magnesium to help reduce tiredness and fatigue. +- Iron, zinc, and iodine contribute to normal cognitive function and mental performance. +- Calcium, vitamin D, magnesium, and vitamin K help maintain normal bones and teeth. +- Zinc and biotin support the maintenance of normal skin, hair, and nails. + +Terranova’s Full-Spectrum Multivitamin Complex is thoughtfully crafted with a broad spectrum of nutrients and plant-based ingredients. Each capsule delivers a carefully balanced mix of vitamins and minerals—including vitamin C for immune support, B vitamins for energy, and magnesium for muscle function—alongside botanicals like spirulina and sea buckthorn. It’s an easy way to help you meet your daily nutritional needs and support your wellbeing, whatever your routine. + +## Ingredients + +MAGNIFOOD COMPLEX 450mg PROVIDING: Spirulina (Spirulina platensis – ORGANIC) 200mg Green Barley Grass 100mg Stabilized Rice Bran 50mg Sea Buckthorn Berry/Leaf (fresh freeze dried) 50mg Blackberry Fruit (fresh freeze dried) 25mg Watercress (fresh freeze dried) 25mg AND Vitamin C (as Ca, Mg, Zn ascorbate) 150mg Vitamin E (d-alpha tocopheryl succinate -100iu) 67mg Calcium (as carbonate, citrate, ascorbate) 30mg Vitamin B6 (as pyridoxine hydrochloride 25mg Pantothenic Acid (as calcium pantothenate) 25mg Vitamin B1 (as thiamin mononitrate) 20mg Vitamin B2 (riboflavin) 20mg Niacin (as niacinamide) 20mg Citrus Bioflavonoids 20mg Magnesium (as oxide, citrate, ascorbate) 15mg Inositol 15mg Choline (as bitartrate) 15mg Zinc (as ascorbate) 10mg Larch Tree Arabinogalactan 5.5mg Natural Beta Carotene/Mixed Carotenoids 4.5mg Alpha Lipoic Acid 2mg Manganese (as bisglycinate) 1.5mg Iron (as bisglycinate) 1.5mg Copper (as gluconate) 1.25mg Boron (as sodium borate) 1mg Vitamin A (as palmitate prep. – 2500iu) 751ug Folate (as calcium L-methylfolate) 200ug Iodine (as potassium iodide) 150ug Biotin (as prep.) 100ug Chromium (as picolinate) 50ug Vitamin B12 (as methylcobalamin) 50ug Selenium (as selenomethionine) 50ug Vitamin K1 (as phytonadione prep.) 10ug Vitamin D3 (vegan cholecalciferol – 200iu) 5ug. + +## Suggested Use + +As a food supplement for adults, take 1 or 2 Terranova Full Spectrum Multivitamin Complex capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-glucosamine-boswellia-msm-complex.md b/healf-crawler/data/terranova-glucosamine-boswellia-msm-complex.md new file mode 100644 index 0000000..cdc4807 --- /dev/null +++ b/healf-crawler/data/terranova-glucosamine-boswellia-msm-complex.md @@ -0,0 +1,37 @@ +# Glucosamine, Boswellia & MSM Complex + +> Source: https://healf.com/products/terranova-glucosamine-boswellia-msm-complex + +**Brand:** Terranova | **Price:** £12.99 – £24.99 + +## Description + +**Key Benefits** + +- With vitamin C to support normal collagen formation for healthy cartilage and bones. +- Contains manganese, which helps maintain normal bones and connective tissue. +- Includes selenium to help protect cells from oxidative stress and support normal immune function. +- Botanical blend designed to complement your daily wellbeing routine. + +Stay moving with confidence. Terranova’s Glucosamine, Boswellia & MSM Complex combines carefully chosen nutrients and botanicals to help you look after your body’s foundation. Vitamin C supports normal collagen formation, essential for the function of cartilage and bones. Manganese contributes to the maintenance of normal bones and the formation of connective tissue, while selenium helps protect your cells from oxidative stress and supports your immune system. The Magnifood Complex, with its freeze-dried botanicals, brings natural phytonutrients to your daily routine. This thoughtful formula is designed to help you maintain your structural health and keep up with life’s demands. + +## Ingredients + +MAGNIFOOD COMPLEX, Boswellia Resin, Stabilized Rice Bran, OptiMSM® (methylsulfonylmethane), Nettle Leaf-fresh freeze dried, Turmeric Root-fresh freeze dried-ORGANIC, Ginger Rhizome/Rootfresh-freeze dried-ORGANIC, Celery Stalk & Leaf-fresh freeze dried-ORGANIC, Glucosamine (as HCl – vegetarian source), Vitamin C (as Ca, Mg ascorbate), Manganese (as bisglycinate chelate\* TRAACS™), Selenium (as selenomethionine), Molybdenum (as sodium molybdate), Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 or 2 capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + +Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If diabetic or if taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-life-drink-unflavoured-227gms.md b/healf-crawler/data/terranova-life-drink-unflavoured-227gms.md new file mode 100644 index 0000000..cc3d139 --- /dev/null +++ b/healf-crawler/data/terranova-life-drink-unflavoured-227gms.md @@ -0,0 +1,37 @@ +# Life Drink (unflavoured) + +> Source: https://healf.com/products/terranova-life-drink-unflavoured-227gms + +**Brand:** Terranova | **Price:** £38.99 + +## Description + +**Key benefits for everyday wellbeing** + +- Plant-based protein blend supports muscle and bone maintenance. +- Features a vibrant mix of greens, berries, and botanicals. +- Includes a natural omega oil blend with omegas 3, 6, and 9. +- 100% active ingredients—no fillers or additives. + +Terranova Life Drink brings together a thoughtful selection of plant-based ingredients in a convenient powder. With protein to help maintain muscle mass and normal bones, plus a spectrum of botanicals, greens, and natural oils, it’s an easy way to add a nourishing boost to your daily routine. Simply blend into your favourite juice or smoothie for a gentle, balanced start to your day. + +## Ingredients + +Pea Protein, Rice Protein, Stabilized Rice Bran Solubles, Spirulina [Spirulina platensis],Chlorella [Chlorella pyrenoidosa], Wheat Grass Juice [Triticum aestivum] -Nettle Leaf [Urtica dioica], Kale [Brassica oleracea var acephala], Watercress [Nasturtium officinale], Dandelion Leaf [Taraxacum officinale]-, Spinach [Spinacia oleracea], Parsley Leaf [Petroselinum crispum], Coriander Leaf [Coriandrum sativum], Broccoli Sprouts [Brassica oleracea, Beetroot Juice & Greens [Beta vulgaris], Aronia Berry [Aronia melanocarpa], Sea Buckthorn Berry/Leaf [Hippophae rhamnoides], Acai Berry [Euterpe oleracea], Bilberry [Vaccinium myrtillus] [Rubus fruticosus], Black Raspberry[Rubus occidentalis], Cranberry [Vaccinium macrocarpon], Black Elderberry [Sambucus nigra], Montmorency Cherry [Prunus cerasus], Strawberry [Fragaria ananassa], Flaxseed Oil Powder, Borage Oil Powder, Olive Oil Powder, Reishi Mushroom [Ganoderma lucidum], Shiitake Mushroom [Lentinula edodes], Lactobacillus plantarum, Lactobacillus casei, Lactobacillus rhamnosus, Lactobacillus acidophilus/helveticus, Bifidobacterium lactis, Larch Tree Arabinogalactan [Larix occidentalis], Protease, Amylase, Lactase, Glucoamylase, Alpha Galactosidase, Protease, Invertase, Lipase, Glucoamylase, Lipase, Ginger Rhizome/Root [Zingiber officinale]. + +## Suggested Use + +As a food supplement for adults, take 1 scoop (approx 12g) daily, mixed in juice or blended into a smoothie. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / REFRIGERATE AFTER OPENING + +Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-living-multinutrient-complex.md b/healf-crawler/data/terranova-living-multinutrient-complex.md new file mode 100644 index 0000000..33970bf --- /dev/null +++ b/healf-crawler/data/terranova-living-multinutrient-complex.md @@ -0,0 +1,40 @@ +# Living Multinutrient Complex + +> Source: https://healf.com/products/terranova-living-multinutrient-complex + +**Brand:** Terranova | **Price:** £15.49 – £25.99 + +## Description + +**Key Benefits** + +- Start your day with a broad spectrum of essential nutrients. +- With vitamin C and magnesium to help reduce tiredness and fatigue. +- Vitamin D, calcium, and zinc support the maintenance of normal bones. +- Magnifood Complex blends botanicals for enhanced nutrient absorption. +- 100% additive-free and suitable for vegans. + +Feel your best, every day. Living Multinutrient Complex brings together a thoughtful balance of vitamins, minerals, and Terranova’s signature Magnifood Complex—a unique blend of freeze-dried botanicals and whole foods including spirulina, barley grass, sea buckthorn, and turmeric. These carefully chosen ingredients work in harmony to support your daily wellbeing. + +With vitamin C to contribute to the normal function of the immune system and help protect cells from oxidative stress, plus magnesium and B vitamins to support energy-yielding metabolism, this formula is designed to fit seamlessly into your routine. Vitamin D, calcium, and zinc help maintain normal bones, while biotin and vitamin A contribute to healthy skin and hair. Free from fillers and additives, Living Multinutrient Complex is a natural choice for those seeking comprehensive nutritional support in a vegan-friendly capsule. + +## Ingredients + +MAGNIFOOD COMPLEX, Spirulina [Spirulina Platensis]-fresh freeze dried-ORGANIC, Green Barley Grass [Hordeum Vulgare]-fresh freeze dried-ORGANIC, Stabilised Rice Bran, Sea Buckthorn Berry [Hippophae Rhamnoides]-fresh freeze dried, Acai Berry [Euterpe Oleracea]-fresh freeze dried-ORGANIC, Alfalfa Flower & Leaf [Medicago Sativa]-fresh freeze dried-ORGANIC, Dandelion Leaf [Taraxacum Officinale]-fresh freeze dried-ORGANIC, Nettle Leaf [Urtica Dioica]-fresh freeze dried, Turmeric Root [Curcuma Longa]-fresh freeze dried-ORGANIC, Wheat Grass Juice [Triticum Aestivum]- fresh freeze dried-ORGANIC, Green Tea Leaf [Camellia Sinensis]-ORGANIC, Watercress [Nasturtium Officinale]-fresh freeze dried-ORGANIC, Kale [Brassica Oleracea Var Acephala]-fresh freeze dried-ORGANIC, Pomegranate Arils [Punica Granatum]-fresh freeze dried-ORGANIC, Blackberry [Rubus Fruticosus]-fresh freeze dried-ORGANIC, Red Raspberry (Rubus Idaeus)-fresh freeze dried-ORGANIC, Vitamin C (as Ca, Mg, Zn ascorbate), Vitamin E (d-alpha tocopheryl succinate iu), Calcium (as carbonate, citrate, ascorbate), Magnesium (as oxide, citrate, ascorbate), Vitamin B6 (as pyridoxine hydrochloride / pyridoxal 5-phosphate), Pantothenic Acid (as calcium pantothenate), Vitamin B1 (as thiamin mononitrate), Vitamin B2 (riboflavin), Niacin (as niacinamide), Inositol, Choline Bitartrate\* (Vitacholine™), Citrus Bioflavonoids, Zinc (as ascorbate), Larch Tree Arabinogalactan [Larix Laricina], Natural Beta Carotene/Mixed Carotenoids, Manganese (as bisglycinate chelate\* TRAACS™), Iron (as bisglycinate Chelate\* [Ferrochel™], Copper (as gluconate), Boron (as sodium borate), Lutein (as prep.), Lycopene (as tomato prep.), Vitamin A (as palmitate prep. iu), Folate (as calcium L-methylfolate), Iodine (as potassium iodide), Biotin (as d-Biotin), Chromium (as picolinate), Selenium (as selenomethionine), Vitamin B12 (as methylcobalamin), Vitamin K2 as MK-7 (‡MenaQ7®), Vitamin D3 (vegan cholecalciferol – iu), Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1-3 capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-living-multivitamin-woman-100s.md b/healf-crawler/data/terranova-living-multivitamin-woman-100s.md new file mode 100644 index 0000000..54860de --- /dev/null +++ b/healf-crawler/data/terranova-living-multivitamin-woman-100s.md @@ -0,0 +1,36 @@ +# Living Multivitamin Woman + +> Source: https://healf.com/products/terranova-living-multivitamin-woman-100s + +**Brand:** Terranova | **Price:** £27.99 + +## Description + +**Key benefits for daily wellbeing** + +- With biotin and zinc to help maintain normal skin, hair, and nails. +- Magnesium, vitamin C, and iron support energy and help reduce tiredness. +- Vitamin C, vitamin D, and zinc contribute to the normal function of the immune system. +- Vitamin E and vitamin C help protect cells from oxidative stress. +- The unique MAGNIFOOD complex blends botanicals for a holistic approach. + +Terranova Living Multivitamin Woman is thoughtfully crafted for women, combining a spectrum of vitamins, minerals, and botanicals. With nutrients like biotin for hair and skin, magnesium and iron for energy, and vitamin C for immune support, this daily formula fits seamlessly into your routine. The MAGNIFOOD complex brings together plant-based ingredients to complement your everyday wellbeing—so you can take on life with confidence. + +## Ingredients + +MAGNIFOOD COMPLEX 795mg PROVIDING: Spirulina [Spirulina platensis]-fresh freeze dried-ORGANIC 200mg Stabilised Rice Bran 150mg Dandelion Leaf [Taraxacum officinale]-fresh freeze dried-ORGANIC 50mg Nettle Leaf [Urtica dioica]-fresh freeze dried 50mg Cranberry [Vaccinium Macrocarpon]-fresh freeze dried-ORGANIC 50mg Turmeric Root [Curcuma longa]-fresh freeze dried-ORGANIC 50mg Watercress [Nasturtium officinale]-fresh freeze dried-ORGANIC 50mg Bilberry [Vaccinium Myrtillus]-fresh freeze dried 50mg Broccoli Sprouts [Brassica Oleracea]-fresh freeze dried-ORGANIC 50mg Sea Buckthorn Berry/Leaf [Hippophae rhamnoides]-fresh freeze dried 50mg Ginger Root [Zingiber Officinale]-fresh freeze dried-ORGANIC 25mg Grape Seed Extract 20mg Vitamin C (as Ca, Mg, ascorbate) 150mg Calcium (as carbonate, citrate, ascorbate) 75mg Magnesium (as oxide, citrate, ascorbate) 75mg Vitamin E (d-alpha tocopheryl succinate 100iu) 67mg Omega 3,6,9 Oil Powder (flax, borage & olive oils) 50mg Pantothenic Acid (as calcium pantothenate) 25mg Vitamin B6 (as pyridoxine hydrochloride/ pyridoxal 5-phosphate P5-P) 25mg Vitamin B1 (as thiamin mononitrate) 20mg Vitamin B2 (riboflavin) 20mg Niacinamide 20mg Inositol 15mg Choline (as bitartrate) 15mg Citrus Bioflavonoids 15mg Iron (as bisglycinate) 10mg Zinc (as bisglycinate) 10mg Larch Tree Arabinogalactan [Larix Occidentalis] 5.5mg Alpha Lipoic Acid 5mg Natural Beta Carotene/Mixed Carotenoids 5mg Lutein (from Marigold flowers [Tagetes Erecta]) 3mg Manganese (as bisglycinate) 1.5mg Copper (as gluconate) 1.25mg Boron (as sodium borate) 1mg Lycopene (from tomato extract [Solanum Lycopersicum]) 1mg Folate (calcium L-methylfolate) 400ug Iodine (as potassium iodide) 150ug Biotin (as d-Biotin) 100ug Chromium (as picolinate) 50ug Selenium (as selenomethionine) 50ug Vitamin B12 (as methylcobalamin) 50ug Vitamin K2 (as \*MenaQ7®) 10ug Vitamin D3 (vegan cholecalciferol from lichen – 400iu) 10ug. + +## Suggested Use + +As a food supplement for adults, take 1-3 Terranova Living Multi Woman capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-magnesium-complex-50s.md b/healf-crawler/data/terranova-magnesium-complex-50s.md new file mode 100644 index 0000000..19481df --- /dev/null +++ b/healf-crawler/data/terranova-magnesium-complex-50s.md @@ -0,0 +1,35 @@ +# Magnesium Complex + +> Source: https://healf.com/products/terranova-magnesium-complex-50s + +**Brand:** Terranova | **Price:** £12.99 – £23.99 + +## Description + +**Key benefits** + +- Bioavailable magnesium for easy absorption and daily support. +- Includes pyridoxal 5-phosphate for a synergistic formula. +- Helps reduce tiredness and fatigue, so you can feel your best. +- Supports normal muscle, bone, and nervous system function. + +Start your day with Terranova Magnesium Complex—a thoughtfully crafted blend designed for optimal absorption. Magnesium contributes to a reduction of tiredness and fatigue, supports normal muscle function, helps maintain normal bones and teeth, and contributes to the normal functioning of your nervous system and psychological function. With added botanicals like green oat seed, nettle leaf, and pumpkin seed, this formula fits seamlessly into your daily wellbeing routine. + +## Ingredients + +MAGNIFOOD COMPLEX 275mg PROVIDING: Stabilized Rice Bran 100mg Green Oat Seed [Avena Sativa]-fresh freeze dried-ORGANIC 75mg Nettle Leaf [Urtica Dioica]-fresh freeze dried 50mg Pumpkin Seed [Cucurbita Pepo] 50mg Magnesium (as bisglycinate chelate\* [TRAACS™], oxide) 100mg Pyridoxal 5-Phosphate (P5-P) 0.5mg + +## Suggested Use + +As a food supplement for adults, take 2-4 capsules of Terranova Magnesium Complex daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-prenatal-multivitamin-complex-100s.md b/healf-crawler/data/terranova-prenatal-multivitamin-complex-100s.md new file mode 100644 index 0000000..58d983b --- /dev/null +++ b/healf-crawler/data/terranova-prenatal-multivitamin-complex-100s.md @@ -0,0 +1,38 @@ +# Prenatal Multivitamin Complex + +> Source: https://healf.com/products/terranova-prenatal-multivitamin-complex-100s + +**Brand:** Terranova | **Price:** £20.99 + +## Description + +**Key Benefits** + +- Comprehensive blend of vitamins and minerals for daily nourishment. +- Folate supports maternal tissue growth during pregnancy and helps reduce tiredness and fatigue. +- Iron contributes to normal cognitive function and the formation of red blood cells. +- Vitamin D helps maintain normal bones and supports immune function. +- Calcium is needed for the maintenance of normal bones and teeth. +- Vitamin C contributes to normal collagen formation for healthy skin and supports immune function. +- Vitamin B12 helps with normal energy-yielding metabolism and red blood cell formation. + +Terranova Prenatal Multivitamin Complex is thoughtfully formulated for pregnant and lactating women, combining a spectrum of essential nutrients with the unique MAGNIFOOD botanical blend. Folate supports maternal tissue growth during pregnancy, while iron and vitamin B12 contribute to the normal formation of red blood cells and help reduce tiredness and fatigue. Vitamin D and calcium help maintain normal bones and teeth, and vitamin C supports collagen formation and immune function. With carefully selected botanicals like organic kale, spinach, and bilberry, this daily supplement is designed to help you feel your best as you nurture new life. + +## Ingredients + +MAGNIFOOD COMPLEX 350mg PROVIDING: Kale (fresh freeze dried – ORGANIC) 100mg Blackberry Fruit (fresh freeze dried) 50mg Bilberry Fruit (fresh freeze dried) 50mg Pumpkin Seed 50mg Stabilized Rice Bran 50mg Beetroot Juice & Greens (fresh freeze dried – ORGANIC) 25mg Spinach (fresh freeze dried – ORGANIC) 25mg Calcium (as carbonate, citrate, ascorbate) 100mg Vitamin C (as Ca, Mg, Zn ascorbate) 60mg Magnesium (as oxide, citrate, ascorbate) 50mg Vitamin E (d-alpha tocopheryl succinate – 30iu) 20mg Citrus Bioflavonoids 20mg DHA (docosahexaenoic acid – vegetarian) 15mg Iron (as bisglycinate) 15mg Niacin (as niacinamide) 15mg Zinc (as ascorbate) 10mg Pantothenic Acid (as calcium pantothenate) 5mg Vitamin B6 (as pyridoxine hydrochloride) 5mg Choline (as bitartrate) 5mg Inositol 5mg Vitamin B1 (as thiamin mononitrate) 3mg Vitamin B2 (riboflavin) 3mg Natural Beta Carotene/Mixed Carotenoids 2mg Copper (as gluconate) 1mg Manganese (as bisglycinate) 0.5mg Folic Acid 400ug Biotin (as prep.) 150ug Iodine (as potassium iodide) 100ug Selenium (as selenomethionine) 25ug Chromium (as picolinate) 20ug Vitamin D3 (vegan cholecalciferol – 400iu) 10ug Vitamin B12 (as methylcobalamin) 5ug. + +## Suggested Use + +As a food supplement for adults, take 1 or 2 capsules of Terranova Prenatal Multivitamin Complex daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + +KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-quercetin-nettle-complex.md b/healf-crawler/data/terranova-quercetin-nettle-complex.md new file mode 100644 index 0000000..fe1e714 --- /dev/null +++ b/healf-crawler/data/terranova-quercetin-nettle-complex.md @@ -0,0 +1,37 @@ +# Quercetin Nettle Complex + +> Source: https://healf.com/products/terranova-quercetin-nettle-complex + +**Brand:** Terranova | **Price:** £17.99 – £28.99 + +## Description + +**Key Benefits** + +- With vitamin C to support your immune system every day. +- Helps maintain normal collagen for healthy skin, bones, and cartilage. +- Vitamin C contributes to the reduction of tiredness and fatigue. +- Magnifood Complex enhances bioavailability and nutrient synergy. + +Start your day with Terranova Quercetin Nettle Complex—a thoughtfully blended formula combining 400mg of quercetin with vitamin C and a selection of fresh freeze-dried botanicals. Vitamin C contributes to the normal function of the immune system and helps reduce tiredness and fatigue, making this supplement a smart addition to your daily routine. The unique Magnifood Complex features nettle leaf, turmeric root, and elderflower, working together to support absorption and deliver plant-based nutrients. Free from additives, fillers, and preservatives, this vegan-friendly supplement is designed to fit seamlessly into your wellbeing journey. + +## Ingredients + +MAGNIFOOD COMPLEX, Nettle Leaf [Urtica dioica] (fresh freeze dried), Turmeric Root [Curcuma longa] (fresh freeze dried – ORGANIC), Elderflower [Sambucus cerulea] (fresh freeze dried), Quercetin (from Sophora japonica), Vitamin C (as magnesium ascorbate), Bromelain (GDU), Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 – 2 capsules 1 – 2 times daily, preferably between meals. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. Do not exceed stated dose unless directed by a healthcare practitioner. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-vit-d3-2000iu-complex-100s.md b/healf-crawler/data/terranova-vit-d3-2000iu-complex-100s.md new file mode 100644 index 0000000..1103cee --- /dev/null +++ b/healf-crawler/data/terranova-vit-d3-2000iu-complex-100s.md @@ -0,0 +1,33 @@ +# Vitamin D3 2000iu Vegan Complex + +> Source: https://healf.com/products/terranova-vit-d3-2000iu-complex-100s + +**Brand:** Terranova | **Price:** £11.49 – £20.99 + +## Description + +**Key Benefits** + +- With vitamin D3 to help maintain normal bones and teeth. +- Supports the normal function of your immune system. +- Contributes to the maintenance of normal muscle function. +- Plant-based vitamin D3 from Vitashine, certified by the Vegan Society. + +Discover a thoughtful blend with Terranova Vitamin D3 2000iu Vegan Complex. Each capsule delivers vegan-certified vitamin D3 from Vitashine, combined with a unique Magnifood botanical complex—featuring stabilised rice bran, coriander leaf, pumpkin seed, shiitake mushroom, and spirulina. Designed to help you maintain healthy vitamin D levels, this supplement fits easily into your daily routine, supporting your wellbeing with every dose. + +## Ingredients + +Stabilised Rice Bran 200mg; Coriander Leaf (fresh freeze dried) 50mg; Pumpkin Seed 50mg; Shiitake Mushroom (fresh freeze dried) 50mg; Spirulina (Spirulina platensis) 50mg; Vitamin D3 (vegan cholecalciferol) 25ug / 1,000iu. + +## Suggested Use + +As a food supplement for adults, take 1 Terranova Vitamin D3 2000iu Vegan Complex capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-vitamin-c-250mg-complex.md b/healf-crawler/data/terranova-vitamin-c-250mg-complex.md new file mode 100644 index 0000000..d0bbefc --- /dev/null +++ b/healf-crawler/data/terranova-vitamin-c-250mg-complex.md @@ -0,0 +1,41 @@ +# Vitamin C 250mg Complex + +> Source: https://healf.com/products/terranova-vitamin-c-250mg-complex + +**Brand:** Terranova | **Price:** £12.99 – £17.99 + +## Description + +**Key Benefits** + +- Feel supported every day—vitamin C helps your immune system work at its best. +- Contributes to normal collagen formation for healthy skin, joints, and blood vessels. +- Non-acidic and gentle—ideal for sensitive stomachs. +- Magnifood Complex blends botanicals and whole foods for enhanced absorption. + +Start your day with confidence—Terranova’s Vitamin C 250mg Complex brings together a gentle, non-acidic form of vitamin C with a vibrant blend of botanicals and whole foods. Vitamin C contributes to the normal function of the immune system and helps protect cells from oxidative stress, so you can feel ready for whatever life brings. + +This unique formula uses mineral ascorbates—calcium, magnesium, and potassium ascorbate—making it kind to your stomach. The Magnifood Complex features fresh freeze-dried acerola cherry, rose hips, sea buckthorn, and acai berry, all chosen to complement vitamin C and support your daily routine. + +Free from fillers and additives, and suitable for vegans, this supplement is a simple way to help maintain your natural vitality every day. + +## Ingredients + +Vitamin C (as Ca, Mg, K ascorbate), Calcium Ascorbate Vitamin C Calcium, Magnesium Ascorbate Vitamin C Magnesium, Potassium Ascorbate Vitamin C Potassium, Stabilized Rice Bran, Sea Buckthorn Berry [Hippophae Rhamnoides] – fresh freeze dried, Acai Berry [Euterpe Oleracea] – fresh freeze dried – ORGANIC, Acerola Cherry [Malpighia Emarginata] – ORGANIC, Rose Hips [Rosa Canina] – ORGANIC, Larch Tree Arabinogalactan [Larix Laricina], Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 or 2 capsules daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-vitamin-d3-1000iu-vitamin-k2-50ug-complex.md b/healf-crawler/data/terranova-vitamin-d3-1000iu-vitamin-k2-50ug-complex.md new file mode 100644 index 0000000..46b49b8 --- /dev/null +++ b/healf-crawler/data/terranova-vitamin-d3-1000iu-vitamin-k2-50ug-complex.md @@ -0,0 +1,39 @@ +# Vitamin D3 1000iu Vitamin K2 50ug Complex + +> Source: https://healf.com/products/terranova-vitamin-d3-1000iu-vitamin-k2-50ug-complex + +**Brand:** Terranova | **Price:** £15.99 – £28.49 + +## Description + +**Key Benefits** + +- Helps your body absorb and use calcium and phosphorus effectively. +- Supports the maintenance of strong bones and healthy teeth. +- With vitamin D3 to contribute to normal immune system function. +- Magnifood botanicals add natural co-factors for daily wellbeing. + +Start every day with support for your bones and more. This vegan-friendly complex brings together vitamin D3 (from lichen) and vitamin K2 (as MenaQ7® MK-7), working in harmony to help your body absorb calcium and keep it where it’s needed—your bones and teeth. Vitamin D3 also supports your immune system, while vitamin K2 contributes to normal blood clotting and bone maintenance. + +Terranova’s signature Magnifood Complex features organic botanicals like stabilised rice bran, shiitake mushroom, kale, and pumpkin seed, providing natural co-factors to complement your daily routine. MCT powder is included to help your body make the most of these key nutrients, so you can feel confident in your everyday wellbeing. + +## Ingredients + +MAGNIFOOD COMPLEX, Stabilised Rice Bran, Pumpkin Seed [Cucurbita Pepo]-ORGANIC, Shiitake Mushroom [Lentinula Edodes]-fresh freeze dried-ORGANIC (Full-spectrum: primordia, mycelia, fruiting body & extra-cellular compounds), Kale Leaf [Brassica Oleracea Var Acephala]-fresh freeze dried-ORGANIC, Parsley [Petroselinum Crispum]-fresh freeze dried-ORGANIC, MCT Powder (Vegan Medium Chain Triglycerides), Vitamin K2 as MK-7 (MenaQ7®)\*, Vitamin D3 [vegan cholecalciferol-from lichen], Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking anti-coagulant (blood-thinning) drugs such as warfarin, or any other prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-vitamin-d3-2000iu-vitamin-k2-100ug-complex.md b/healf-crawler/data/terranova-vitamin-d3-2000iu-vitamin-k2-100ug-complex.md new file mode 100644 index 0000000..60d290e --- /dev/null +++ b/healf-crawler/data/terranova-vitamin-d3-2000iu-vitamin-k2-100ug-complex.md @@ -0,0 +1,35 @@ +# Vitamin D3 2000iu Vitamin K2 100ug Complex + +> Source: https://healf.com/products/terranova-vitamin-d3-2000iu-vitamin-k2-100ug-complex + +**Brand:** Terranova | **Price:** £23.99 – £36.99 + +## Description + +**Key Benefits** + +- With vitamin D and K to help maintain normal bones and blood clotting. +- Vitamin D supports the absorption and use of calcium and phosphorus. +- Contributes to the normal function of your immune system. +- Vegan-friendly and ideal for those with limited sun exposure. + +Terranova Vitamin D3 2000iu with Vitamin K2 100ug Complex blends vegan vitamin D3 and K2 with the nourishing MAGNIFOOD mix—featuring Pumpkin Seed, Shiitake Mushroom, Kale, and Parsley—to complement your daily routine. + +## Ingredients + +MAGNIFOOD COMPLEX 500mg PROVIDING: Stabilised Rice Bran 150mg Pumpkin Seed [Cucurbita pepo] 100mg Shiitake Mushroom [Lentinula edodes]-fresh freeze dried-ORGANIC 100mg Kale Leaf [Brassica oleracea var acephala]-fresh freeze dried-ORGANIC 100mg Parsley [Petroselinum crispum]-fresh freeze dried-ORGANIC 50mg MCT Powder (Vegan Medium Chain Triglycerides) 50mg Vitamin K2 [MenaQ7®-from chickpeas] (MK7 Menaquinone) 100μg Vitamin D3 [vegan cholecalciferol-from lichen 2000iu] 50μg + +## Suggested Use + +As a food supplement for adults, take 1 capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-vitamin-k2-100ug-complex.md b/healf-crawler/data/terranova-vitamin-k2-100ug-complex.md new file mode 100644 index 0000000..49ade94 --- /dev/null +++ b/healf-crawler/data/terranova-vitamin-k2-100ug-complex.md @@ -0,0 +1,37 @@ +# Vitamin K2 100ug Complex + +> Source: https://healf.com/products/terranova-vitamin-k2-100ug-complex + +**Brand:** Terranova | **Price:** £19.49 + +## Description + +**Key Benefits** + +- Helps maintain normal bones with vitamin K2 (MenaQ7®). +- Supports normal blood clotting for everyday wellbeing. +- Botanical blend with kale, parsley, spinach, and coriander. +- MCT powder included to aid nutrient absorption. + +Start your day with confidence—Terranova Vitamin K2 (as MenaQ7®) 100µg Complex is expertly crafted to help you maintain normal bones and support normal blood clotting, thanks to the inclusion of vitamin K2. The unique Magnifood Complex features freeze-dried botanicals like organic kale, parsley, spinach, and coriander, bringing natural co-factors to your daily routine. MCT powder is added to help your body absorb these nutrients efficiently. This thoughtful blend is a simple way to support your everyday wellbeing. + +## Ingredients + +MAGNIFOOD COMPLEX, Kale Leaf [Brassica oleracea var acephala]-fresh freeze dried-ORGANIC, Parsley [Petroselinum crispum]-fresh freeze dried-ORGANIC, Spinach Leaf [Spinacia oleracea]-fresh freeze dried-ORGANIC, Coriander Leaf [Coriandrum sativum]-fresh freeze dried-ORGANIC, MCT Powder (Vegan Medium Chain Triglycerides), Vitamin K2 as MK-7 (MenaQ7®)\*, Vegetarian Capsule Shell (hydroxypropyl methylcellulose) + +## Suggested Use + +As a food supplement for adults, take 1 capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking anti-coagulant (blood-thinning) drugs such as warfarin, or any other prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/data/terranova-zinc-15mg-complex-50s.md b/healf-crawler/data/terranova-zinc-15mg-complex-50s.md new file mode 100644 index 0000000..882ae26 --- /dev/null +++ b/healf-crawler/data/terranova-zinc-15mg-complex-50s.md @@ -0,0 +1,36 @@ +# Zinc 15mg Complex + +> Source: https://healf.com/products/terranova-zinc-15mg-complex-50s + +**Brand:** Terranova | **Price:** £7.49 – £11.99 + +## Description + +**Key benefits** + +- Bioavailable zinc bisglycinate for easy absorption, paired with plant-based nutrients. +- With zinc to support your immune system and help protect cells from oxidative stress. +- Contributes to normal protein synthesis, metabolism, and cell division—ideal for everyday vitality. + +Start your day with Terranova Zinc 15mg Complex—a thoughtful blend of zinc bisglycinate and the signature Magnifood botanical complex, including organic spirulina, pumpkin seed, acai berry, and stabilized rice bran. Zinc contributes to the maintenance of normal skin, hair, nails, and vision, as well as normal fertility and reproduction. A simple way to help you feel your best, every day. + +## Ingredients + +MAGNIFOOD COMPLEX 400mg PROVIDING: Stabilized Rice Bran 250mg Spirulina [Spirulina platensis – ORGANIC] 75mg Pumpkin Seed [Cucurbita pepo] 50mg Acai Berry [Euterpe oleracea] (fresh freeze dried – ORGANIC) 25mg AND Zinc (as bisglycinate) 15mg. + +## Suggested Use + +As a food supplement for adults, take 1 Terranova Zinc 15mg Complex capsule daily with food. Do not exceed stated dose unless directed by a healthcare practitioner. + + KEEP OUT OF REACH OF CHILDREN / STORE IN A COOL, DRY PLACE. + + Food supplements should not be used as a substitute for a varied diet. Not recommended during pregnancy or breastfeeding unless on the advice of a healthcare practitioner. If taking prescribed medication, consult a physician before using this product. + + +**Additional Information:** + +Food supplements and foods sold by Healf should not be used as a substitute for a varied, balanced diet and healthy lifestyle. + +If you are pregnant, breastfeeding, have a medical condition, or are taking any medications, please consult with a healthcare professional before use. Use products only if the seal is intact. Store in a cool, dry place, out of the reach of young children. Do not exceed the recommended daily intake. + +We make every effort to ensure that product information on our website is accurate and up to date, but packaging and ingredients may occasionally vary from images shown on site. Please refer to the product label and contact Healf before use if you have any questions regarding your specific allergies or intolerances. diff --git a/healf-crawler/pyproject.toml b/healf-crawler/pyproject.toml new file mode 100644 index 0000000..2ba8b79 --- /dev/null +++ b/healf-crawler/pyproject.toml @@ -0,0 +1,44 @@ +[project] +name = "healf-crawler" +version = "0.1.0" +description = "Scraper for a limited set of Healf products (Terranova, Life Extension, NOW Foods) — fetches and saves as clean Markdown" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "beautifulsoup4>=4.12", + "lxml>=5.0", + "markdownify>=0.13", + "requests>=2.31", +] + +[project.optional-dependencies] +dev = [ + "pyright>=1.1.350", + "ruff>=0.5", + "types-requests>=2.31", + "types-beautifulsoup4>=4.12", +] + +[project.scripts] +healf-crawler = "src.cli:main" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["src"] + +[tool.ruff] +target-version = "py311" +line-length = 100 + +[tool.ruff.lint] +select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM", "TCH"] + +[tool.ruff.lint.isort] +known-first-party = ["src"] + +[tool.pyright] +pythonVersion = "3.11" +typeCheckingMode = "strict" diff --git a/healf-crawler/src/__init__.py b/healf-crawler/src/__init__.py new file mode 100644 index 0000000..39fbb68 --- /dev/null +++ b/healf-crawler/src/__init__.py @@ -0,0 +1,5 @@ +"""Healf Product Crawler — fetch and convert Healf products to Markdown.""" + +from __future__ import annotations + +__version__ = "0.1.0" diff --git a/healf-crawler/src/cli.py b/healf-crawler/src/cli.py new file mode 100644 index 0000000..f097e64 --- /dev/null +++ b/healf-crawler/src/cli.py @@ -0,0 +1,64 @@ +"""Command-line entry point for the Healf product crawler.""" + +from __future__ import annotations + +import argparse +import sys + +from src.constants import START_URL +from src.crawler import discover_product_handles, parse_product, render_markdown +from src.pipeline import run_pipeline, save_markdown +from src.utils import product_slug_from_handle + + +def main() -> int: + """Run the Healf product crawler from the command line.""" + parser = argparse.ArgumentParser(description="Healf product crawler") + parser.add_argument( + "--url", + type=str, + default=None, + help="Scrape a single product by its Healf product page URL or Shopify handle.", + ) + parser.add_argument( + "--list-only", + action="store_true", + help="Only discover and list target product handles, then exit.", + ) + args = parser.parse_args() + + if args.list_only: + products = discover_product_handles() + for p in products: + print(f" {p['vendor']:20s} {p['handle']}") + print(f"\nTotal: {len(products)} products") + return 0 + + if args.url: + handle = args.url.rstrip("/").split("/")[-1] + print(f"Scraping single product: {handle}") + result = parse_product(handle) + if result.get("errors"): + print(f"Errors: {result['errors']}") + else: + save_markdown(result) + markdown = render_markdown(result) + print(f"Saved: {product_slug_from_handle(handle)} ({len(markdown)} chars)") + print("\n" + "-" * 60 + "\n") + print(markdown[:1500]) + return 0 + + print(f"Starting Healf Product Crawler\nSource: {START_URL}\n") + summary = run_pipeline() + if "error" in summary: + print(f"\nPipeline failed: {summary['error']}") + return 1 + print( + f"\nPipeline complete: {summary['products_scraped']} products scraped, " + f"{summary['error_count']} errors." + ) + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/healf-crawler/src/constants.py b/healf-crawler/src/constants.py new file mode 100644 index 0000000..2674ede --- /dev/null +++ b/healf-crawler/src/constants.py @@ -0,0 +1,32 @@ +"""Path and URL constants for the Healf product crawler.""" + +from __future__ import annotations + +from pathlib import Path + +BASE_DIR: Path = Path(__file__).resolve().parent.parent +DATA_DIR: Path = BASE_DIR / "data" +LOG_DIR: Path = BASE_DIR / "logs" +REPORT_DIR: Path = BASE_DIR / "reports" + +for _directory in (DATA_DIR, LOG_DIR, REPORT_DIR): + _directory.mkdir(parents=True, exist_ok=True) + +LOG_FILE: Path = LOG_DIR / "crawl.log" +SUMMARY_FILE: Path = REPORT_DIR / "summary.json" + +SITE_ORIGIN: str = "https://healf.com" +START_URL: str = ( + "https://healf.com/collections/all-products-1?brand=Terranova,Life+Extension,NOW+Foods" +) +PRODUCT_URL_TEMPLATE: str = "https://healf.com/products/{handle}" + +# Discovered from the site's client bundle. +SHOPIFY_STOREFRONT_URL: str = "https://how2go.myshopify.com/api/2026-01/graphql.json" +SHOPIFY_STOREFRONT_TOKEN: str = "67845e61e61fb1cf26199378112390b3" +ALL_PRODUCTS_COLLECTION_HANDLE: str = "all-products-1" + +TARGET_VENDORS: frozenset[str] = frozenset({"Terranova", "Life Extension", "NOW Foods"}) + +MAX_WORKERS: int = 4 +PAGE_SIZE: int = 250 diff --git a/healf-crawler/src/converter.py b/healf-crawler/src/converter.py new file mode 100644 index 0000000..1d986de --- /dev/null +++ b/healf-crawler/src/converter.py @@ -0,0 +1,39 @@ +"""Convert HTML content fragments to clean Markdown.""" + +from __future__ import annotations + +from bs4 import BeautifulSoup +from markdownify import markdownify + +_CLUTTER_TAGS: list[str] = [ + "button", + "form", + "input", + "svg", + "script", + "style", + "iframe", +] + + +def html_to_markdown(html: str) -> str: + """Convert an HTML fragment string to clean Markdown.""" + if not html or not html.strip(): + return "" + soup = BeautifulSoup(f"
{html}
", "lxml") + md = markdownify( + str(soup), + heading_style="ATX", + bullets="-", + strip=_CLUTTER_TAGS, + ) + return _collapse_blank_lines(md).strip() + + +def _collapse_blank_lines(text: str, max_blanks: int = 2) -> str: + """Reduce runs of blank lines to at most *max_blanks* consecutive.""" + pattern = "\n" * (max_blanks + 1) + replacement = "\n" * max_blanks + while pattern in text: + text = text.replace(pattern, replacement) + return text diff --git a/healf-crawler/src/crawler.py b/healf-crawler/src/crawler.py new file mode 100644 index 0000000..df61cca --- /dev/null +++ b/healf-crawler/src/crawler.py @@ -0,0 +1,348 @@ +"""Crawling and parsing of Healf product pages. + +Healf is a Shopify-backed storefront rendered with Next.js (App Router). +Two data sources are combined: + +1. **Shopify Storefront API** — discovers products in the ``all-products-1`` + collection and fetches structured fields (title, vendor, price, + ``descriptionHtml``). + +2. **Next.js RSC page stream** — the product detail page embeds private + metafields (``ingredients``, ``suggested_use``) inside + ``self.__next_f.push(...)`` chunks. These are not exposed via the + Storefront API, so they are extracted from the rendered page's React + Server Components payload. +""" + +from __future__ import annotations + +import re +import time +from typing import Any + +from src.constants import ( + ALL_PRODUCTS_COLLECTION_HANDLE, + PAGE_SIZE, + PRODUCT_URL_TEMPLATE, + SHOPIFY_STOREFRONT_TOKEN, + SHOPIFY_STOREFRONT_URL, + TARGET_VENDORS, +) +from src.converter import html_to_markdown +from src.http_client import make_session +from src.logging_config import get_logger + +logger = get_logger() + +_SESSION = make_session() + +_GQL_HEADERS: dict[str, str] = { + "X-Shopify-Storefront-Access-Token": SHOPIFY_STOREFRONT_TOKEN, + "Content-Type": "application/json", +} + +_DISCOVER_QUERY = """ +query($handle: String!, $cursor: String, $first: Int!) { + collection: collectionByHandle(handle: $handle) { + id handle title + products(first: $first, after: $cursor) { + edges { + node { + id handle title vendor productType + } + } + pageInfo { hasNextPage endCursor } + } + } +} +""" + +_DETAIL_QUERY = """ +query($handle: String!) { + product: productByHandle(handle: $handle) { + id handle title vendor productType + descriptionHtml + onlineStoreUrl + priceRange { + minVariantPrice { amount currencyCode } + maxVariantPrice { amount currencyCode } + } + compareAtPriceRange { + minVariantPrice { amount currencyCode } + maxVariantPrice { amount currencyCode } + } + variants(first: 20) { + edges { + node { + title + price { amount currencyCode } + compareAtPrice { amount currencyCode } + availableForSale + selectedOptions { name value } + } + } + } + } +} +""" + + +def _gql(query: str, variables: dict[str, Any]) -> dict[str, Any] | None: + """Execute a Storefront GraphQL request, returning the ``data`` dict or None.""" + try: + time.sleep(0.2) + resp = _SESSION.post( + SHOPIFY_STOREFRONT_URL, + json={"query": query, "variables": variables}, + headers=_GQL_HEADERS, + timeout=30, + ) + if resp.status_code != 200: + logger.error(f"Storefront API HTTP {resp.status_code}: {resp.text[:200]}") + return None + payload = resp.json() + if "errors" in payload: + logger.error(f"GraphQL errors: {payload['errors']}") + return None + return payload.get("data") + except Exception as exc: + logger.error(f"Storefront API request failed: {exc}") + return None + + +def discover_product_handles() -> list[dict[str, str]]: + """Page through the collection and return products from target vendors.""" + logger.info(f"Discovering products from collection '{ALL_PRODUCTS_COLLECTION_HANDLE}'") + cursor: str | None = None + all_products: list[dict[str, str]] = [] + page = 0 + + while True: + data = _gql( + _DISCOVER_QUERY, + { + "handle": ALL_PRODUCTS_COLLECTION_HANDLE, + "cursor": cursor, + "first": PAGE_SIZE, + }, + ) + if data is None or data.get("collection") is None: + logger.error("Failed to fetch collection — aborting discovery.") + break + + collection = data["collection"] + edges = collection["products"]["edges"] + page += 1 + for edge in edges: + node = edge["node"] + all_products.append( + { + "handle": node["handle"], + "title": node["title"], + "vendor": node["vendor"], + "product_type": node.get("productType", ""), + } + ) + + page_info = collection["products"]["pageInfo"] + logger.info( + f" Page {page}: fetched {len(edges)} products (running total {len(all_products)})" + ) + if not page_info["hasNextPage"]: + break + cursor = page_info["endCursor"] + + # A product can appear in multiple manual sortings within the collection. + seen: set[str] = set() + unique: list[dict[str, str]] = [] + for p in all_products: + if p["handle"] not in seen: + seen.add(p["handle"]) + unique.append(p) + + targets = [p for p in unique if p["vendor"] in TARGET_VENDORS] + logger.info( + f"Discovered {len(unique)} unique products; " + f"{len(targets)} match target vendors ({', '.join(sorted(TARGET_VENDORS))})" + ) + return targets + + +def _extract_rsc_stream(html: str) -> str: + """Decode and concatenate all ``self.__next_f.push`` chunks from a page.""" + pushes = re.findall(r'self\.__next_f\.push\(\[1,\s*"(.*?)"\]\)', html, re.S) + stream = "" + for chunk in pushes: + try: + stream += chunk.encode().decode("unicode_escape") + except Exception: + stream += chunk + return stream + + +def _resolve_t_references(stream: str) -> dict[str, str]: + """Build a ``{ref_id: text}`` map from RSC ``N:T,text`` definitions. + + ```` is a hexadecimal byte length, per the React Flight wire protocol. + """ + refs: dict[str, str] = {} + for match in re.finditer(r"(\w+):T(\w+),", stream): + ref_id = match.group(1) + length = int(match.group(2), 16) + start = match.end() + refs[ref_id] = stream[start : start + length] + return refs + + +def _extract_metafields(stream: str, refs: dict[str, str]) -> dict[str, str]: + """Pull the product-level metafields array out of the RSC stream. + + The array lives next to the ``"key":"ingredients"`` entry. Values may + be inline strings or ``$N`` references that resolve via *refs*. + """ + idx = stream.find('"key":"ingredients"') + if idx < 0: + return {} + + arr_start = stream.rfind('metafields":[', max(0, idx - 3000), idx) + if arr_start < 0: + return {} + arr_end = stream.find("]}", idx) + if arr_end < 0: + return {} + array_text = stream[arr_start : arr_end + 2] + + meta: dict[str, str] = {} + for match in re.finditer(r'"key":"([^"]+)","value":"([^"]*)"', array_text): + key = match.group(1) + value = match.group(2) + if re.fullmatch(r"\$\w+", value): + ref_id = value.lstrip("$") + value = refs.get(ref_id, value) + meta[key] = value + return meta + + +def _fetch_page_rsc(url: str) -> str: + """Fetch a product page and return its decoded RSC stream (empty on failure).""" + try: + time.sleep(0.2) + resp = _SESSION.get(url, timeout=30) + if resp.status_code != 200 or len(resp.text) < 500: + logger.warning(f" Page fetch failed for {url} (status={resp.status_code})") + return "" + if "Redirecting" in resp.text: + logger.warning(f" Page redirected for {url}") + return "" + return _extract_rsc_stream(resp.text) + except Exception as exc: + logger.warning(f" Page fetch error for {url}: {exc}") + return "" + + +def _format_price_range(price_range: dict[str, Any]) -> str: + """Format a Shopify price range into a human-readable string.""" + min_p = price_range.get("minVariantPrice", {}) + max_p = price_range.get("maxVariantPrice", {}) + amount_min = min_p.get("amount") + amount_max = max_p.get("amount") + currency = min_p.get("currencyCode", "GBP") + + symbol = _currency_symbol(currency) + if amount_min is None: + return "" + if amount_min == amount_max: + return f"{symbol}{_fmt_amount(amount_min)}" + return f"{symbol}{_fmt_amount(amount_min)} – {symbol}{_fmt_amount(amount_max)}" + + +def _currency_symbol(code: str) -> str: + return {"GBP": "£", "USD": "$", "EUR": "€"}.get(code, code + " ") + + +def _fmt_amount(amount: str) -> str: + """Strip trailing ``.0`` but keep two decimals otherwise.""" + try: + val = float(amount) + if val == int(val): + return f"{val:.0f}.00" + return f"{val:.2f}" + except (TypeError, ValueError): + return str(amount) + + +def parse_product(handle: str) -> dict[str, Any]: + """Fetch a single product (API + page metafields) and return a result dict.""" + url = PRODUCT_URL_TEMPLATE.format(handle=handle) + result: dict[str, Any] = { + "url": url, + "handle": handle, + "title": "", + "vendor": "", + "price": "", + "description": "", + "ingredients": "", + "suggested_use": "", + "markdown": "", + "status": None, + "errors": [], + } + + data = _gql(_DETAIL_QUERY, {"handle": handle}) + if data is None or data.get("product") is None: + result["errors"].append("Storefront API returned no product") + return result + + product = data["product"] + result["title"] = product.get("title", "") + result["vendor"] = product.get("vendor", "") + result["status"] = 200 + result["price"] = _format_price_range(product.get("priceRange", {})) + result["description"] = html_to_markdown(product.get("descriptionHtml") or "") + + stream = _fetch_page_rsc(url) + if stream: + refs = _resolve_t_references(stream) + meta = _extract_metafields(stream, refs) + + raw_ingredients = meta.get("ingredients", "") + result["ingredients"] = html_to_markdown(raw_ingredients) if raw_ingredients else "" + + raw_use = meta.get("suggested_use", "") + result["suggested_use"] = html_to_markdown(raw_use) if raw_use else "" + else: + logger.warning(f" No RSC stream for {handle} — metafields will be empty") + + return result + + +def render_markdown(result: dict[str, Any]) -> str: + """Render a parsed product result into the final Markdown document.""" + title = result.get("title") or result.get("handle", "Unknown Product") + vendor = result.get("vendor", "") + url = result.get("url", "") + price = result.get("price", "") + + lines: list[str] = [f"# {title}", "", f"> Source: {url}", ""] + + meta_lines: list[str] = [] + if vendor: + meta_lines.append(f"**Brand:** {vendor}") + if price: + meta_lines.append(f"**Price:** {price}") + if meta_lines: + lines.append(" | ".join(meta_lines)) + lines.append("") + + def _section(heading: str, body: str) -> None: + if body and body.strip(): + lines.append(f"## {heading}") + lines.append("") + lines.append(body.strip()) + lines.append("") + + _section("Description", result.get("description", "")) + _section("Ingredients", result.get("ingredients", "")) + _section("Suggested Use", result.get("suggested_use", "")) + + return "\n".join(lines).rstrip() + "\n" diff --git a/healf-crawler/src/http_client.py b/healf-crawler/src/http_client.py new file mode 100644 index 0000000..bc2b658 --- /dev/null +++ b/healf-crawler/src/http_client.py @@ -0,0 +1,35 @@ +"""HTTP session with retry/backoff and browser-like headers.""" + +from __future__ import annotations + +from requests import Session +from requests.adapters import HTTPAdapter +from urllib3.util.retry import Retry + +from src.constants import SITE_ORIGIN + + +def make_session() -> Session: + """Create a requests Session with retries and browser-like headers.""" + retry = Retry( + total=4, + backoff_factor=1.2, + status_forcelist=[429, 500, 502, 503, 504], + allowed_methods=["GET", "HEAD", "POST"], + ) + adapter = HTTPAdapter(max_retries=retry, pool_connections=10, pool_maxsize=20) + + session = Session() + session.mount("http://", adapter) + session.mount("https://", adapter) + session.headers.update( + { + "User-Agent": ( + f"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 " + f"(KHTML, like Gecko) Chrome/126.0 Safari/537.36 " + f"(compatible; HealfCrawler/1.0; +{SITE_ORIGIN})" + ), + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + } + ) + return session diff --git a/healf-crawler/src/logging_config.py b/healf-crawler/src/logging_config.py new file mode 100644 index 0000000..5b7aa24 --- /dev/null +++ b/healf-crawler/src/logging_config.py @@ -0,0 +1,35 @@ +"""Shared logger for the Healf product crawler.""" + +from __future__ import annotations + +import logging + +from src.constants import LOG_FILE + +_logger: logging.Logger | None = None + + +def get_logger() -> logging.Logger: + """Return the shared package logger, initialising it on first call.""" + global _logger + if _logger is not None: + return _logger + + logger = logging.getLogger("healf-crawler") + logger.setLevel(logging.DEBUG) + + formatter = logging.Formatter("%(asctime)s [%(levelname)s] %(message)s") + + file_handler = logging.FileHandler(LOG_FILE, mode="a", encoding="utf-8") + file_handler.setLevel(logging.DEBUG) + file_handler.setFormatter(formatter) + + stream_handler = logging.StreamHandler() + stream_handler.setLevel(logging.INFO) + stream_handler.setFormatter(formatter) + + logger.addHandler(file_handler) + logger.addHandler(stream_handler) + + _logger = logger + return logger diff --git a/healf-crawler/src/pipeline.py b/healf-crawler/src/pipeline.py new file mode 100644 index 0000000..6712bc2 --- /dev/null +++ b/healf-crawler/src/pipeline.py @@ -0,0 +1,120 @@ +"""Pipeline orchestration: discover products → fetch & convert → save → report.""" + +from __future__ import annotations + +import json +from concurrent.futures import ThreadPoolExecutor, as_completed +from typing import Any + +from src.constants import DATA_DIR, MAX_WORKERS, REPORT_DIR, SUMMARY_FILE, TARGET_VENDORS +from src.crawler import discover_product_handles, parse_product, render_markdown +from src.logging_config import get_logger +from src.utils import now_iso, product_slug_from_handle + +logger = get_logger() + + +def run_pipeline() -> dict[str, Any]: + """Execute the full crawl-and-save pipeline and return the summary dict.""" + logger.info("=" * 70) + logger.info("Healf Product Crawler — Pipeline started") + logger.info(f"Target vendors: {', '.join(sorted(TARGET_VENDORS))}") + logger.info("=" * 70) + + products = discover_product_handles() + if not products: + logger.error("No target products found. Aborting.") + return {"error": "no products discovered"} + + (REPORT_DIR / "product_handles.json").write_text( + json.dumps(products, indent=2), encoding="utf-8" + ) + + handles = [p["handle"] for p in products] + logger.info(f"Total products to fetch: {len(handles)}") + + results: list[dict[str, Any]] = [] + errors: list[dict[str, Any]] = [] + + def process_product(handle: str) -> dict[str, Any]: + try: + return parse_product(handle) + except Exception: + logger.exception(f"FAILED: {handle}") + return { + "url": f"https://healf.com/products/{handle}", + "handle": handle, + "title": "", + "errors": ["exception"], + } + + with ThreadPoolExecutor(max_workers=MAX_WORKERS) as pool: + futures = {pool.submit(process_product, h): h for h in handles} + done_count = 0 + for future in as_completed(futures): + result = future.result() + done_count += 1 + handle = result.get("handle", futures[future]) + + if result.get("errors"): + logger.warning(f" [{done_count}/{len(handles)}] ERROR: {handle}") + errors.append(result) + results.append(result) + continue + + save_markdown(result) + results.append(result) + logger.info( + f" [{done_count}/{len(handles)}] Saved: " + f"{product_slug_from_handle(handle)} " + f"({len(result.get('markdown', ''))} chars)" + ) + + summary = _build_summary(products, results, errors) + SUMMARY_FILE.write_text(json.dumps(summary, indent=2), encoding="utf-8") + logger.info(f"Summary written to {SUMMARY_FILE}") + logger.info( + f"Products scraped: {summary['products_scraped']}, " + f"Errors: {summary['error_count']}, " + f"Total markdown: {summary['total_markdown_chars']} chars" + ) + return summary + + +def save_markdown(result: dict[str, Any]) -> None: + """Render a product result to Markdown and write it to ``data/.md``.""" + markdown = render_markdown(result) + result["markdown"] = markdown + + slug = product_slug_from_handle(result["handle"]) + (DATA_DIR / f"{slug}.md").write_text(markdown, encoding="utf-8") + + +def _build_summary( + products: list[dict[str, str]], + results: list[dict[str, Any]], + errors: list[dict[str, Any]], +) -> dict[str, Any]: + """Aggregate results into a summary report.""" + total_chars = sum(len(r.get("markdown", "")) for r in results if not r.get("errors")) + empty_pages = [ + r.get("handle", r.get("url", "")) + for r in results + if not r.get("errors") and not r.get("markdown", "").strip() + ] + + by_vendor: dict[str, int] = {} + for p in products: + by_vendor[p["vendor"]] = by_vendor.get(p["vendor"], 0) + 1 + + return { + "run_at": now_iso(), + "target_vendors": sorted(TARGET_VENDORS), + "products_discovered": len(products), + "products_by_vendor": by_vendor, + "products_scraped": len(results) - len(errors), + "error_count": len(errors), + "total_markdown_chars": total_chars, + "empty_pages": empty_pages, + "errors": [{"handle": e.get("handle"), "errors": e.get("errors")} for e in errors], + } diff --git a/healf-crawler/src/utils.py b/healf-crawler/src/utils.py new file mode 100644 index 0000000..780d7df --- /dev/null +++ b/healf-crawler/src/utils.py @@ -0,0 +1,18 @@ +"""Shared utility helpers.""" + +from __future__ import annotations + +from datetime import UTC, datetime + + +def now_iso() -> str: + """Return the current UTC timestamp as an ISO 8601 string.""" + return datetime.now(UTC).isoformat() + + +def product_slug_from_handle(handle: str) -> str: + """Use the Shopify product handle directly as the slug. + + Handles are already URL-safe and unique (e.g. ``terranova-magnesium-complex-50s``). + """ + return handle.strip("/").split("/")[-1]