# Herbal Medicine / Phytotherapy Research — Worked Example: Corimia

## The Pattern

Herbal/traditional medicine brand names (especially niche Austrian/German products) are **invisible to general web search**. Bing, Startpage, DuckDuckGo, and pharmacy websites (Shop Apotheke, medikamente-per-klick, apotheke.at) all return zero results for the brand name alone.

**Reliable chain:**
1. **Vision** — user sends photo of the package → extract active ingredient from label
2. **Botanical name** — identify the scientific name (e.g., *Leonurus cardiaca* = Herzgespannkraut)
3. **PubMed by botanical name + pharmacology terms** — `Leonurus cardiaca pharmacology clinical`, `Leonurus cardiaca sedative anxiety`
4. **Synthesize** — combine PubMed evidence with known traditional use information

## Corimia Case Study

**Product:** Corimia Filmtabletten (30 Stück)
**Active ingredient:** Herzgespannkraut (*Leonurus cardiaca* L.)
**Indication:** "Bei nervösen Anspannungen und nervös bedingten Herzbeschwerden"
**Type:** Traditionelles pflanzliches Arzneimittel (traditional herbal medicine, registered under EU directive 2001/83/EC)

### PubMed Queries That Worked

```bash
# Broad pharmacology search — 6 results
curl -sL "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&retmax=20&term=Leonurus+cardiaca+motherwort+pharmacology+clinical"

# Anxiety-specific — 0 results (too narrow)
curl -sL "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&retmax=20&term=Leonurus+cardiaca+anxiety+sedative+calming"
```

**Lesson:** For herbal medicines, start broad (botanical name + "pharmacology" or "clinical"). Narrow anxiety/sedative queries often return zero because those terms aren't in MeSH for this plant.

### Key PMIDs and Findings

| PMID | Study | Key Finding |
|---|---|---|
| **23042598** | Wojtyniak et al. 2013 — Review: phytochemistry & pharmacology of L. cardiaca | Sedative and hypotensive activity demonstrated in clinical trials. Mild negative chronotropic, hypotonic effects. Antibacterial, antioxidant, anti-inflammatory, analgesic activity confirmed. |
| **19918711** | Ritter et al. 2010 — Cardiac electrophysiology (Langendorff + patch-clamp) | LCRE acts on multiple ion channels: ICa,L blockade (calcium-antagonistic), IKr blockade (prolongs AP), weak If inhibition. Reduces LV pressure, increases coronary flow, prolongs PQ interval. |
| **25189466** | Song et al. 2015 — Leonurine anti-inflammatory (mouse mastitis model) | Leonurine (main alkaloid) ↓TNF-α, IL-6; ↑IL-10; inhibits TLR4, NF-κB, p38/ERK/JNK phosphorylation. |
| **41598329** | Morariu-Briciu et al. 2026 — Cardioprotective plants review | L. cardiaca included among 6 validated cardioprotective botanicals. Nrf2, mPTP, NF-κB pathways. Clinical evidence limited to surrogate outcomes. |

### Key Phytochemicals

- **Flavonoids:** Hyperosid, Rutosid (min. 0.2% per European Pharmacopoeia)
- **Alkaloids:** Leonurin, Stachydrin
- **Phenolic acids:** Caffeic acid derivatives
- **Terpenes:** Iridoids, diterpenes, triterpenes
- **Other:** Volatile oils, sterols, tannins

### Output Format for Herbal Medicine Summaries

1. **Product identification** (brand name, active ingredient, indication, regulatory status)
2. **Botanical profile** (plant family, parts used, key phytochemicals)
3. **Pharmacological effects** (organized by system: sedative/CNS, cardiac, anti-inflammatory, antioxidant)
4. **Study evidence table** (PMID, design, key finding)
5. **Practical assessment** (what it CAN do, what it CANNOT do, dosage guidance)
6. **Limitations disclaimer** (traditional registration vs. modern RCT evidence)
7. **PMID citations** inline

### Pitfalls

- **Never search by brand name alone** — will return zero results on all search engines
- **Pharmacy websites are useless** for niche traditional products — they only list top-selling items
- **PubMed anxiety/sedative queries too narrow** — use broad "pharmacology clinical" first, then filter manually
- **"Traditional use" registration ≠ RCT evidence** — be explicit about evidence quality tier
- **German plant names** (Herzgespannkraut) don't work in PubMed — always use botanical Latin (*Leonurus cardiaca*)
