Fitbit Versa 4 Health and Fitness Smart Watch (Black/Graphite) with Built-in GPS, 6 Day Battery Life, S & L Bands, Bundle with 3.3foot Charge Cable, Wall Adapter, Screen Protectors & PremGear Cloth

$10.82
$219.00
-95%
Title:  Default Title
Quantity

Description

  • This Exciting Bundle/Kit Includes: Fitbit Versa 4 Health and Fitness Workout Smartwatch (Black / Graphite Aluminum), Small & Large Watch Bands, Charger Dock Smart Watch Charging Stand, PremGear Wall Adapter, 2 PremGear Screen Protectors & PremGear Quality Cleaning Cloth, also includes a 6 months Premium Trial
  • FOLLOW YOUR BODY, NOT A SCHEDULE - Planning a workout? Check Readiness Score to see if you’re up for a challenging workout or recovery day based on insights from your body, then get suggested workouts & a recommendation daily Active Zone Minutes goal
  • MOTIVATING WORKOUTS - Hit your goals with a growing collection of fresh partner workouts with a Premium membership (6 months included). Find videos for yoga, HIIT and everything in between from Fitbit and partners like LES MILLS, Aaptiv and more… Then, use Versa 4 to see your stats in real time
  • 40+ EXERCISE MODES + GPS __ Choose from strength training, kayaking and more with 40+ exercise modes and see your stats in the moment on your smartwatch. Plus, get real-time pace & distance during outdoor workouts -no phone necessary- with built-in GPS
  • NAVIGATE, PAY & STAY IN TOUCH ALL DAY – Get turn-by-turn directions, pay on the go and save time with Google Maps and Google Wallet on your wrist. Plus, never miss a call, text or calendar alert and see app notifications at a glance. (Available when phone is nearby. Google Maps on Android only, coming Spring 2023 to iOS)
  • DESIGNED FOR FITNESS – while you’re putting in the hard work, Versa 4 works to keep you comfortable during fitness & beyond with a thin, lightweight design. Plus, stay on top of your goals without slowing down by seeing you’re your stats in the moment on a large display
  • LEVEL UP YOUR ROUTINE WITH PREMIUM – Find extra motivation through friendly competition with exclusive games and challenges. Ask friends to join you or just compete against yourself. Plus, tune in to your body with a 90-day view of your Health Metrics dashboard and more in Premium. (6 month included)


Get Better Results from your Workout Routine!

Know when you’re up for a challenge or need a recovery day with your personalized Daily Readiness Score. Track more exercises than ever right from your wrist with 40+ exercise modes. Choose from modes like strength training, HIIT, running, kayaking and more to see key stats in real time - including Active Zone Minutes which shows your target intensity levels. Do it all with a thin, lightweight fitness smartwatch designed for comfort during workouts, sleep and more. Plus, never miss a beat with calls, texts and notifications right on your wrist and a battery life of up to 6 days. Fitbit is part of the Google family.

**Features**
*FITNESS*
Heart rate tracking
Active Zone Minutes
Built-in GPS
Cardio Fitness Score
Daily Readiness Score
Automatic exercise tracking
Exercise modes
Water resistant
Workouts on your phone
Steps, distance & calories

*HEALTH*
SpO2 (blood oxygen) tracking
Resting heart rate
High & low heart rate notifications
Heart rate variability
Skin temperature variation
Breathing rate
Wellness report
Menstrual health tracking

*SLEEP & STRESS*
Sleep tracking & sleep stages
Sleep Profile
Sleep Score
Smart Wake alarm
Stress Management Score
Mindfulness sessions
Relax breathing sessions
Reflections

*SMARTS & MORE*
On-wrist Bluetooth calls
Call, text and app notifications
Alexa Built-in
Google Maps
Google Wallet
Fitbit Pay
Find My Phone
Always-on display mode
Do not disturb & sleep mode
Fast charging
up to 6 day battery
Thin, lightweight design
Color touchscreen
Compatible with iOS and Android devices
Fitbit Premium membership

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.