{"id":8,"date":"2020-06-20T19:19:19","date_gmt":"2020-06-20T19:19:19","guid":{"rendered":"https:\/\/democontent.codex-themes.com\/sites-elementor\/fullscreen-vertical-slider-1\/?page_id=8"},"modified":"2024-12-26T19:08:18","modified_gmt":"2024-12-26T19:08:18","slug":"homepage","status":"publish","type":"page","link":"https:\/\/mushroommadness.shop\/","title":{"rendered":"Mushroom Madness Homepage"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"8\" class=\"elementor elementor-8\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-40602b3 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default\" data-id=\"40602b3\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d0c9b33\" data-id=\"d0c9b33\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-253aa73 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-html\" data-id=\"253aa73\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"animation-wrapper\">\n    <canvas id=\"animation-visual-canvas\"><\/canvas>\n<\/div>\n    \n<style>\n\n        .animation-wrapper {\n            width: 100%;\n            height: 1000px;\n    position: absolute;\n    top: 0;\n    overflow: hidden;\n    z-index: 1;\n        }\n        .animation-wrapper canvas {\n            width: 100%;\n            height: 100%;\n            position: absolute;\n            left: 0;\n            top: 0;\n            opacity: 1;\n    z-index: 1;\n        }\n    <\/style>\n\n    <script type=\"text\/javascript\" src=\" https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/TweenLite.min.js\"><\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/EasePack.min.js\"><\/script>\n\n<script type=\"text\/javascript\">\n    (function() {\n        var lastTime = 0;\n        var vendors = ['ms', 'moz', 'webkit', 'o'];\n        for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n            window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n            window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame'];\n        }\n\n        if (!window.requestAnimationFrame)\n            window.requestAnimationFrame = function(callback, element) {\n                var currTime = new Date().getTime();\n                var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n                var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n                    timeToCall);\n                    lastTime = currTime + timeToCall;\n                return id;\n            };\n\n            if (!window.cancelAnimationFrame)\n                window.cancelAnimationFrame = function(id) {\n                    clearTimeout(id);\n                };\n    }());\n\n    (function() {\n        var canvas,\n            contentWidth,\n            contentHeight,\n            ctx,\n            points = [],\n            target;\n\n        function initVisualAnimation() {\n            canvas = document.getElementById(\"animation-visual-canvas\");\n\n            resize();\n\n            ctx = canvas.getContext('2d');\n\n            target = {\n                x: contentWidth \/ 2,\n                y: contentHeight \/ 2\n            };\n\n            \/\/ create points\n            for (var x = 0; x < contentWidth; x = x + contentWidth \/ 20) {\n                for (var y = 0; y < contentHeight; y = y + contentHeight \/ 20) {\n                    var px = x + Math.random() * contentWidth \/ 20;\n                    var py = y + Math.random() * contentHeight \/ 20;\n                    points.push({\n                        x: px,\n                        originX: px,\n                        y: py,\n                        originY: py\n                    });\n                }\n            }\n\n            \/\/ for each point find the 5 closest points\n            for (var i = 0; i < points.length; i++) {\n                var closest = [];\n                var p1 = points[i];\n                for (var j = 0; j < points.length; j++) {\n                    var p2 = points[j];\n                    if (p1 != p2) {\n                        var placed = false;\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (closest[k] == undefined) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (getDistance(p1, p2) < getDistance(p1, closest[k])) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n                    }\n                }\n                p1.closest = closest;\n            }\n\n            \/\/ assign a circle to each point\n            for (var i in points) {\n                points[i].circle = new Circle(points[i], 2 + Math.random() * 2, 'rgba(255, 255, 255, 0.3)');\n            }\n\n            addListeners();\n\n            animate();\n            for (var i in points) {\n                shiftPoint(points[i]);\n            }\n        }\n\n        function addListeners() {\n            if( !('ontouchstart' in window)) {\n                window.addEventListener('mousemove', mouseMove);\n            }\n\n            window.addEventListener('resize', resize);\n        }\n\n        function mouseMove(e) {\n            var posx = posy = 0;\n            var offset_top = getElementPosition(canvas).top;\n\n            if (e.pageX || e.pageY) {\n                posx = e.pageX;\n                posy = e.pageY;\n            } else if (e.clientX || e.clientY)    {\n                posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;\n                posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;\n            }\n\n            target.x = posx;\n            target.y = posy - offset_top;\n        }\n\n        function getElementPosition(elem) {\n            var w = elem.offsetWidth,\n                h = elem.offsetHeight,\n                l = 0,\n                t = 0;\n\n            while (elem) {\n                l += elem.offsetLeft;\n                t += elem.offsetTop;\n                elem = elem.offsetParent;\n            }\n\n            return {\n                left: l,\n                top: t,\n                width: w,\n                height: h\n            };\n        }\n\n        function resize() {\n            \/\/ parent node size\n            contentWidth = canvas.parentNode.offsetWidth;\n            contentHeight = canvas.parentNode.offsetHeight;\n\n            \/\/ set canvas size equal size of parent node\n            canvas.width = contentWidth;\n            canvas.height = contentHeight;\n        }\n\n        function getDistance(p1, p2) {\n            return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);\n        }\n\n        function Circle(pos, rad, color) {\n            var _this = this;\n\n            (function() {\n                _this.pos = pos || null;\n                _this.radius = rad || null;\n                _this.color = color || null;\n            })();\n\n            this.draw = function() {\n                if (!_this.active) return;\n                ctx.beginPath();\n                ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);\n                ctx.fillStyle = 'rgba(255, 255, 255, ' + _this.active + ')';\n                ctx.fill();\n            };\n        }\n\n        function animate() {\n            ctx.clearRect(0, 0, contentWidth, contentHeight);\n\n            for (var i in points) {\n                \/\/ detect points in range\n                if (Math.abs(getDistance(target, points[i])) < 4000) {\n                    points[i].active = 0.3;\n                    points[i].circle.active = 0.6;\n                } else if (Math.abs(getDistance(target, points[i])) < 20000) {\n                    points[i].active = 0.1;\n                    points[i].circle.active = 0.3;\n                } else if (Math.abs(getDistance(target, points[i])) < 40000) {\n                    points[i].active = 0.02;\n                    points[i].circle.active = 0.1;\n                } else {\n                    points[i].active = 0;\n                    points[i].circle.active = 0;\n                }\n\n                drawLines(points[i]);\n                points[i].circle.draw();\n            }\n\n            requestAnimationFrame(animate);\n        }\n\n        function drawLines(p) {\n            if (!p.active) {\n                return;\n            }\n\n            for (var i in p.closest) {\n                ctx.beginPath();\n                ctx.moveTo(p.x, p.y);\n                ctx.lineTo(p.closest[i].x, p.closest[i].y);\n                ctx.strokeStyle = 'rgba(255, 255, 255, ' + p.active + ')';\n                ctx.stroke();\n            }\n        }\n\n        function shiftPoint(p) {\n            TweenLite.to(\n                p,\n                1 + 1 * Math.random(),\n                {\n                    x: p.originX - 50 + Math.random() * 100,\n                    y: p.originY - 50 + Math.random() * 100,\n                    ease:Circ.easeInOut,\n                    onComplete: function() {\n                        shiftPoint(p);\n                    }\n                }\n            );\n        }\n\n        window.onload = initVisualAnimation;\n    })();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b4661a flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-image\" data-id=\"4b4661a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" width=\"1024\" height=\"1024\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-1024x1024.png\" class=\"attachment-large size-large wp-image-33611\" alt=\"\" srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-1024x1024.png 1024w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-300x300.png 300w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-180x180.png 180w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-600x600.png 600w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-150x150.png 150w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-768x768.png 768w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-256x256.png 256w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness.png 1125w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-6e265e8 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"6e265e8\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50bc384\" data-id=\"50bc384\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4f155e5 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"4f155e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p class=\"title-xlarge\"><span class=\"light\">Apapt.<\/span><br \/>Thrive.<br \/><span style=\"color: #212331;\">shine.<\/span><\/p>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a19be81 elementor-widget-tablet__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"a19be81\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p class=\"styled-subtitle\">Fuel your body and free your mind with our collection of adaptogenic mushroom products. We always pass the vibe check and so will you.<\/p>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cc49738 elementor-button-info elementor-align-center flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-button\" data-id=\"cc49738\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Shop Now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-53c1aec elementor-hidden-tablet elementor-hidden-phone\" data-id=\"53c1aec\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-40c8bfa flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-styledimage\" data-id=\"40c8bfa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/pexels-taina-bernard-1861666-3497540-scaled.jpg&quot;,&quot;id&quot;:33614,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;thegem_elementor_preset&quot;:&quot;default&quot;,&quot;image_position&quot;:&quot;left&quot;,&quot;icon_show&quot;:&quot;yes&quot;}\" data-widget_type=\"thegem-styledimage.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"styled-image-wrapper\">\n\t\t\t<div class=\"gem-image gem-wrapbox gem-wrapbox-default gem-wrapbox-position-left  \">\n\t\t\t<div class=\"gem-wrapbox-inner \" >\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/pexels-taina-bernard-1861666-3497540-scaled.jpg\">\n\t\t\t\t\t\t\t\t\t\t<img class=\"gem-wrapbox-element img-responsive \"\n\t\t\t\t\t\t src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/pexels-taina-bernard-1861666-3497540-scaled.jpg\"\n\t\t\t\t\t\t alt=\"\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-camera\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z\"><\/path><\/svg>\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\n\n\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-172948d elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"172948d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:33619,&quot;url&quot;:&quot;https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Mushroom-Background-2.png&quot;},{&quot;id&quot;:33620,&quot;url&quot;:&quot;https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Mushroom-Background.png&quot;}],&quot;background_slideshow_slide_duration&quot;:17000,&quot;background_slideshow_transition_duration&quot;:0,&quot;background_slideshow_ken_burns&quot;:&quot;yes&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_ken_burns_zoom_direction&quot;:&quot;in&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c50be96\" data-id=\"c50be96\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1bee298 elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"1bee298\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<div class=\"title-h1\"><span style=\"--darkreader-inline-color: #d8d4cf; color: #e8e6e3; font-family: Montserrat UltraLight;\" data-darkreader-inline-color=\"\"><span style=\"font-weight: 400;\">Real Ingredients<\/span><\/span><br \/><span class=\"light\" style=\"color: #f4ff81; --darkreader-inline-color: #f3ff74;\" data-darkreader-inline-color=\"\">Vegan Friendly<\/span><br \/><span style=\"--darkreader-inline-color: #b266ff; color: #b66dff; font-family: Montserrat UltraLight;\" data-darkreader-inline-color=\"\"><span style=\"font-weight: 400;\">For every mood<\/span><\/span><\/div>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-inner-section elementor-element elementor-element-0b638c3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"0b638c3\" data-element_type=\"section\" data-e-type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-04367f4\" data-id=\"04367f4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c99116e elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-styled-textbox\" data-id=\"c99116e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;basic&quot;}\" data-widget_type=\"thegem-styled-textbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"gem-textbox styled-textbox-basic\">\n\n\t\n\t\t<div class=\"gem-textbox-top gem-textbox-top-none default-fill\">\n\t\t\t\t\t<\/div>\n\t\n\t<div class=\"gem-textbox-inner\">\n\n\t\t<div class=\"gem-textbox-content default-background centered-box button-bottom\">\n\n\t\t\t\n\t\t\t<div class=\"gem-texbox-text-wrapper\">\n\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"gem-textbox-description gem-text-output\">\n\t\t\t\t\t\t\t<p class=\"styled-subtitle\"><span data-darkreader-inline-bgcolor=\"\">We're mad about mushrooms and helping you feel your best. Whether you need a little boost to start your day or help winding down at night, we've got you covered. What's your mood? <\/span><span style=\"font-size: 16px\" data-darkreader-inline-bgcolor=\"\"><\/span><\/p>\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"gem-button-container gem-widget-button\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"gem-button gem-button-size-medium gem-button-text-weight-bold gem-button-style-outline\" href=\"#\">\n\t\t\t\t\t\t\t<span class=\"gem-inner-wrapper-btn\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-text-button\">\n\t\t\t\t\t\t\t\t\tbuy now!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t<\/div>\n\n\t<\/div>\n\n\t\n\t\t<div class=\"gem-textbox-bottom gem-textbox-bottom-none default-fill\">\n\t\t\t\t<\/div>\n\t\n\t\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t<div data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-element elementor-element-d175cfa thegem-e-con-layout-thegem e-flex e-con-boxed e-con e-parent\" data-id=\"d175cfa\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a3dc0ef flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-extended-products-carousel\" data-id=\"a3dc0ef\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;below-default-cart-button&quot;,&quot;image_size&quot;:&quot;default&quot;,&quot;exclude_type&quot;:&quot;manual&quot;,&quot;orderby&quot;:&quot;default&quot;,&quot;order&quot;:&quot;asc&quot;,&quot;product_show_categories&quot;:&quot;yes&quot;,&quot;product_show_categories_tablet&quot;:&quot;yes&quot;,&quot;product_show_categories_mobile&quot;:&quot;yes&quot;,&quot;product_show_title&quot;:&quot;yes&quot;,&quot;product_show_price&quot;:&quot;yes&quot;,&quot;product_show_reviews&quot;:&quot;yes&quot;,&quot;product_show_reviews_tablet&quot;:&quot;yes&quot;,&quot;product_show_reviews_mobile&quot;:&quot;yes&quot;,&quot;product_show_add_to_cart&quot;:&quot;yes&quot;,&quot;product_show_add_to_cart_mobiles&quot;:&quot;yes&quot;,&quot;add_to_cart_type&quot;:&quot;button&quot;,&quot;cart_button_show_icon&quot;:&quot;yes&quot;,&quot;product_show_new&quot;:&quot;yes&quot;,&quot;product_show_sale&quot;:&quot;yes&quot;,&quot;product_show_out&quot;:&quot;yes&quot;,&quot;cart_hook&quot;:&quot;yes&quot;}\" data-widget_type=\"thegem-extended-products-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"preloader skeleton-carousel\">\n\t\t\t\t\t\t<div class=\"skeleton\">\n\t\t\t\t\t\t\t<div class=\"skeleton-posts row portfolio-row\">\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t<div class=\"portfolio-item product col-xs-6 col-sm-4 col-md-4 owl-item size-item post-8 page type-page status-publish\">\n\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<div class=\"portfolio-preloader-wrapper\">\n\t\t\t\t\n\t\t\t\t<div class=\"portfolio portfolio-grid extended-portfolio-grid extended-products-grid extended-products-grid-carousel extended-carousel-grid woocommerce products no-padding disable-isotope portfolio-preset-below-default-cart-button portfolio-style-justified background-style-transparent caption-container-preset- caption-position-page caption-alignment- hover-fade title-on-page arrows-position-outside aspect-ratio-portrait           portfolio-disable-socials columns-desktop-3x columns-tablet-3x columns-mobile-2x  arrows-hover   aspect-ratio-custom\" id=\"style-a3dc0ef\" data-style-uid=\"a3dc0ef\" data-columns-mobile=\"2\" data-columns-tablet=\"3\" data-columns-desktop=\"3\" data-margin-mobile=\"42\" data-margin-tablet=\"42\" data-margin-desktop=\"42\" data-hover=\"fade\" data-dots=\"1\" data-arrows=\"1\" data-loop=\"0\" data-sliding-animation=\"default\" data-autoscroll-speed=\"0\">\n\n\t\t\t\t\t<div class=\"portfolio-row-outer \">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-filter-tabs-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"extended-products-grid-carousel-item active\"\n\t\t\t\t\t\t\t\t\t data-num=\"1\">\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-row clearfix\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-set\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"extended-carousel-wrap\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"extended-carousel-item owl-carousel owl-theme owl-loaded\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"owl-stage-outer\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"owl-stage\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product dream gummies col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33668 type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-ashwagandha product_tag-cordyceps product_tag-ginkgo-biloba product_tag-ginseng product_tag-gummies product_tag-maca product_tag-organic product_tag-sex product_tag-tongkat-ali product_tag-vegan product_tag-vitality first instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33668 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-ashwagandha product_tag-cordyceps product_tag-ginkgo-biloba product_tag-ginseng product_tag-gummies product_tag-maca product_tag-organic product_tag-sex product_tag-tongkat-ali product_tag-vegan product_tag-vitality  instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/BloomGummies-Front-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/BloomGummies-Front-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Bloom Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/BloomGummies-Back-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/BloomGummies-Back-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Bloom Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=bloom-gummies\"><span class=\"screen-reader-text\">Bloom Gummies<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span>\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33668 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-ashwagandha product_tag-cordyceps product_tag-ginkgo-biloba product_tag-ginseng product_tag-gummies product_tag-maca product_tag-organic product_tag-sex product_tag-tongkat-ali product_tag-vegan product_tag-vitality  instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"dream\">Dream<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"gummies\">Gummies<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=bloom-gummies\">Bloom Gummies<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>39.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33668\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33668\" data-product_sku=\"10709\" aria-label=\"Add to cart: &ldquo;Bloom Gummies&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Bloom Gummies&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33668\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product dream gummies col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33670 type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-5-htp product_tag-gummies product_tag-kava product_tag-reishi product_tag-relaxation product_tag-rest product_tag-sleep last instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33670 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-5-htp product_tag-gummies product_tag-kava product_tag-reishi product_tag-relaxation product_tag-rest product_tag-sleep first instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/DreamGummies-Front-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/DreamGummies-Front-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Dream Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/DreamGummies-Back-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/DreamGummies-Back-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Dream Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=dream-gummies\"><span class=\"screen-reader-text\">Dream Gummies<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span>\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33670 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-5-htp product_tag-gummies product_tag-kava product_tag-reishi product_tag-relaxation product_tag-rest product_tag-sleep  instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"dream\">Dream<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"gummies\">Gummies<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=dream-gummies\">Dream Gummies<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>39.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33670\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33670\" data-product_sku=\"10708\" aria-label=\"Add to cart: &ldquo;Dream Gummies&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Dream Gummies&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33670\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product dream col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33812 type-product status-publish has-post-thumbnail product_cat-dream  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33812 product type-product status-publish has-post-thumbnail product_cat-dream last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2026\/01\/raster-thegem-product-justified-portrait-m.jpg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2026\/01\/raster-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Dubai Mushroom Chocolate 500MG\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2026\/01\/dubaimushchocolate-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2026\/01\/dubaimushchocolate-thegem-product-justified-portrait-m.png\" width=\"343\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Dubai Mushroom Chocolate 500MG\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=dubai-mushroom-chocolate\"><span class=\"screen-reader-text\">Dubai Mushroom Chocolate 500MG<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33812 product type-product status-publish has-post-thumbnail product_cat-dream first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"dream\">Dream<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=dubai-mushroom-chocolate\">Dubai Mushroom Chocolate 500MG<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>19.00<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33812\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33812\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Dubai Mushroom Chocolate 500MG&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Dubai Mushroom Chocolate 500MG&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33812\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product coffee rise col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33792 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33792 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/raster-thegem-product-justified-portrait-m.jpg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/raster-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"French Roast\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/MushCoffee2-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/MushCoffee2-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"French Roast\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=french-roast-2\"><span class=\"screen-reader-text\">French Roast<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33792 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"coffee\">Coffee<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"rise\">Rise<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=french-roast-2\">French Roast<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>17.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33792\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33792\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;French Roast&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;French Roast&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33792\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product bloom supplements col-xs-6 col-sm-4 col-md-4 owl-item post-33795 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33795 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner fallback-zooming\">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/IMG_1528-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/09\/IMG_1528-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Fungi Fuel: Cordyceps Concepts 60 ct.\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=fungi-fuel-cordyceps-concepts-60-ct-copy\"><span class=\"screen-reader-text\">Fungi Fuel: Cordyceps Concepts 60 ct.<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33795 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"bloom\">Bloom<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"supplements\">Supplements<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=fungi-fuel-cordyceps-concepts-60-ct-copy\">Fungi Fuel: Cordyceps Concepts 60 ct.<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>24.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33795\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33795\" data-product_sku=\"10740-1\" aria-label=\"Add to cart: &ldquo;Fungi Fuel: Cordyceps Concepts 60 ct.&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Fungi Fuel: Cordyceps Concepts 60 ct.&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33795\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product coffee rise col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33783 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33783 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/raster-1-thegem-product-justified-portrait-m.jpg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/raster-1-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Mind Brew: House Blend\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/MushCoffee-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/MushCoffee-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Mind Brew: House Blend\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=mind-brew-house-blend\"><span class=\"screen-reader-text\">Mind Brew: House Blend<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33783 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"coffee\">Coffee<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"rise\">Rise<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=mind-brew-house-blend\">Mind Brew: House Blend<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>17.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33783\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33783\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;Mind Brew: House Blend&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Mind Brew: House Blend&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33783\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product bloom supplements col-xs-6 col-sm-4 col-md-4 owl-item post-33776 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33776 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner fallback-zooming\">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1525-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1525-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Passion Fuel: Cordyceps Concepts 60 ct.\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=passion-fuel-cordyceps-concepts-60-ct\"><span class=\"screen-reader-text\">Passion Fuel: Cordyceps Concepts 60 ct.<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33776 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-bloom product_cat-supplements product_tag-capsule product_tag-cordyceps product_tag-functional-mushrooms product_tag-natural-viagra first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"bloom\">Bloom<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"supplements\">Supplements<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=passion-fuel-cordyceps-concepts-60-ct\">Passion Fuel: Cordyceps Concepts 60 ct.<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>24.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33776\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33776\" data-product_sku=\"10740\" aria-label=\"Add to cart: &ldquo;Passion Fuel: Cordyceps Concepts 60 ct.&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Passion Fuel: Cordyceps Concepts 60 ct.&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33776\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product glow col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33778 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-reishi  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33778 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-reishi  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1541-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1541-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Reishi Mushroom Face Cream 3 oz\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1535-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1535-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Reishi Mushroom Face Cream 3 oz\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=reishi-mushroom-face-cream-3-oz\"><span class=\"screen-reader-text\">Reishi Mushroom Face Cream 3 oz<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33778 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-reishi last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"glow\">Glow<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=reishi-mushroom-face-cream-3-oz\">Reishi Mushroom Face Cream 3 oz<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>21.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33778\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33778\" data-product_sku=\"10742\" aria-label=\"Add to cart: &ldquo;Reishi Mushroom Face Cream 3 oz&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Reishi Mushroom Face Cream 3 oz&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33778\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product glow col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33780 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-anti-wrinkle product_tag-face-cream product_tag-mushroom-face-cream product_tag-reishi first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33780 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-anti-wrinkle product_tag-face-cream product_tag-mushroom-face-cream product_tag-reishi  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1541-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1541-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Reishi Mushroom Face Cream 8 oz\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1535-scaled-thegem-product-justified-portrait-m.jpeg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/IMG_1535-scaled-thegem-product-justified-portrait-m.jpeg\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Reishi Mushroom Face Cream 8 oz\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=reishi-mushroom-face-cream-8-oz\"><span class=\"screen-reader-text\">Reishi Mushroom Face Cream 8 oz<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33780 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-glow product_tag-anti-wrinkle product_tag-face-cream product_tag-mushroom-face-cream product_tag-reishi  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"glow\">Glow<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=reishi-mushroom-face-cream-8-oz\">Reishi Mushroom Face Cream 8 oz<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>34.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33780\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33780\" data-product_sku=\"10743\" aria-label=\"Add to cart: &ldquo;Reishi Mushroom Face Cream 8 oz&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Reishi Mushroom Face Cream 8 oz&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33780\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product dream gummies col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33669 type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-energy product_tag-focus product_tag-ginseng product_tag-gummies product_tag-lions-mane product_tag-productivity product_tag-vitamin-b12 last instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33669 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-energy product_tag-focus product_tag-ginseng product_tag-gummies product_tag-lions-mane product_tag-productivity product_tag-vitamin-b12 first instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/RiseGummies-Front-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/RiseGummies-Front-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"Rise Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/RiseGummies-Back-scaled-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/RiseGummies-Back-scaled-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"Rise Gummies\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=rise-gummies\"><span class=\"screen-reader-text\">Rise Gummies<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"label new-label title-h6\"><span class=\"rotate-back\"><span class=\"text\">New<\/span><\/span><\/span>\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33669 product type-product status-publish has-post-thumbnail product_cat-dream product_cat-gummies product_tag-energy product_tag-focus product_tag-ginseng product_tag-gummies product_tag-lions-mane product_tag-productivity product_tag-vitamin-b12  instock featured taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"dream\">Dream<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"gummies\">Gummies<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=rise-gummies\">Rise Gummies<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>39.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33669\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33669\" data-product_sku=\"10710\" aria-label=\"Add to cart: &ldquo;Rise Gummies&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;Rise Gummies&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33669\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"portfolio-item product coffee rise col-xs-6 col-sm-4 col-md-4 owl-item image-hover post-33785 type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise product_tag-coffee product_tag-columbian-blend product_tag-lions-mane product_tag-rise-coffee  instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t<div class=\"item-separator-box\"><\/div>\n\t\t<div class=\"actions woocommerce_before_shop_loop_item\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"wrap clearfix\">\n\t\t\t<div class=\"image post-33785 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise product_tag-coffee product_tag-columbian-blend product_tag-lions-mane product_tag-rise-coffee last instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t<div class=\"image-inner \">\n\t\t\t\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/raster-2-thegem-product-justified-portrait-m.jpg 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/raster-2-thegem-product-justified-portrait-m.jpg\" width=\"400\" height=\"500\"  class=\"attachment-thegem-product-justified-portrait-m\" alt=\"The Daily Roar \u2013 Colombian Roast\" \/>\n\t\t<\/picture>\n\t\t\t\t<picture>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/MushCoffee3-1-thegem-product-justified-portrait-m.png 1x\"   sizes=\"100vw\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2025\/04\/MushCoffee3-1-thegem-product-justified-portrait-m.png\" width=\"400\" height=\"500\"  class=\"image-hover hover-fade\" alt=\"The Daily Roar \u2013 Colombian Roast\" \/>\n\t\t<\/picture>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"overlay\">\n\t\t\t\t\t<div class=\"overlay-circle\"><\/div>\n\t\t\t\t\t\n\t\t\t\t\t<a class=\"product-link\" href=\"https:\/\/mushroommadness.shop\/?product=cognitive-cup-colombian-roast\"><span class=\"screen-reader-text\">The Daily Roar \u2013 Colombian Roast<\/span><\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption empty\">\n\t\t\t\t\t\t<div class=\"icons-top\">\n\t\t\t\t\t\t\t\t\t<!-- YITH -->\n\t\t\n\t\t<!-- Sharing -->\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"labels-outer \">\n\t\t\t\t\t<div class=\"product-labels style-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"caption post-33785 product type-product status-publish has-post-thumbnail product_brand-mushroom-madness product_cat-coffee product_cat-rise product_tag-coffee product_tag-columbian-blend product_tag-lions-mane product_tag-rise-coffee first instock taxable shipping-taxable purchasable product-type-simple\">\n\t\t\t\t\t<div class=\"product-info clearfix\">\n\t\t\t\t\t\t<div class=\"actions woocommerce_before_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"reviews\"><div class=\"product-rating product-rating-empty\"><div class=\"empty-rating\"><\/div><\/div><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"categories\"><a href=\"#\" data-filter-type=\"category\" data-filter=\"coffee\">Coffee<\/a>, <a href=\"#\" data-filter-type=\"category\" data-filter=\"rise\">Rise<\/a><\/div>\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"title\"><a class=\"\" href=\"https:\/\/mushroommadness.shop\/?product=cognitive-cup-colombian-roast\">The Daily Roar \u2013 Colombian Roast<\/a><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"actions woocommerce_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item_title\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"list-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"price-wrap default\">\n\t<div class=\"product-price\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\" translate=\"no\">&#36;<\/span>17.99<\/bdi><\/span><\/span><\/div>\n<\/div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"portfolio-icons product-bottom on-page-caption clearfix  \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- Add to cart -->\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"simple-type-button cart type_button\">\n\t\t\t\t<a href=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F8&#038;add-to-cart=33785\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"33785\" data-product_sku=\"\" aria-label=\"Add to cart: &ldquo;The Daily Roar \u2013 Colombian Roast&rdquo;\" rel=\"nofollow\" data-success_message=\"&ldquo;The Daily Roar \u2013 Colombian Roast&rdquo; has been added to your cart\" role=\"button\"><i class=\"default\"><\/i><span class=\"space\"><\/span><span>Add To Cart<\/span><\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_33785\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"actions woocommerce_after_shop_loop_item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t<\/div><!-- .portflio-set -->\n\t\t\t\t\t\t\t\t\t<\/div><!-- .row-->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"slider-prev-icon position-outside\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"default\"><\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"slider-next-icon position-outside\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"default\"><\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"thegem-popup-notification-wrap\"\n\t\tid=\"style-notification-a3dc0ef\"\n\t\t>\n\t\t            <div class=\"thegem-popup-notification cart\" data-timing=\"4000\">\n                <div class=\"notification-message\">\n\t\t\t\t\tItem added to cart                    <span class=\"buttons\">\n\t\t\t\t\t\t<a class=\"button\" href=\"https:\/\/mushroommadness.shop\/?page_id=33636\">View Cart<\/a>\n\t\t\t\t\t\t<a class=\"button\" href=\"https:\/\/mushroommadness.shop\/?page_id=33637\">Checkout<\/a>\n\t\t\t\t\t<\/span>\n                <\/div>\n            <\/div>\n\t\t\n\t\t    <\/div>\n\t\t\t\t\t\t<\/div><!-- .full-width -->\n\t\t\t\t<\/div><!-- .portfolio-->\n\t\t\t<\/div><!-- .portfolio-preloader-wrapper-->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9ff7854 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-image\" data-id=\"9ff7854\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" width=\"1024\" height=\"341\" src=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-1024x341.png\" class=\"attachment-large size-large wp-image-33705\" alt=\"As seen at Walmart\" srcset=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-1024x341.png 1024w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-600x200.png 600w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-300x100.png 300w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-768x256.png 768w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at-1536x512.png 1536w, https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/12\/As-seen-at.png 1800w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Apapt.Thrive.shine. Fuel your body and free your mind with our collection of adaptogenic mushroom products. We always pass the vibe&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-fullwidth.php","meta":{"footnotes":""},"class_list":["post-8","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mushroom Madness Homepage &#8902; Mushroom Madness<\/title>\n<meta name=\"description\" content=\"We&#039;re mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mushroommadness.shop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mushroom Madness Homepage &#8902; Mushroom Madness\" \/>\n<meta property=\"og:description\" content=\"We&#039;re mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mushroommadness.shop\/\" \/>\n<meta property=\"og:site_name\" content=\"Mushroom Madness\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-26T19:08:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1125\" \/>\n\t<meta property=\"og:image:height\" content=\"1125\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/\",\"url\":\"https:\\\/\\\/mushroommadness.shop\\\/\",\"name\":\"Mushroom Madness Homepage &#8902; Mushroom Madness\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Mushroom-Madness-1024x1024.png\",\"datePublished\":\"2020-06-20T19:19:19+00:00\",\"dateModified\":\"2024-12-26T19:08:18+00:00\",\"description\":\"We're mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mushroommadness.shop\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Mushroom-Madness.png\",\"contentUrl\":\"https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/Mushroom-Madness.png\",\"width\":1125,\"height\":1125},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mushroommadness.shop\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mushroom Madness Homepage\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#website\",\"url\":\"https:\\\/\\\/mushroommadness.shop\\\/\",\"name\":\"Mushroom Madness\",\"description\":\"We&#039;re mad about mushrooms\",\"publisher\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mushroommadness.shop\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#organization\",\"name\":\"Mushroom Madness\",\"url\":\"https:\\\/\\\/mushroommadness.shop\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Screenshot-2024-11-07-152255.png\",\"contentUrl\":\"https:\\\/\\\/mushroommadness.shop\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Screenshot-2024-11-07-152255.png\",\"width\":753,\"height\":710,\"caption\":\"Mushroom Madness\"},\"image\":{\"@id\":\"https:\\\/\\\/mushroommadness.shop\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mushroom Madness Homepage &#8902; Mushroom Madness","description":"We're mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mushroommadness.shop\/","og_locale":"en_US","og_type":"article","og_title":"Mushroom Madness Homepage &#8902; Mushroom Madness","og_description":"We're mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.","og_url":"https:\/\/mushroommadness.shop\/","og_site_name":"Mushroom Madness","article_modified_time":"2024-12-26T19:08:18+00:00","og_image":[{"width":1125,"height":1125,"url":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mushroommadness.shop\/","url":"https:\/\/mushroommadness.shop\/","name":"Mushroom Madness Homepage &#8902; Mushroom Madness","isPartOf":{"@id":"https:\/\/mushroommadness.shop\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mushroommadness.shop\/#primaryimage"},"image":{"@id":"https:\/\/mushroommadness.shop\/#primaryimage"},"thumbnailUrl":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness-1024x1024.png","datePublished":"2020-06-20T19:19:19+00:00","dateModified":"2024-12-26T19:08:18+00:00","description":"We're mad about mushrooms and helping you achieve your wellness goals. Our products are made with all vegan ingredients and high quality adaptogens.","breadcrumb":{"@id":"https:\/\/mushroommadness.shop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mushroommadness.shop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mushroommadness.shop\/#primaryimage","url":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness.png","contentUrl":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/08\/Mushroom-Madness.png","width":1125,"height":1125},{"@type":"BreadcrumbList","@id":"https:\/\/mushroommadness.shop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mushroommadness.shop\/"},{"@type":"ListItem","position":2,"name":"Mushroom Madness Homepage"}]},{"@type":"WebSite","@id":"https:\/\/mushroommadness.shop\/#website","url":"https:\/\/mushroommadness.shop\/","name":"Mushroom Madness","description":"We&#039;re mad about mushrooms","publisher":{"@id":"https:\/\/mushroommadness.shop\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mushroommadness.shop\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mushroommadness.shop\/#organization","name":"Mushroom Madness","url":"https:\/\/mushroommadness.shop\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mushroommadness.shop\/#\/schema\/logo\/image\/","url":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/Screenshot-2024-11-07-152255.png","contentUrl":"https:\/\/mushroommadness.shop\/wp-content\/uploads\/2024\/11\/Screenshot-2024-11-07-152255.png","width":753,"height":710,"caption":"Mushroom Madness"},"image":{"@id":"https:\/\/mushroommadness.shop\/#\/schema\/logo\/image\/"}}]}},"featured_image_src":null,"featured_image_src_square":null,"_links":{"self":[{"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=\/wp\/v2\/pages\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8"}],"version-history":[{"count":0,"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=\/wp\/v2\/pages\/8\/revisions"}],"wp:attachment":[{"href":"https:\/\/mushroommadness.shop\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}