Hỗ Trợ Xương Khớp
Các dòng sản phẩm chăm sóc xương khớp cao cấp giúp tái tạo dịch khớp, bôi trơn khớp xương, giảm đau nhức cơ xương khớp do tập luyện nặng và bảo vệ hệ vận động dẻo dai.
Chưa có sản phẩm nào trong danh mục này.
🚚 Miễn phí vận chuyển
✅ Thương hiệu chính hãng
💬 Tư vấn nhiệt tình
⭐ Tích điểm thành viên
💳 Thanh toán tiện lợi
/* ── Copy link ── */
function gCopyLink(){
var url = window.location.href;
if(navigator.clipboard){ navigator.clipboard.writeText(url).then(function(){ gToast('🔗 Đã sao chép liên kết!'); }); }
else {
var i = document.createElement('input'); i.value = url;
document.body.appendChild(i); i.select(); document.execCommand('copy'); document.body.removeChild(i);
gToast('🔗 Đã sao chép liên kết!');
}
}
/* ── Toast ── */
function gToast(m){
var t = document.createElement('div'); t.textContent = m;
Object.assign(t.style, {
position:'fixed', bottom:'24px', left:'50%',
transform:'translateX(-50%) translateY(16px)',
background:'#ff9800', color:'#000', fontWeight:'800', fontSize:'.82rem',
padding:'10px 22px', borderRadius:'50px',
boxShadow:'0 8px 24px rgba(255,152,0,0.4)',
zIndex:'99999', opacity:'0',
transition:'all .35s cubic-bezier(.175,.885,.32,1.275)',
fontFamily:'Inter,sans-serif', whiteSpace:'nowrap', pointerEvents:'none'
});
document.body.appendChild(t);
requestAnimationFrame(function(){
t.style.opacity = '1'; t.style.transform = 'translateX(-50%) translateY(0)';
});
setTimeout(function(){
t.style.opacity = '0'; t.style.transform = 'translateX(-50%) translateY(16px)';
setTimeout(function(){ t.remove(); }, 400);
}, 2400);
}