Unwind and find bliss with Sunmed’s Above + Beyond Live Resin CBD Gummies, an innovative blend featuring hybrid
live resin and all your favorite hemp-derived cannabinoids.
New to Sunmed?
No
Yes
Delta-8 + Delta-9 Live Resin Blend
Love delta-8 and delta-9? Experience both in this customer-favorite. 40 milligrams of CBD, delta-8 THC, delta-9
THC, minor cannabinoids, and soothing terpenes perfectly balance the endocannabinoid system with mind-body
synergy. Hybrid live resin kicks this formula up a notch, heightening the senses for an entirely new experience.
control Your
Above + Beyond experience
a Half Gummy
3.1mg Delta-8 + 1.25mg Delta-8
A gentle introduction to the "Above + Beyond" profile, perfect for those seeking a manageable euphoric spark . You'll likely feel a subtle brightening of your mood and a light release of physical tension. It provides enough clarity to keep you engaged while easing the day's stress
control Your
Above + Beyond experience
a Whole Gummy
6.25mg Delta-8 THC + 2.5mg Delta-9 THC
This is the "sweet spot" where the well-rounded mix of extracts truly begins to shine. Expect a wave of warm, whole-body euphoria paired with a quieted, care-free mind. This dose is designed for those ready to unwind fully and enjoy a balanced, multi-dimensional high.
control Your
Above + Beyond experience
two Gummies
12.5mg Delta-8 THC + 5mg Delta-9 THC
Reserved for the advanced user looking for the maximum depth of our
most complex gummy. This double-dose amplifies euphoria into a heavy, immersive
experience . The synergy of Delta-8, Delta-9, and CBD works at full strength to
provide deep peace and "life is good" tranquility.
Swipe to explore doses
Relaxation + Relief From Daily Tension
Above + Beyond Live Resin CBD Gummies make it that much easier to achieve that mellow, laid-back feeling you need
at the end of a long day. Calm daily tension and discomfort, ease feelings of anxiousness and everyday
stressors, or simply kick back and take it easy. Whenever you are, relaxation and relief are always in reach.
1.5 Million Repeat Buyers
Many brands talk about customer counts. But are people who buy once customers?
We don’t think one-time sales count. What matters are repeat orders.
Sunmed has 1.5 million repeat buyers. These are 1.5 million buyers who returned to buy again . We haven't seen any other brand talk about repeat buyers, so we can't take them seriously.
Let’s Talk About the Price
At $60, this premium live resin gummy isn't cheap. That's something we were fully aware of when developing our formula. We could have explored ways to cut quality a little, but worried about the effect that would have on effectiveness.
Ultimately, we concluded that a gummy that costs $60 and delivers the goods is better than one that costs $50 but doesn't.
Once you try it, you'll see why we went all in. And if it doesn't deliver, let us know, and we'll give you a full refund. That's how confident we are about the quality of our ingredients.
Strawberry Flavor, Vegan-Friendly
Enjoy the natural taste of strawberry in every bite. Each gummy is 100% vegan and thoughtfully formulated to fit seamlessly into almost any lifestyle. It’s a guilt-free way to unwind — without the compromises.
Third-Party Tested, 30-Day Money-Back Guarantee
At Sunmed, our products live up to the highest standard of quality, purity, and legal potency, confirmed by our
third-party lab reports. Go Above + Beyond today with our 30-day money-back guarantee, knowing it's a risk-free
purchase that can elevate your everyday quality of life.
(function () {
// Ensure horizontal scrolling is fully functional on mobile devices
// This script enhances touch behavior, ensures no interference, and guarantees scroll works.
const scrollContainer = document.getElementById('mobileScrollTrack');
if (!scrollContainer) return;
// Force hardware acceleration & fix for any iOS inertial scrolling issues
scrollContainer.style.webkitOverflowScrolling = 'touch';
// Additional: enable mouse wheel horizontal scroll for desktop testing (optional but nice)
// but doesn't interfere with mobile touch.
let isDragging = false;
let startX = 0;
let scrollLeftStart = 0;
// Optional: allow touch-drag momentum? Browsers handle natively, but we keep passive.
// Ensure that scroll container is not prevented by any parent events.
scrollContainer.addEventListener('touchstart', function (e) {
// just to ensure native scroll works, we don't prevent default.
// We can capture to log nothing, but passivity is default.
}, { passive: true });
// fix for any cases where the scroll might be stuck due to css.
// Additionally, if scroll is not working due to weird dimensions, recalc.
function ensureScrollable() {
if (scrollContainer.scrollWidth > scrollContainer.clientWidth) {
// it's scrollable, good.
scrollContainer.style.overflowX = 'auto';
} else {
// fallback: rarely happens, but we set anyway
scrollContainer.style.overflowX = 'scroll';
}
}
ensureScrollable();
window.addEventListener('resize', function () {
ensureScrollable();
});
// Enhance scroll snapping on iOS with active feedback
let scrollTimeout;
scrollContainer.addEventListener('scroll', function () {
// add subtle class while scrolling to improve feel (optional)
if (scrollTimeout) clearTimeout(scrollTimeout);
scrollTimeout = setTimeout(() => {
// just idle, no action needed
}, 100);
});
// For any missing Swiper remnants — we have completely removed any slider initialization.
// Also we ensure that the scrollbar is hidden perfectly across all platforms.
// Additional: For old Android webview compatibility, we also set style again.
if (scrollContainer) {
scrollContainer.style.scrollbarWidth = 'none';
scrollContainer.style.msOverflowStyle = 'none';
}
// optional: add a little initial hint to scroll for first-time visitors?
// Show subtle bounce effect on first load (non-intrusive)
let hasScrolledHint = sessionStorage.getItem('scrollHintShown');
if (!hasScrolledHint) {
const hintEl = document.querySelector('.scroll-hint-mobile span');
if (hintEl) {
hintEl.style.transition = 'all 0.2s';
hintEl.style.transform = 'scale(1.02)';
setTimeout(() => {
if (hintEl) hintEl.style.transform = '';
}, 800);
}
sessionStorage.setItem('scrollHintShown', 'true');
}
console.log('Mobile horizontal scroll active - no slider, scrollbar hidden, touch ready');
})();