Mystic Shroom Elixir - 10x Mushroom Capsules

  • Sale
  • Regular price $30.00
Shipping calculated at checkout.


Traditional healers have used medicinal mushrooms for thousands of years. These powerful fungi are known for their antioxidants, polysaccharides, and other compounds that have the ability to nourish the brain, strengthen immunological responses, and normalize stress responses, as many of the mushrooms in this blend are also adaptogenic.


Medicinal mushroom supplements are trending amongst those looking to increase mental agility, reverse disease, and slow down the signs of aging. This super potent formula includes mushrooms like Chaga, Cordyceps, Reishi, and Lion’s Mane.


Ingredients: Cordyceps Sinensis Powder, Reishi Mushroom Extract, Shiitake Mushroom Extract, Lions Mane, Proprietary Blend (Maitake Mushroom Extract, Turkey Tail Extract, Chaga Mushroom Extract, Royal Sun Agaricus Extract, White Button Mushroom Extract, Black Fungus Extract, Cellulose (Vegetable Capsule), Microcrystalline Cellulose, Magnesium Stearate.

Manufacturer Country: USA

Amount: 60 caps

Gross Weight: 0.25lb (113g)

Suggested Use: As a dietary supplement, take two (2) vegetable capsules once a day. For best results, take 20-30 min before a meal with an 8oz. glass of water or as directed by your healthcare professional.

Caution: Do not exceed recommended dose. Pregnant or nursing mothers, children under the age of 18, and individuals with a known medical condition should consult a physician before using this or any dietary supplement.

Warning: Keep out of reach of children. Do not use if the safety seal is damaged or missing. Store in a cool, dry place.


The Food and Drug Administration has not evaluated these statements. This product is not intended to diagnose, treat, cure, or prevent any disease.

Gluten-free Vegetarian Lactose-free Allergen-free Hormone-free All natural Antibiotic-free Non-GMO Corn-free Vegan friendly Sugar-free


/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);