About This Product
### About This Product
Ingredients are Certified Organic and/or Wildcrafted Includes Natural Paper Cones (Raw or Similar). Introducing the Amazon Bear Blend is an additive-free, herbal smoke blend. It contains no tobacco. Our blends are a flavorful and full-bodied smoke.
Smoking is an ancient tradition. Native peoples of the world smoked blends of herbs as a ceremonial sacrament. As you enjoy this gentle and fragrant smoke, take a moment from your busy day and acknowledge your connection to the creator, to this beautiful earth and to your own breath.
These herbs burn best if you sip them gently; we suggest not smoking them like regular tobacco. The smoke will get more full and satisfying the lower they burn and they do not usually require relighting. We recommend you take the time to let them burn at their own pace. You will find the flavors and smoke get more and more full and satisfying as it burns lower.
Bear Blend is located in a 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 (8) 4.8 8 reviews 5 6 4 2 3 0 2 0 1 0 Laurence Horowitz Apr 7, 2020 I love Amazon rolliez because they are so easy to use and provide a great smoke. Alice Mar 30, 2019 Came right on time and helped take the edge off my girlfriend and I. Brianna Gentile Jun 29, 2018 GREAT PRODUCT for those addicted to smoking but allergic to added sugar etc. Ana Skinner Mar 9, 2018 A most pleasant experience, I so look forward to expanding on. Criston Morrow Mar 2, 2018 · ✓ Verified Purchase Great product. Keep it up. Criston Morrow Mar 2, 2018 · ✓ Verified Purchase Great product. Exceeded all my expectations. Arielle Cohen Feb 19, 2018 great product :D Emma Ehrlich Dec 9, 2017 These are great! I love that they're prerolled because I'm not that good at rolling myself...great alternative to harsher forms of smoking. 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;
}
},
}));
});