Body Scrub

$450.00
Quantity

Description

Description

Brighten with papaya and get polished skin with pomegranate in 60 seconds. Tackle tans and remove dirt with the powerful moves of oranges. It's time to let your skin shine without worrying about pollution and sun damage.

Net Quantity - 50G

Benefits

  • Exfoliates dead skin cells 
  • Can be used to lighten tan
  • Reduces the discoloration in the neck
  • Makes it easier for moisturisers to penetrate
  • Energises dull and tired skin 
  • >Makes skin soft and smooth to the touch 
  • Bright and replenished skin after use
  • Unclogs pores and prevents ingrown hairs

Skin Type

All Skin Types

Key Ingredients

Ananas, Pomegranate, Orange, lbimi, Lime, Papaya, Purple rice flour, skin cherishing essential oils.

How to Use

FAQs

1) What does a body scrub do? 
Body scrub removes dead skin cells from the outer layer of the skin. It improves the overall appearance of your skin, making it soft, smooth, and bright. 

2) On what parts of my body can I use the body scrub? 
 Body Scrub is completely safe and can be used anywhere on your body, like underarms, knees, etc. The natural ingredients induced in the making of body scrub is beneficial in improving the skin texture and appearance, and unclogging the pores. 

3) Can I use the body scrub if I have sensitive skin?
Yes, you can. The body scrub is extremely gentle and safe for all skin types. You will visibly have healthier and glowing skin from the first use itself. A patch test is recommended before use, though 

4) How often should I exfoliate my skin with Body Scrub?
You can use the Body Scrub twice a week on your body.

5) How to use the body scrub? 
Take a spoonful of the body scrub and dilute it with a toner or water. Apply the paste all over your body and gently rub your skin in a circular motion for 60 seconds using your fingertips. Wash it off with lukewarm water.

6) What should I follow the body scrub with?
You can follow it up with our almond milk lotion or the moisturiser of your choice.  

7) Will the body scrub help with tan removal?
Yes, the body scrub removes tan and reduces discoloration on the skin while also minimising the pores. It makes it easy for the moisturisers to penetrate deeply. 

8) Can I use the body scrub daily?
Scrubbing your skin daily will do more harm than good. It will disturb the natural oil levels on your skin and make it dry. And people with sensitive skin might experience redness. Hence, we recommend using the body scrub twice a week.

9) Will the body scrub brighten my skin? 
The Body Scrub is made with ananas, oranges, pomegranates, papaya, and lime, which are popularly known for their brightening and hydrating properties. So, the body scrub will help in brightening the skin and, as an added bonus, it will prevent ingrown hairs. 

10) Is it safe for children?
Yes. The body scrub contains 100% natural ingredients, which are safe for all ages and genders. Nevertheless, we recommend using the body scrub on people over 10 years of age.

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.