Free shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewide
Free shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewide
Free shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewide
Free shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewideFree shipping sitewide
Cart 1
You've got free shipping!

Your cart is empty
Add your favorite items to your cart
Continue Shopping
Why Choose Coslus?
Fast & Free Shipping
30-Day Money Back
2-Year Warranty
24/7 Support
Order Note
Save
Total
Add order note Taxes calculated at checkout
Checkout
DY-108 Pro
Cart 1
You've got free shipping!

Your cart is empty
Add your favorite items to your cart
Continue Shopping
Why Choose Coslus?
Fast & Free Shipping
30-Day Money Back
2-Year Warranty
24/7 Support
Order Note
Save
Total
Add order note Taxes calculated at checkout
Checkout
-
Products
-
Accessories
-
Contact us
-
Warranty
-
Support
-
Blog
Oral Care
Shop All Oral Care
Nail Care
Skin Care
Customer Service
Customer Support
Contact us
Product Help
User Guide
FAQ
Wrranty
Policy
Privacy Policy
Warranty Policy
One-stop Help Service
SHOP ALL ORAL CARE
"; */ $(this).addClass("iconfont icon-Loading loading-inner") applyBtn.style.pointerEvents = 'none'; clearLocalStorage(()=>{ applyDiscount(discountCodeInput.value,()=>{ /* if(window.quickCart&&window.quickCart.updateCartDiscount) window.quickCart.updateCartDiscount(); window.quickCart?.updateCart(()=>{ }); */ }); }); } }); $(parentBox+".mystbundlesa-copy").click(function(e){ e.preventDefault(); let code = $(this).data('value'); if(code){ /* applyBtn.innerHTML = "LOADING
"; */ $(".apply-discount-btn").addClass("iconfont icon-Loading loading-inner") applyBtn.style.pointerEvents = 'none'; clearLocalStorage(()=>{ applyDiscount(code,()=>{ if(window.quickCart&&window.quickCart.updateCartDiscount) window.quickCart.updateCartDiscount(); }); }); } }) $(parentBox+".addcart-discount").click(function(e){ let code = $(this).parents(".mystbundlesa-outbox").find(".mystbundlesa-codebox").find(".mystbundlesa-copy").data('value')?$(this).parents(".mystbundlesa-outbox").find(".mystbundlesa-codebox").find(".mystbundlesa-copy").data('value'):JSON.parse(localStorage.discountCode).code; addcart-discount if(code){ /* applyBtn.innerHTML = "LOADING
"; */ console.log(code); $(".apply-discount-btn").addClass("iconfont icon-Loading loading-inner") applyBtn.style.pointerEvents = 'none'; setTimeout(function(){ clearLocalStorage(()=>{ applyDiscount(code,()=>{ if(window.quickCart&&window.quickCart.updateCartDiscount) window.quickCart.updateCartDiscount(); }); }); },2000); } }) $("body").on("click","#apply-discount-btn-hidden",function(e){ e.preventDefault(); discountCodeError.style.display = 'none'; discountCodeErrorValue.innerHTML = ''; console.log(localStorage.discountCode) if(localStorage.discountCode){ $(".apply-discount-btn").addClass("iconfont icon-Loading loading-inner") applyBtn.style.pointerEvents = 'none'; const code = JSON.parse(localStorage.discountCode).code localStorage.removeItem('discountCode'); clearLocalStorage(()=>{ applyDiscount(code) }); } }) clearBtn.addEventListener('click', function (e) { e.preventDefault(); clearDiscount(); }); $("body").on("click","#note-submit-button",function(e){ fetch('/cart/update.js', { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ note: $(parentBox+"#note-textarea").val(), }) }).then(res => res.json()).then(cart => { console.log(cart) $(parentBox+".quick-cart-note-box").slideToggle(200) }); }) function clearDiscount(callback) { discountCodeValue.innerHTML = ''; discountCodeErrorValue.innerHTML = ''; discountSuccessValue.innerHTML = ''; clearLocalStorage(callback); } function clearLocalStorage(callback) { discountCodeWrapper.style.display = 'none'; discountSuccessWrapper.style.display = 'none'; if(localStorage.discountCode){ const total = JSON.parse(localStorage.discountCode).totalCart; totalCartSelector.innerHTML = window.formatMoney?window.formatMoney(total):(data.checkout.applied_discounts[0].currency + total); } localStorage.removeItem('discountCode'); let discountApplyUrl = '/discount/&20?v=' + Date.now() + '&redirect=/checkout/'; console.log(discountApplyUrl) /* fetch('/discount', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: 'discount=' // 空字符串移除折扣 }).then(() => { callback() }); */ /* const params = new URLSearchParams(); params.append('discount', ''); fetch('/discount', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'text/html,application/xhtml+xml' }, body: params }).then(() => { callback() }); */ fetch('/discount/INVALIDCODE123', { method: 'GET', headers: { 'X-Requested-With': 'XMLHttpRequest' } }).then(() => { // 重新获取购物车状态,刷新价格显示 return fetch('/cart.js').then(res => res.json()); }).then(cart => { callback && callback() // 你可以在这里更新 UI 显示 }); /* fetch(discountApplyUrl, {}).then(function (response) { if(callback){ callback() }else{ if(window.quickCart&&window.quickCart.updateCartDiscount) window.quickCart.updateCartDiscount(); } return response.text(); }); */ } function applyDiscount(code,callback) { fetch('/payments/config', { method: 'GET' }) .then(function (response) { return response.json(); }) .then(function (data) { const checkout_json_url = '/wallets/checkouts/'; authorization_token = btoa(data.paymentInstruments.accessToken); fetch('/cart.js', {}) .then(function (res) { return res.json(); }) .then(function (data) { if(!data.items||data.items.lengt===0){ return } let body = { checkout: { country: Shopify.country, discount_code: code, line_items: data.items, presentment_currency: Shopify.currency.active, }, }; fetch(checkout_json_url, { headers: { accept: '*/*', 'cache-control': 'no-cache', authorization: 'Basic ' + authorization_token, 'content-type': 'application/json, text/javascript', pragma: 'no-cache', 'sec-fetch-dest': 'empty', 'sec-fetch-mode': 'cors', 'sec-fetch-site': 'same-origin', }, referrerPolicy: 'strict-origin-when-cross-origin', method: 'POST', mode: 'cors', credentials: 'include', body: JSON.stringify(body), }) .then(function (response) { return response.json(); }) .then(function (data) { if (data.checkout && data.checkout.applied_discounts.length > 0) { let discountApplyUrl = '/discount/' + encodeURIComponent(code) + '?v=' + Date.now() + '&redirect=/checkout/'; console.log(discountApplyUrl) try { fetch(discountApplyUrl, {}).then(function (response) { if(callback) callback() }); } catch (error) { } discountCodeError.style.display = 'none'; discountCodeWrapper.style.display = 'flex'; discountSuccessWrapper.style.display = 'flex'; discountCodeErrorValue.innerHTML = ''; discountCodeInput.value = "" discountCodeValue.innerHTML = data.checkout.applied_discounts[0].title; discountSuccessValue.innerHTML =`Coupon code '${data.checkout.applied_discounts[0].title}' applied, you saved${window.formatMoney?window.formatMoney(data.checkout.applied_discounts[0].amount):(data.checkout.applied_discounts[0].currency + data.checkout.applied_discounts[0].amount)}!` let localStorageValue = { code: code.trim(), totalCart: data.checkout.total_line_items_price, }; localStorage.setItem('discountCode', JSON.stringify(localStorageValue)); /* '
' + */ totalCartSelector.innerHTML = window.formatMoney?window.formatMoney(data.checkout.total_price):(data.checkout.applied_discounts[0].currency + data.checkout.total_price); } else { discountCodeValue.innerHTML = ''; discountCodeError.style.display = 'flex'; /* clearLocalStorage(); */ discountCodeErrorValue.innerHTML = 'Enter a valid discount code'; if(data.checkout&&data.checkout.discount_code)discountCodeErrorValue.innerHTML = `'${data.checkout.discount_code}' discount code isn't valid for items in your cart`; } }) .finally(function (params) { /* applyBtn.innerHTML = 'APPLY'; */ $(".apply-discount-btn").removeClass("iconfont icon-Loading loading-inner") applyBtn.style.pointerEvents = 'all'; $(".discount-code-input").blur(); }); }); }); } })/* document.addEventListener('DOMContentLoaded', function (event) { }); */
$34.99 Regular price
- Unit price
- /per
black
Quantity selected exceeds current stock
Benefits
Our Water Flossers help to improve oral hygiene, freshen breath, prevent gum diseases and tooth decay, offering a brighter whiter smile to you
Specs
Capacity
300ML
Dimensions
9.53" x 3.46" x 3.03"
Weight
15.17 oz
Payment Method
In the box
- 1 x Oral Irrigator
- 2 x Standard Jet Tip
- 1 x Orthodontic Tip
- 1 x Tongue Scraper
- 1 x Charging cable(ADAPTER IS NOT INCLUDED)
- 1 x User manual
- 1 x Warranty Card
Shipping & Returns
- Shipping: Free Shipping sitewide and Estimated Delivery Time is 5-7 working days by Amazon/USPS/DHL/UPS. Read our fullshipping policy here
- Returns: If you’re not 100% in love with your new product, send it back within 30 days for a full refund — We’re that confident that this is the best personal care you’ll ever use. Read our full returns policy here
- Trusted Delivery:

Fast & Free Shipping

30-Day Money Back

2-Year Warranty

24/7 Support
Adding product to your cart

Fast & Free Shipping

30-Day Money Back

2-Year Warranty

24/7 Support
Effectively remove
99.99% of germs
Effectively remove
99.99% of germs
Before

After
Helps you to clean hard-to-reach areas
Helps you freshen your breath
300Ml Extra-Large Water Tank
300Ml Extra-Large Water Tank
Features 300mL water tank, eliminating the need for frequent refills and making your oral cleaning more convenient and efficient
4 types of Pressure Settings
4 types of Pressure Settings
Normal (For daily cleansing)
Soft (For beginners & sensitive teeth)
Comfort
DIY (Set your personal pressure)
3 Years Dura blility
3 Years Durability
Upgraded motor provides more efficient cleaning and increased durability, lasting up to 3 years
Included 4 Flosser Tips
Included 4 Flosser Tips
Focuses dual-thread streams that remove food residual, wash braces, bridges and residul material, gums, tongue for an effortlessly thorough clean
What Real Users Are Saying
$34.99
black
Quantity selected exceeds current stock
Description
""
$34.99
black
Quantity selected exceeds current stock
Description
""
$34.99
black
Quantity selected exceeds current stock
Description
""
$34.99
black
Quantity selected exceeds current stock
Description
""
What Real Users Are Saying
$34.99
black
Quantity selected exceeds current stock
Description
""

C30(FC5360) Water Dental Flosser
$34.99
$34.99
black
Quantity selected exceeds current stock
Description
""

C30(FC5360) Water Dental Flosser
$34.99
$34.99
black
Quantity selected exceeds current stock
Description
""

C30(FC5360) Water Dental Flosser
$34.99
$34.99
black
Quantity selected exceeds current stock
Description
""

C30(FC5360) Water Dental Flosser
$34.99
C30(FC5360) Water Dental Flosser
Color| black
Color| white
Color| mint_green
$34.99 Regular price
- Unit price
- /per
$34.99 Regular price
- Unit price
- /per
$34.99 Regular price
- Unit price
- /per
$34.99 Regular price
- Unit price
- /per
Buy Now
$34.99 Regular price
- Unit price
- /per
Buy Now
$34.99 Regular price
- Unit price
- /per
Buy Now