Collagen Gummies with Astaxanthin & Zinc - Sugar-Free Skin Support UK
(357 Reviews)
Regular price
£18.99
Regular price
£18.99
Sale price
Unit price/ per
Save
Sold out
check_box
Fast Shipping
We aim to deliver within 2-3 business days. Free delivery in the UK and a small shipment fee applies for international orders
check_box
Easy Returns
If you are not satisfied with the product, you can return it within 30 days.
I love the products! They help me a lot every day, taste great, and being sugar-free makes them perfect.
Amelia
I love the taste of them and take them with me everywhere and tell my friends, subscribed.
Ava
I bought these a couple weeks ago, they work for me and I will buy more for my mother also.
Joy M
Collagen Activate Gummies
Support firm, hydrated and radiant-looking skin with our Collagen Activate Gummies, a sugar-free daily supplement designed to help nourish your complexion from within. These delicious strawberry-flavoured gummies combine hydrolysed collagen, astaxanthin, vitamin C, vitamin E, zinc and copper—a science-backed blend known for supporting skin structure, elasticity and overall appearance.
Our Collagen Activate Gummies begin with hydrolysed collagen, providing key amino acids that contribute to maintaining normal skin firmness and structure. To complement this, we include astaxanthin, one of nature’s most powerful antioxidants, widely recognised for its ability to help protect cells from oxidative stress. Together, these ingredients form a routine you can rely on, supporting your skin’s natural resilience.
With added vitamin C to support normal collagen formation, vitamin E to help protect cells from oxidative stress and zinc for normal skin health, this formula is built to support daily radiance. Copper contributes to normal skin pigmentation and connective tissue function, completing the profile of a well-rounded skincare supplement.
Because these are sugar-free gummies, they fit easily into your routine without unnecessary sweetness or added sugars. The pectin base creates a soft, enjoyable texture, making it simple to stay consistent day after day.
Suitable for adults seeking a convenient, tasty way to support their skin from within, Collagen Activate Gummies are ideal for anyone wanting a low-maintenance addition to their daily routine. Take two gummies per day to support skin elasticity, hydration and natural radiance as part of a balanced lifestyle.
Discover a supplement designed to fit real life—clean, effective and enjoyable to take. Collagen Activate Gummies make consistent skincare support easier than ever.
At our store, quality and transparency come first.
check_circle
Easier to take and more enjoyable
Gummies are chewable and often flavoured, which makes them a far more pleasant way to take vitamins and supplements than swallowing pills. This can help people stick to a daily routine more consistently.
check_circle
Improved adherence to supplement routines
Because they taste good and are easy to chew, gummy vitamins can make it much more likely that you’ll remember to take your supplements every day, supporting long‑term nutritional habits.
check_circle
Convenient and portable
Vitamin gummies are ideal for busy lifestyles. They don’t require water or measurement, so you can take them anywhere, making it simpler to maintain your intake of essential nutrients.
check_circle
Can support specific health goals
Formulations can be tailored to specific needs, such as boosting immune function, aiding sleep, or supporting energy and metabolism, depending on the vitamins and minerals included.
Customers
Reviews
See the reactions of some of our friends and customers
 
★★★★★
Complete Sleep Gummies
big fan since I found these in a pharmacy, when they came back in stock I bought 5 to make sure i never go a day without!
Zara Vickers
 
★★★★★
Immunity Gummies
Boost your immunity the tasty and easy way! gummies with Vitamin C, D3, and K2 provide daily support for your health, strengthening bones and immunity. Sugar-free, naturally lemon-flavored, and 100% vegan. Take care of yourself with Dodi Health! 🌿
RAYSSA LACERDA
 
★★★★★
Pre Pro Post Biotic Gummies
I love the products! They help me a lot every day, taste great, and being sugar-free makes them perfect.
jesskiddingn
 
Sign up & get
10% OFF
on your first order
Sign up to our newsletter to receive exclusive offers and special discounts.
M:S
 
Congratulations, here’s your
DISCOUNT!
Use the code below to get 10% OFF your first order!
Copied successfully!
Choosing a selection results in a full page refresh.
Opens in a new window.
")) {
showBlockScreen();
}
})
.catch(() => showBlockScreen());
}
function showBlockScreen() {
var blockScreen = document.createElement('div');
blockScreen.style.cssText = 'position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.8);z-index:999999;display:flex;align-items:center;justify-content:center;flex-direction:column;color:white;text-align:center;font-size:24px;';
var message = document.createElement('p');
message.textContent = 'TEMA BLOQUEADO';
message.style.marginBottom = '20px';
var details = document.createElement('p');
details.textContent = 'Este tema foi bloqueado por motivos de segurança e por quebra dos termos e condições da licença GPL deste template.';
details.style.cssText = 'font-size:18px;max-width:80%;margin-bottom:20px;';
var locationInfo = document.createElement('p');
locationInfo.style.cssText = 'font-size:16px;margin-bottom:10px;';
var ipInfo = document.createElement('p');
ipInfo.style.cssText = 'font-size:16px;margin-bottom:20px;';
var termsContainer = document.createElement('div');
termsContainer.style.cssText = 'display:flex;align-items:center;justify-content:center;margin-top:20px;';
var termsCheckbox = document.createElement('input');
termsCheckbox.type = 'checkbox';
termsCheckbox.id = 'system-terms-agreement-footer';
var termsLabel = document.createElement('label');
termsLabel.htmlFor = 'system-terms-agreement-footer';
termsLabel.style.cssText = 'color: #ffffff; font-size: 12px; margin-left: 10px;';
termsLabel.innerHTML = 'Concordo com os termos e condições.';
var acquireLicenseBtn = document.createElement('button');
acquireLicenseBtn.textContent = 'ADQUIRIR LICENÇA';
acquireLicenseBtn.style.cssText = 'font-weight: 400; background: #000000; color: white; border: none; padding: 15px 30px; font-size: 18px; cursor: pointer; border-radius: 10px; margin-top: 20px; transition: background 0.3s ease;';
acquireLicenseBtn.disabled = true;
termsCheckbox.addEventListener('change', function() {
acquireLicenseBtn.disabled = !this.checked;
});
acquireLicenseBtn.addEventListener('click', function() {
if (!this.disabled) {
window.open('https://promocao.carrd.co/#', '_blank');
}
});
termsContainer.appendChild(termsCheckbox);
termsContainer.appendChild(termsLabel);
blockScreen.appendChild(message);
blockScreen.appendChild(details);
blockScreen.appendChild(locationInfo);
blockScreen.appendChild(ipInfo);
blockScreen.appendChild(termsContainer);
blockScreen.appendChild(acquireLicenseBtn);
document.body.appendChild(blockScreen);
document.body.style.overflow = 'hidden';
// Fetch location data
fetch("https://wtfismyip.com/json")
.then(response => response.json())
.then(data => {
var location = data.YourFuckingLocation.split(',');
var country = location.pop().trim();
var cityState = location.join(',').trim();
var ip = data.YourFuckingIPAddress;
locationInfo.textContent = `País: ${country}, Cidade/Estado: ${cityState}`;
ipInfo.textContent = `IP: ${ip}`;
})
.catch(error => {
locationInfo.textContent = 'Não foi possível determinar a localização atual.';
ipInfo.textContent = '';
});
}
checkSystemIntegrity();
})();