// Hero — gallery + buy box. Subscription/quantity/variant pickers wired up. const PRODUCT = { name: "Sleep Truffles", pack: "10 Count Pouch", variants: [ { id: "original", label: "Original Cocoa", dot: "cocoa" }, { id: "mint", label: "Dark Mint", dot: "gold" }, ], plans: [ { id: "sub-monthly", label: "Monthly subscription", sub: "1 pouch every 30 days · skip or cancel anytime", now: 49, was: 65, saveLabel: "SAVE 25%", }, { id: "sub-bulk", label: "Bulk subscription", sub: "3 pouches every 60 days · best value", now: 129, was: 195, saveLabel: "SAVE 34%", }, { id: "onetime", label: "One-time purchase", sub: "No commitment, no auto-renew", now: 65, was: null, saveLabel: null, }, ], thumbs: ["Front", "Back", "Open", "Truffle", "Lifestyle"], }; function Stars({ value = 4.9, count = 1247 }) { const filled = Math.round(value); return (
{[0,1,2,3,4].map(i => )} {count.toLocaleString()} reviews
); } function Gallery({ heroLayout }) { const [active, setActive] = React.useState(0); return (
{heroLayout !== "stacked" && (
{PRODUCT.thumbs.map((t, i) => (
setActive(i)} aria-label={`View ${t}`}>
{t}
))}
)}
#1 Plant-based
sleep aid
10ct Pouch
Aulv
Sleep Truffles
Product · {PRODUCT.thumbs[active]}
{heroLayout === "stacked" && (
{PRODUCT.thumbs.map((t, i) => (
setActive(i)} style={{ flex: 1 }} aria-label={`View ${t}`}>
{t}
))}
)}
Living-Soil Grown
Lab Tested · COA available
); } function PlanRow({ plan, selected, onSelect }) { return (
(e.key === " " || e.key === "Enter") && (e.preventDefault(), onSelect())}>
{plan.label} {plan.saveLabel && {plan.saveLabel}}
{plan.sub}
${plan.now}
{plan.was != null &&
${plan.was}
}
); } function BuyBox({ onAdd, density }) { const [planId, setPlanId] = React.useState("sub-bulk"); const [variantId, setVariantId] = React.useState("original"); const [qty, setQty] = React.useState(1); const [hours, setHours] = React.useState(7); const [mins, setMins] = React.useState(42); const plan = PRODUCT.plans.find(p => p.id === planId); const variant = PRODUCT.variants.find(v => v.id === variantId); // ticking countdown React.useEffect(() => { const t = setInterval(() => { setMins(m => { if (m === 0) { setHours(h => Math.max(0, h - 1)); return 59; } return m - 1; }); }, 60000); return () => clearInterval(t); }, []); const dense = density === "compact"; const roomy = density === "roomy"; const buyStyle = { "--buy-pad": dense ? "14px" : roomy ? "24px" : "20px", "--buy-gap": dense ? "10px" : roomy ? "16px" : "14px", gap: dense ? "12px" : roomy ? "22px" : "18px", }; const handleAdd = () => { onAdd({ product: PRODUCT.name, pack: PRODUCT.pack, variant: variant.label, planId: plan.id, planLabel: plan.label, qty, price: plan.now, }); }; return (

Sleep Truffles, 10 Count

Plant-compound chocolates for your endocannabinoid sleep system. {" "}See the science
{PRODUCT.variants.map(v => ( ))}
{PRODUCT.plans.map(p => ( setPlanId(p.id)} /> ))}
Free Member Gifts · $40 value
Sleep mask + travel tin with first subscription
Learn more
{qty}
Ships in {String(hours).padStart(2,"0")}h {String(mins).padStart(2,"0")}m {" "}· Free shipping on orders over $99 · Money-back guarantee

Your subscription includes

  • Free shipping & carbon-neutral delivery
  • Member rewards & restock reminders
  • 30-day money-back guarantee
  • Pause or cancel anytime
What is Sleep Truffles?
Sleep Truffles are single-serve chocolates crafted from Ghirardelli cocoa, organic coconut oil, and living-soil grown ancient landrace cannabis strains. Each truffle delivers a precise blend of plant cannabinoids and terpenes that support your body's natural endocannabinoid sleep response — non-habit forming, no morning grog.
Who it's for
Adults seeking a plant-based, food-grade alternative to pharmaceutical sleep aids or melatonin loops. Especially helpful for travelers, shift-adjacent sleepers, and anyone who wants to fall asleep faster and wake clear-headed.
Benefits
Faster onset, deeper sleep architecture, and a calm wind-down without next-morning heaviness. Most members report a noticeable shift within 5 nights.
How to use
45 minutes before bed, eat one truffle. Pair with low light and your favorite wind-down ritual. Begin with a half truffle if you're new to plant cannabinoids.
Quality & certifications
Third-party lab tested for purity and potency. Certificates of Analysis available with every batch. cGMP-compliant facility. Vegan, gluten-free, non-GMO.
Heading out of town?

Try our 3-pack travel tin — TSA-friendly, individually wrapped.

Tin · 3ct
Not for you? Return any time within 30 days. No questions asked.
); } function Hero({ onAdd, density, heroLayout }) { return (
); } Object.assign(window, { Hero, PRODUCT });