Unreal Liquid Blush

color
Scene - Soft Warm Pink
Whim - Bright Pink
Vision - True Rose
Moment - Warm Peach Beige
Future - Warm Coral
Imagine - Rich Terracotta
Craft - Deep Berry
Price
$36.00
6565 sold
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

Details

A liquid blush that visibly plumps with hydration and delivers unreal, buildable color for a natural finish that stays in place for up to 12 hours. 

Infused with our Unreal Lifting Complex, this serum-like formula instantly hydrates to plump and visibly firm for smoother-looking skin all day. Upon application, the silky texture effortlessly melts into skin to instantly lift cheeks with color, providing all-day, weightless wear. The innovative packaging features a precision dropper that allows you to customize your desired look, from a soft wash of color to a vibrant flush.Hourglass Cosmetic

Features and benefits

• Gives cheeks an instant lifted effect
• Serum-like texture for a barely-there feel
• All day, weightless wear
• Plumps and hydrates skin
• Visibly firms skin
• Silky-smooth, natural finish
• Innovative precision dropper dispenses the optimal amount of product
• Non-comedogenic
• Vegan and cruelty-free

How to use

1.SHAKE

Shake well with cap on and turn bottle upside down.

2.PRESS

Gently press the bottom of bottle to dispense 1 drop on the back of the hand.​

3.BLEND

Use the No. 15 Blush Brush to gently stipple on the back of the hand to disperse color. Then, lightly tap on the apples of the cheeks, blending upwards.

KEY INGREDIENTS
• Unreal Lifting Complex: Upcycled White Lupin Seed Extract: Visibly firms skin for a smooth look.
• Hyaluronic Acid: Helps attract water to plump skin with hydration.

CLAIMS
•Instantly hydrates, visibly plumps, and lifts cheeks with color for up to 12 hours. 

INSTANT
• 100% said the packaging dispensed the optimal amount of product
• 100% said the product delivers highly pigmented, buildable color
• 100% said product has a silky texture that effortlessly blends into skin 

After 8 Hours
• 97% said skin looks smoother and more hydrated
• 97% said skin looks plumper
• 94% said cheeks look firmer and lifted 

After 12 Hours
• 97% said product didn’t settle into fine lines
• 97% said product doesn’t look or feel dry all day
• 88% said product stayed in place

PACKAGING
• Unlike traditional droppers, Unreal Liquid Blush features a sleek, innovative design with a soft bottom base that works as a dispenser. By applying pressure to the base, a small amount of the formula is released.

Formulated Without

• ALCOHOL
• GMO
• PARABENS
• PHTHALATES
• TALC
• TRICLOSAN
• MINERAL OIL
• GLUTEN 



Attention.
1. According to each person's different skin type, the use of the effect will be different, adhere to the use will have good results!
2. Due to the manual measurement, shooting light reasons; size and color will be slightly different, please do not worry about the use of the effect!

Support small brand

Click the ADD TO CART button before we sell out. 

Shipping Time

Our current turnaround time is running 1-5 business days. Although some of the items are made ahead, due to the high volume of orders, shipping times are longer than usual. If I have the item ordered in stock I will mail it out as soon as possible!

Speedy Shipping

No one likes waiting. To your door and it's fast.

Thank you for your patience. Please let us know at support@mail.brbueno.com if you have any questions.

📦 Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

🔒 Safe & Secure Checkouts: Safe payments via PayPal® & credit/debit card, Keep your personal and financial information 100% protected.

🚚All orders are shipped with the Tracking Number so you can track it every step of the way!  Cool things are worth waiting for! 

 

 

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.