let freeShippingRestTimer = null; async function showFreeShippingRest(e) { const freeShippingRest = document.querySelector('.layout-floating-cart__free-shipping--rest'); if (freeShippingRest) { if (freeShippingRestTimer) { clearTimeout(freeShippingRestTimer); } freeShippingRest.classList.add('flex'); freeShippingRestTimer = setTimeout(function() { freeShippingRest.classList.remove('flex'); freeShippingRestTimer = null; }, 6000); } } document.addEventListener('dj.cartItemChange', showFreeShippingRest); document.addEventListener('dj.cartItemDelete', showFreeShippingRest);

About Us

Our beauty store was founded in 1980, starting as a small 50-square-meter shop at 128 Shining Boulevard in Denver, Colorado, run by two beauty enthusiasts. Today, we have 12 experienced estheticians, skincare specialists, and customer service representatives who are passionate about high-quality cosmetics and beauty devices.

In our physical store, we are committed to selecting products that are safe, effective, and comfortable—whether you're looking for everyday skincare essentials, romantic date makeup, family party makeup, or makeup for special occasions like anniversaries or birthdays, we can meet your needs. Unlike typical retailers, we do more than just sell cosmetics and beauty devices; we rigorously control the quality of every product: our team tests the skin compatibility of cosmetics, verifies the performance and safety of beauty devices, and ensures the durability of device components, guaranteeing that every product delivers consistent results and a long-lasting user experience. In addition to our core skincare, makeup, and beauty device lines, we also periodically launch unique beauty-inspired accessories, such as handcrafted organic cotton skincare bags, custom-engraved cosmetic organizers, and handcrafted natural stone facial massage rollers, adding a personalized element to your daily beauty routine.

Our core mission is simple: to provide products that help everyone who loves beauty—whether a seasoned skincare expert or a makeup newbie—confidently express their personal style and enhance their natural charm. We strongly oppose the notion that "high-quality beauty products are only for special occasions" or "professional beauty devices should be out of reach." Instead, we believe the best beauty experience begins with products that match your skin's needs, style, and budget—without any obscure jargon. We understand that beauty products are more than just "makeup"; they connect you to special moments: the joy of a birthday surprise, the warmth of a family skincare ritual, and the excitement of using products truly suited to your skin. That's why we prioritize creating an inclusive shopping experience: our team listens attentively to your preferences, answers your questions (even seemingly silly ones), and helps you find products that not only work but also feel tailor-made for you. Whether you're looking for a lightweight foundation that perfectly matches your skin tone, an eyeshadow palette to accentuate your eye shape, or a gentle cleansing device suitable for everyday use, we ensure our product range caters to all skin types, styles, and budgets.

Beyond mainstream beauty products, we proudly support local artisans who share our passion for craftsmanship—therefore, our store also sells handcrafted natural cosmetics and handmade beauty tools. These products are more than just "beauty products"; they add an artistic and craftsmanship touch to your everyday makeup routine while supporting creators who, like us, value quality and natural ingredients.

As a team, we're not just "beauty retailers," we're beauty enthusiasts ourselves. We curate unique skincare formulas, design bespoke makeup sets, and even use our expertise to transform basic beauty routines into personalized self-care experiences. These firsthand experiences allow us to honestly share product information, usage tips, skincare advice, and stories to help you better enjoy your beauty world.

Cart

Your cart is empty

Summary

Taxes and shipping calculated at checkout
Payment method

You may also like

class SpzCustomFreeShippingRest extends SPZ.BaseElement { constructor(element) { super(element); this.freeShippingRestTimer = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.registerAction('showTips', () => { this.showTips_(); }); } showTips_(e) { const freeShippingRest = document.querySelector( '.layout-floating-cart__free-shipping--rest' ); if (freeShippingRest) { if (this.freeShippingRestTimer) { clearTimeout(this.freeShippingRestTimer); } freeShippingRest.classList.add('flex'); this.freeShippingRestTimer = setTimeout(function () { freeShippingRest.classList.remove('flex'); this.freeShippingRestTimer = null; }, 6000); } } } SPZ.defineElement('spz-custom-free-shipping-rest', SpzCustomFreeShippingRest);