ARMAX 3-in-1 Concealer Full Coverage for Acne, Dark Circles & Redness

$29.95
Quantity

Description

Suitable For All Face Types, Skin Tones And Ages!

FULL COVERAGE CONCEALER

Full face contour cream palette and concealer, cover dark circles,spots,pock marks,to create skin.Invisible pores,covering dull,brighten skin tone,showing a natural makeup. Give you a natural flawless look

LONG-LASTING & WATERPROOF PALETTE

Waterproof and sweat-proof,our cosmetics concealer is light and thin,breathable,easy to mix,hide the pores,skin smooth, lasting makeup.

3-COLOR CONCEALER

3 different shades:brightening, natural and healthy colors. Full coverage concealer to cover up blemishes, dark circles and dullness to achieve a flawless complexion. Formulated with skin-caring botanical ingredients to hydrate, smooth and nourish skin.Our cosmetic Concealer cream is light, breathable, easy to mix, hide pores, smooth skin, and durable makeup!

CONCEALER CREAM FOUNDATION PALETTE

The cream is silky and smooth, with moisturizing ingredients added, it is very easy to apply. Concealer of all colors can be mixed and used, you can mix the color that suits your skin tone by yourself, and blend perfectly with your skin.

MOISTURIZING & REFRESHING

Contains moisturizing ingredients to nourish the skin while hiding imperfections, soft, non-sticky and durable. The Tri-Color Concealer won’t clog pores and build fresh looking for a whole day.

PRECISION APPLICATION WITH INCLUDED BRUSH

The palette comes complete with a high-quality brush designed for precise application. Achieve seamless blending and contouring with the ergonomic design of our brush, ensuring professional-looking results every time.

FEATURE:

  • For All Skin Tones:Reduce redness and correct uneven skin tone.Auto color correction is based on your own skin tone. 

    Excellent Oil Controlling:No clogging of skin pores,preventing acne breakouts.Rejuvenating formula retains skin elasticity and moisture.

    Long-Lasting,Waterproof and Sweatproof:Stays long and keeps soft coverage without greasy feeling.

    For All Skin Types:Ideal for oily,dry,combination,acne,sensitive skin or even red skin.

    Easy To Carry:Packaged in a sleek,travel-friendly,very convenient to carry.it is very suitable for daily use or when traveling.You can mix the color that suits your skin tone by yourself,and blend perfectly with your skin.

    HOW TO USE CONCEALER

    • Master the order of application of concealer

      The correct order of application of concealer is after foundation and before loose powder or loose powder.

    • Learn to apply makeup with your fingers

      Human fingers are actually the best makeup tools. The natural temperature of your fingers allows the concealer to adhere to the skin and spread evenly

    • Learn to choose the color of your concealer

      Different shades of concealer have different effects on different areas. For example: for dark circles, orange shades are best; for acne-prone and reddened skin, green shades have been shown to be the most effective; when you need to lighten stains, you should choose the Shades to match skin tones.

    • Cover wrinkles with concealer

      Wrinkles and fine lines on the face are irresistible signs of aging. If you can't even cover the foundation, you can only rely on concealer in the end.

    • Get the most out of your concealer

      Another unique way to get the most out of your concealer is to mix it with other products. For example, if we want to cover dark circles, we can mix a small amount of concealer and eye cream together, and then apply it to the eyes, corners of the mouth, etc., which can lighten the shadows on the face and make the makeup look more natural and healthy.

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.