About This Product
### About This Product
All Herb Ingredients are Certified Organic or Wildcrafted Introducing the Moon Bear Blend is an additive-free, herbal blend. It contains no tobacco. Our blends are a flavorful and full-bodied.
Bear Blend is located in an USDA certified organic facility in Southern California, and are all handcrafted from biodynamic, fair trade, and USDA certified organic herbs.
Herbal. Get Blended™. Celebrate Wisely.
Customer Reviews (3) 4.3 3 reviews 5 2 4 0 3 1 2 0 1 0 Joy Rae Jul 23, 2023 · ✓ Verified Purchase I love moon, but this form just didn't work for me. The pieces of herb seem too big, and when I chew on them, they seem dry and stick in my throat somewhat. I'm planning to use this herbal chew either as a tea, or use it to make my own tincture. It definitely won't go to waste! Moon is a superb blend for me.
The flavor was really nice! The vegetable glycerin makes it slightly sweet, and the herbal aroma is really pleasing. I wanted to love it but it's just not for me. Kris Harshbarger Dec 29, 2020 · ✓ Verified Purchase Oh man, this stuff is tasty! I can taste the raspberry and rose best. I never thought of using chew because the thought of chewing on leaves didn’t sound appetizing but this stuff is sweet and soft, not dry at all. The Moon blend is noticeably calming and chill. I’ll tuck some of this in my lip while I work to get that mellow effect and slowly enjoy it for a couple hours. Without the need to spit (and really you don’t need to spit) it’s not messy or noticeable, just like you’re chewing on gum. Stephen Jan 21, 2020 Very nice chew. The saint john's wort in the blend makes this one unique from the other blends. The saint john's wort gives you a moderate uplift in my experience. This chew can be enjoyed at any time in the day and doesn't make you sleepy. However it is a quite calming blend so it may be better suited for after work or an hour or so before you go to sleep. The taste is mild and doesn't taste bad due to the other herbs such as rose, lavender, red raspberry leaf, and passion flower. These herbs seem to work in synergy with each other for the feeling this blend gives. I am overall very satisfied with this and would recommend it to anyone considering purchasing it. Write a Review Log in to write a review for this product.
Celebrating life through ritual. Organic herbs, handcrafted with intention. shop All Products Ceremonial Blends Herbal Teas Single Herbs learn Our Herbs Journal FAQ About Us account My Account Wholesale Application Affiliates Contact Us © 2026 Bear Blend LLC. All rights reserved. Privacy Policy Terms of Use Refunds The statements on this website have not been evaluated by the FDA. Bear Blend products are not intended to diagnose, treat, cure, or prevent any disease. Not for sale to minors. Wholesale pricing available for qualified businesses — apply here .
Your Cart Subtotal Tax and shipping calculated at checkout. View Cart Checkout →
document.addEventListener('alpine:init', () => {
Alpine.data('bbCartDrawer', () => ({
isOpen: false,
loading: false,
busy: false,
data: {
items: [],
count: 0,
subtotal: 0,
free_shipping_threshold: null,
free_shipping_remaining: null,
free_shipping_unlocked: false,
free_shipping_progress: 0,
},
async open() {
this.isOpen = true;
document.body.style.overflow = 'hidden';
await this.refresh();
},
close() {
this.isOpen = false;
document.body.style.overflow = '';
},
async refresh() {
this.loading = true;
try {
const res = await fetch('https://bearblend-main.staging.humanitymedia.net/cart/contents', {
headers: { 'Accept': 'application/json', 'X-Requested-With': 'XMLHttpRequest' },
credentials: 'same-origin',
});
if (!res.ok) throw new Error('cart fetch failed');
this.data = await res.json();
} catch (e) {
// swallow — drawer just shows whatever state it had
} finally {
this.loading = false;
}
},
async updateQuantity(key, qty) {
if (this.busy) return;
this.busy = true;
try {
await window.bbCart.update(key, Math.max(0, qty));
await this.refresh();
} finally {
this.busy = false;
}
},
async remove(key) {
if (this.busy) return;
this.busy = true;
try {
await window.bbCart.remove(key);
await this.refresh();
} finally {
this.busy = false;
}
},
}));
});